summaryrefslogtreecommitdiff
path: root/example.gpr
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2023-07-02 21:36:34 +1200
committerJedidiah Barber <contact@jedbarber.id.au>2023-07-02 21:36:34 +1200
commit049d2a9a337331295b4a2d4ad13061bc73536236 (patch)
treec360b2ce05f91d070c14dad7a3691c1435df7df7 /example.gpr
Initial commit
Diffstat (limited to 'example.gpr')
-rw-r--r--example.gpr31
1 files changed, 31 insertions, 0 deletions
diff --git a/example.gpr b/example.gpr
new file mode 100644
index 0000000..5170e1f
--- /dev/null
+++ b/example.gpr
@@ -0,0 +1,31 @@
+
+
+with "asndfile";
+
+
+project Example is
+
+
+ for languages use ("Ada");
+
+
+ for Source_Dirs use ("example");
+ for Object_Dir use "obj";
+ for Exec_Dir use "bin";
+ for Main use ("file_info_example.adb", "virtual_io_example.adb");
+
+
+ package Builder is
+ for Executable("file_info_example.adb") use "info_example";
+ for Executable("virtual_io_example.adb") use "virtual_example";
+ end Builder;
+
+
+ package Compiler is
+ for Default_Switches("Ada") use ("-gnaty4aAbcefhiklM100nprt");
+ end Compiler;
+
+
+end Example;
+
+