-
Notifications
You must be signed in to change notification settings - Fork 2
/
jamfile
26 lines (23 loc) · 829 Bytes
/
jamfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
project log4cpp ;
alias sockets : : <toolset>gcc ;
lib sockets : : <name>ws2_32 <toolset>gcc <os>NT ;
lib sockets : : <name>ws2_32.lib <toolset>msvc ;
lib sockets : : <name>ws2_32.lib <toolset>borland ;
lib registry : : <name>Advapi32.lib <toolset>msvc ;
lib registry : : <name>Advapi32.lib <toolset>borland ;
alias registry : : <toolset>gcc ;
lib log4cpp : [ glob src/*.cpp ]
sockets
registry
:
<include>include
<variant>debug:<define>_DEBUG
<toolset>msvc:<define>WIN32
<toolset>borland:<define>WIN32
<link>shared:<define>LOG4CPP_HAS_DLL
<link>shared:<define>LOG4CPP_BUILD_DLL
:
:
<include>include
<link>shared:<define>LOG4CPP_HAS_DLL
;