summaryrefslogtreecommitdiff
path: root/tests.gpr
diff options
context:
space:
mode:
Diffstat (limited to 'tests.gpr')
-rw-r--r--tests.gpr30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests.gpr b/tests.gpr
new file mode 100644
index 0000000..715b9c2
--- /dev/null
+++ b/tests.gpr
@@ -0,0 +1,30 @@
+
+
+with "directed_graph", "basic_unit_test";
+
+
+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 ("test_main.adb");
+
+
+ package Builder is
+ for Executable("test_main.adb") use "graphtest";
+ end Builder;
+
+
+ package Compiler is
+ for Default_Switches("Ada") use ("-gnaty4aAbcefhiklM100nprt");
+ end Compiler;
+
+
+end Tests;
+
+