Rombobjörn

summaryrefslogtreecommitdiff
path: root/build_thread_wrapper.gpr
diff options
context:
space:
mode:
authorBjörn Persson <bjorn@rombobjörn.se>2013-02-13 23:17:52 +0100
committerBjörn Persson <bjorn@rombobjörn.se>2013-02-13 23:17:52 +0100
commit4766a7a7a2f23ee10560e1a2a177eec8931d974a (patch)
tree5380090b964906e3317b930b43ce38bd60f5e0cf /build_thread_wrapper.gpr
parentb5565b3dc55003122b0ffdc211d03446971ff12a (diff)
Added a convenient and flexible build system.
Diffstat (limited to 'build_thread_wrapper.gpr')
-rw-r--r--build_thread_wrapper.gpr18
1 files changed, 18 insertions, 0 deletions
diff --git a/build_thread_wrapper.gpr b/build_thread_wrapper.gpr
new file mode 100644
index 0000000..f0dd181
--- /dev/null
+++ b/build_thread_wrapper.gpr
@@ -0,0 +1,18 @@
+-- project file to compile the thread wrapper into a static library
+-- Copyright 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";
+
+library project Build_Thread_Wrapper is
+ for Library_Name use "adamilter_thread_wrapper";
+ for Library_Kind use "static";
+ for Languages use ("C");
+ for Source_Dirs use ("thread_wrapper");
+ for Object_Dir use Comfignat.Objdir;
+ for Library_Dir use Comfignat.Stage_Libdir;
+end Build_Thread_Wrapper;