Files
gnatcoll-db/examples/library/default.gpr
anisimko 9dadb68f7d GNATCOLL.SQL example
U108-018

Change-Id: Ic2be45cd8fa8457416129c1d0f09720d01a49a97
2021-01-10 16:40:35 +06:00

19 lines
463 B
Plaintext

with "gnatcoll";
with "gnatcoll_sqlite"; -- or "gnatcoll_postgres"
project Default is
for Source_Dirs use ("generated", -- generated files
"src"); -- example files
for Object_Dir use "obj";
for Main use ("library.adb");
package Compiler is
for Switches ("Ada") use ("-g");
end Compiler;
package Binder is
for Switches ("Ada") use ("-E"); -- Get backtrace for exceptions
end Binder;
end Default;