summaryrefslogtreecommitdiff
path: root/libadhocutil/unittests/Jamfile.jam
blob: c8abcb9d2c2520daa6aa4bb430a01d8782566e48 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import testing ;

path-constant me : . ;

lib boost_utf : : <name>boost_unit_test_framework ;
lib boost_filesystem ;
lib boost_system ;

run
	testContext.cpp
	: : :
	<define>ROOT=\"$(me)\"
	<define>BOOST_TEST_DYN_LINK
	<library>..//adhocutil
	<library>boost_utf
	:
	testContext
	;

run
	testCurlStream.cpp
	: : :
	<define>ROOT=\"$(me)\"
	<define>BOOST_TEST_DYN_LINK
	<library>..//adhocutil
	<library>boost_utf
	<library>boost_filesystem
	<library>boost_system
	:
	testCurlStream
	;

run
	testBuffer.cpp
	: : :
	<define>BOOST_TEST_DYN_LINK
	<library>..//adhocutil
	<library>boost_utf
	:
	testBuffer
	;

run
	testProcessPipes.cpp
	: : :
	<define>BOOST_TEST_DYN_LINK
	<define>ROOT=\"$(me)\"
	<library>..//adhocutil
	<library>boost_utf
	<library>boost_filesystem
	<library>boost_system
	:
	testProcessPipes
	;

run
	testMapFinds.cpp
	: : :
	<define>BOOST_TEST_DYN_LINK
	<library>..//adhocutil
	<library>boost_utf
	:
	testMapFinds
	;