aboutsummaryrefslogtreecommitdiff
path: root/tests.gpr
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2025-04-05 23:06:26 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2025-04-05 23:06:26 +1300
commit10286c0b22f3111e74bf699f224a4e8061626d4c (patch)
tree172b3198153258b54aa4fd4540e7231ccfc66b7a /tests.gpr
Initial commit
Diffstat (limited to 'tests.gpr')
-rw-r--r--tests.gpr39
1 files changed, 39 insertions, 0 deletions
diff --git a/tests.gpr b/tests.gpr
new file mode 100644
index 0000000..b291c3b
--- /dev/null
+++ b/tests.gpr
@@ -0,0 +1,39 @@
+
+
+with
+
+ "proj/common",
+ "testlib";
+
+
+project Tests is
+
+
+ for Languages use ("Ada");
+
+ for Source_Dirs use ("test");
+ for Object_Dir use "obj";
+ for Exec_Dir use "bin";
+
+ for Main use
+ ("where_exec.adb",
+ "where_mod.adb");
+
+ package Builder is
+ for Executable ("where_exec.adb") use "where_exec";
+ for Executable ("where_mod.adb") use "where_mod";
+
+ for Default_Switches ("Ada") use
+ Common.Builder'Default_Switches ("Ada");
+ for Global_Compilation_Switches ("Ada") use
+ Common.Builder'Global_Compilation_Switches ("Ada");
+ end Builder;
+
+ package Compiler renames Common.Compiler;
+ package Binder renames Common.Binder;
+ package Linker renames Common.Linker;
+
+
+end Tests;
+
+