]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/tools/build/test/prebuilt/ext/jamfile2.jam
update sources to v12.2.3
[ceph.git] / ceph / src / boost / tools / build / test / prebuilt / ext / jamfile2.jam
CommitLineData
7c673cae
FG
1
2import os ;
3
4local dll-suffix = so ;
5local prefix = "" ;
6if [ os.name ] in CYGWIN NT
7{
8 if [ MATCH ^(gcc) : $toolset ]
9 {
10 dll-suffix = dll ;
11 }
12 else
13 {
14 dll-suffix = lib ;
15 }
16}
17else
18{
19 prefix = "lib" ;
20}
b32b8144 21if [ os.name ] in MACOSX
7c673cae
FG
22{
23 dll-suffix = dylib ;
24}
25
26project ext ;
27
28lib a :
29 : <file>debug/$(prefix)a.$(dll-suffix) <variant>debug
30 :
31 : <include>debug
32 ;
33
34lib a :
35 : <file>release/$(prefix)a.$(dll-suffix) <variant>release
36 :
37 : <include>release
38 ;
39