Skip to content

Commit 3642d0b

Browse files
author
darkangel
committed
Added Boost.Build build files.
1 parent cd931d4 commit 3642d0b

2 files changed

Lines changed: 41 additions & 0 deletions

File tree

jamfile

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
project log4cpp ;
2+
3+
alias sockets : : <toolset>gcc ;
4+
lib sockets : : <name>ws2_32 <toolset>gcc <os>NT ;
5+
lib sockets : : <name>ws2_32.lib <toolset>msvc ;
6+
lib sockets : : <name>ws2_32.lib <toolset>borland ;
7+
8+
lib registry : : <name>Advapi32.lib <toolset>msvc ;
9+
lib registry : : <name>Advapi32.lib <toolset>borland ;
10+
alias registry : : <toolset>gcc ;
11+
12+
lib log4cpp : [ glob src/*.cpp ]
13+
sockets
14+
registry
15+
:
16+
<include>include
17+
<variant>debug:<define>_DEBUG
18+
<toolset>msvc:<define>WIN32
19+
<toolset>borland:<define>WIN32
20+
<link>shared:<define>LOG4CPP_HAS_DLL
21+
<link>shared:<define>LOG4CPP_BUILD_DLL
22+
:
23+
:
24+
<include>include
25+
<link>shared:<define>LOG4CPP_HAS_DLL
26+
;

tests/jamfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
project log4cpp/tests : requirements <source>..//log4cpp ;
2+
3+
import testing ;
4+
5+
test-suite log4cpp :
6+
# [ run testCategory.cpp ]
7+
# [ run testDLL.cpp ]
8+
# [ run testNDC.cpp ]
9+
# [ run testPattern.cpp ]
10+
# [ run testPropertyConfig.cpp ]
11+
# [ run testErrorCollision.cpp ]
12+
# [ run testmain.cpp ]
13+
# [ run testPropConfig.cpp ]
14+
[ run test_convenience.cpp ]
15+
;

0 commit comments

Comments
 (0)