diff options
author | Björn Persson <bjorn@rombobjörn.se> | 2013-01-16 23:40:05 +0100 |
---|---|---|
committer | Björn Persson <bjorn@rombobjörn.se> | 2013-01-16 23:40:05 +0100 |
commit | ab689196c9623c238cd7e3919be209001a37dc2a (patch) | |
tree | b356d7350dd5273d13d380406f633a56a254901a /thread_wrapper/build_thread_wrapper.gpr | |
parent | 526920ed5abdc31c4135fb34fcb617b3cf9320c3 (diff) |
Added the thread wrapper module.
Diffstat (limited to 'thread_wrapper/build_thread_wrapper.gpr')
-rw-r--r-- | thread_wrapper/build_thread_wrapper.gpr | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/thread_wrapper/build_thread_wrapper.gpr b/thread_wrapper/build_thread_wrapper.gpr new file mode 100644 index 0000000..78325b4 --- /dev/null +++ b/thread_wrapper/build_thread_wrapper.gpr @@ -0,0 +1,20 @@ +-- Use this 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 "directories"; + +library project Build_Thread_Wrapper is + + Destdir := external("DESTDIR", ""); + + for Library_Name use "adamilter_thread_wrapper"; + for Library_Kind use "static"; + for Library_Dir use Destdir & Directories.Libdir; + for Languages use ("C"); + +end Build_Thread_Wrapper; |