summaryrefslogtreecommitdiff
path: root/directed_graph.gpr
diff options
context:
space:
mode:
Diffstat (limited to 'directed_graph.gpr')
-rw-r--r--directed_graph.gpr23
1 files changed, 23 insertions, 0 deletions
diff --git a/directed_graph.gpr b/directed_graph.gpr
new file mode 100644
index 0000000..d21ae6f
--- /dev/null
+++ b/directed_graph.gpr
@@ -0,0 +1,23 @@
+
+
+library project Directed_Graph is
+
+
+ for Languages use ("Ada");
+
+
+ for Source_Dirs use ("src");
+ for Object_Dir use "obj";
+ for Library_Dir use "lib";
+ for Library_Name use "dgraph";
+ for Library_Kind use "dynamic";
+
+
+ package Compiler is
+ for Default_Switches("Ada") use ("-gnaty4aAbcefhiklM100nprt");
+ end Compiler;
+
+
+end Directed_Graph;
+
+