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