summaryrefslogtreecommitdiff
path: root/sokoban.gpr
diff options
context:
space:
mode:
Diffstat (limited to 'sokoban.gpr')
-rw-r--r--sokoban.gpr35
1 files changed, 35 insertions, 0 deletions
diff --git a/sokoban.gpr b/sokoban.gpr
new file mode 100644
index 0000000..8c87a18
--- /dev/null
+++ b/sokoban.gpr
@@ -0,0 +1,35 @@
+
+
+with "fltkada";
+
+
+project Sokoban is
+
+
+ for Languages use ("Ada");
+
+
+ for Source_Dirs use ("src/**");
+ for Object_Dir use "obj";
+ for Exec_Dir use "bin";
+ for Main use ("main.adb");
+
+
+ package Builder is
+ for Executable("main.adb") use "sokoban";
+ end Builder;
+
+
+ package Compiler is
+ for Default_Switches("Ada") use ("-gnaty4aAbcefhiklM99nprt");
+ end Compiler;
+
+
+ package Linker is
+ for Default_Switches("Ada") use ("-lfltk", "-lfltk_images");
+ end Linker;
+
+
+end Sokoban;
+
+