summaryrefslogtreecommitdiff
path: root/examples.gpr
diff options
context:
space:
mode:
Diffstat (limited to 'examples.gpr')
-rw-r--r--examples.gpr30
1 files changed, 30 insertions, 0 deletions
diff --git a/examples.gpr b/examples.gpr
new file mode 100644
index 0000000..1921d31
--- /dev/null
+++ b/examples.gpr
@@ -0,0 +1,30 @@
+
+
+with "packrat";
+
+
+project Examples is
+
+
+ for Languages use ("Ada");
+
+
+ for Source_Dirs use ("example/**");
+ for Object_Dir use "obj";
+ for Exec_Dir use "bin";
+ for Main use ("sentence.adb");
+
+
+ package Builder is
+ for Executable("sentence.adb") use "sentence";
+ end Builder;
+
+
+ package Compiler is
+ for Default_Switches("Ada") use ("-gnaty4aAbcefhiklM100nprt");
+ end Compiler;
+
+
+end Examples;
+
+