blob: 28b889ac36249a76f69c0041aad7d8eb671e1a7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 & "/thread_wrapper";
for Library_Dir use Comfignat.Stage_Libdir;
end Build_Thread_Wrapper;
|