Rombobjörn

summaryrefslogtreecommitdiff
path: root/build_test_system_log.gpr
diff options
context:
space:
mode:
authorBjörn Persson <bjorn@rombobjörn.se>2013-02-13 23:23:53 +0100
committerBjörn Persson <bjorn@rombobjörn.se>2013-02-13 23:23:53 +0100
commit41cf063931a6d818ba66b95283392ac8a6e48022 (patch)
treeaff70df494543ac52eca48f57eb9cc37d852fe6b /build_test_system_log.gpr
parent8d23905093ecf9f9e008c189b51714b5a8c2ca08 (diff)
Added a convenient and flexible build system.
Diffstat (limited to 'build_test_system_log.gpr')
-rw-r--r--build_test_system_log.gpr23
1 files changed, 23 insertions, 0 deletions
diff --git a/build_test_system_log.gpr b/build_test_system_log.gpr
new file mode 100644
index 0000000..046c929
--- /dev/null
+++ b/build_test_system_log.gpr
@@ -0,0 +1,23 @@
+-- project file to compile Test_System_Log
+-- Copyright 2012 - 2013 B. Persson, Bjorn@Rombobeorn.se
+--
+-- This project file is free software: you can redistribute it and/or modify it
+-- under the terms of the GNU General Public License version 3, as published
+-- by the Free Software Foundation.
+
+
+with "comfignat.gpr";
+with "build_system_log"; -- Link to the just compiled library.
+
+standard project Build_Test_System_Log is
+
+ for Main use ("test_system_log");
+ for Source_Dirs use ("test");
+ for Object_Dir use Comfignat.Objdir;
+ for Exec_Dir use ".";
+
+ package Binder is
+ for Default_Switches ("Ada") use ("-shared");
+ end Binder;
+
+end Build_Test_System_Log;