summaryrefslogtreecommitdiff
path: root/unittests/Jamfile.jam
blob: 830fd25b6641d3ebfd043a41a80985f30c47d8ab (plain)
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
27
28
import testing ;

lib boost_utf : : <name>boost_unit_test_framework ;
lib dryice : : : : <library>..//icetray ;

path-constant gitdir : ../.git ;

lib common :
	mockDefs.cpp
	:
	<library>dryice
	<library>../src//gitfs++11
	<library>..//adhocutil
	<library>boost_utf
	<define>ROOT=\"$(gitdir)\"
	: :
	<library>dryice
	<library>../src//gitfs++11
	<library>boost_utf
	<define>ROOT=\"$(gitdir)\"
	<define>BOOST_TEST_DYN_LINK
	;


run config.cpp : : : <library>common ;
run core.cpp : : : <library>common ;
run service.cpp : : : <library>common ;