blob: 78325b45ea3c09d528b033cce20c18032c6febcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
|