summaryrefslogtreecommitdiff
path: root/asndfile.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 /asndfile.gpr
Initial commit
Diffstat (limited to 'asndfile.gpr')
-rw-r--r--asndfile.gpr24
1 files changed, 24 insertions, 0 deletions
diff --git a/asndfile.gpr b/asndfile.gpr
new file mode 100644
index 0000000..07c41c5
--- /dev/null
+++ b/asndfile.gpr
@@ -0,0 +1,24 @@
+
+
+library project Asndfile is
+
+
+ for Languages use ("Ada", "C");
+
+
+ for Source_Dirs use ("src");
+ for Object_Dir use "obj";
+ for Library_Dir use "lib";
+ for Library_Name use "asndfile";
+ for Library_Kind use "dynamic";
+
+
+ package Compiler is
+ for Default_Switches ("Ada") use ("-gnaty4aAbcefhiklM100nprt");
+ for Default_Switches ("C") use ("-Wall", "-Wextra");
+ end Compiler;
+
+
+end Asndfile;
+
+