You've already forked gnatcoll-db
mirror of
https://github.com/AdaCore/gnatcoll-db.git
synced 2026-02-12 12:59:31 -08:00
Some of the bindings only require gnatcoll_core. (However, xref and gnatinspect require GNATColl.Projects.) For eng/toolchain/gnatcoll-db#5
19 lines
468 B
Plaintext
19 lines
468 B
Plaintext
with "gnatcoll_core";
|
|
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;
|