You've already forked gnatcoll-db
mirror of
https://github.com/AdaCore/gnatcoll-db.git
synced 2026-02-12 12:59:31 -08:00
21 lines
469 B
Plaintext
21 lines
469 B
Plaintext
with "gnatcoll";
|
|
with "gnatcoll_sql";
|
|
with "gnatcoll_postgres";
|
|
with "gnatcoll_sqlite";
|
|
|
|
project Test is
|
|
for Main use ("test.adb");
|
|
for Source_Dirs use (".", "../../support");
|
|
for Object_Dir use "obj";
|
|
|
|
package Compiler is
|
|
for Switches ("Ada") use ("-g", "-gnateE");
|
|
for Switches ("s-memory.adb") use ("-gnatg") & Compiler'Switches ("Ada");
|
|
end Compiler;
|
|
|
|
package Binder is
|
|
for Switches ("Ada") use ("-E");
|
|
end Binder;
|
|
|
|
end Test;
|