diff options
Diffstat (limited to 'test.gpr')
-rw-r--r-- | test.gpr | 31 |
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; + + |