summaryrefslogtreecommitdiff
path: root/test.gpr
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2024-12-10 20:47:53 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2024-12-10 22:31:22 +1300
commit24781de8bedb3bf4d12d7ec1d0307842e59a3f94 (patch)
tree26e4ab0fad00728adead6cb6626fe40fa7a31704 /test.gpr
parent70d75e1f45bcee89b363677a161f022ecbffd1db (diff)
Binding for filename.H added
Diffstat (limited to 'test.gpr')
-rw-r--r--test.gpr31
1 files changed, 31 insertions, 0 deletions
diff --git a/test.gpr b/test.gpr
new file mode 100644
index 0000000..52d4c8a
--- /dev/null
+++ b/test.gpr
@@ -0,0 +1,31 @@
+
+
+with "fltkada";
+
+
+project Test is
+
+
+ for Languages use ("Ada");
+
+
+ for Source_Dirs use ("test");
+ for Object_Dir use "obj";
+ for Exec_Dir use "bin";
+ for Main use ("compare.adb", "dirlist.adb");
+
+
+ package Builder is
+ for Executable ("compare.adb") use "compare";
+ for Executable ("dirlist.adb") use "dirlist";
+ end Builder;
+
+
+ package Compiler is
+ for Default_Switches("Ada") use ("-gnaty4aAbcefhiklM100nprt");
+ end Compiler;
+
+
+end Test;
+
+