summaryrefslogtreecommitdiff
path: root/libjsonpp/Jamfile.jam
blob: ebab24df179fd9bb42032f37c2e47d1edff0df0b (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
import package ;
import testing ;
import lex ;

lib boost_utf : : <name>boost_unit_test_framework : :
	<toolset>tidy:<xcheckxx>hicpp-vararg
	<toolset>tidy:<xcheckxx>modernize-raw-string-literal
	;
lib stdc++fs ;

path-constant me : . ;

lib jsonpp :
	[ glob *.cpp *.ll : test*.cpp ]
	:
	<include>.
	<library>..//glibmm
	<define>yyFlexLexer=jsonBaseFlexLexer
	: :
	<include>.
	;

run
	testParse.cpp
	: : :
	<define>ROOT=\"$(me)\"
	<define>BOOST_TEST_DYN_LINK
	<library>jsonpp
	<library>boost_utf
	<library>stdc++fs
	:
	testParse
	;

run
	testSerialise.cpp
	: : :
	<define>ROOT=\"$(me)\"
	<define>BOOST_TEST_DYN_LINK
	<library>jsonpp
	<library>boost_utf
	<library>stdc++fs
	:
	testSerialise
	;

run
	testEncoding.cpp
	: : :
	<define>ROOT=\"$(me)\"
	<define>BOOST_TEST_DYN_LINK
	<library>jsonpp
	<library>boost_utf
	<library>stdc++fs
	:
	testEncoding
	;

package.install install : <install-source-root>. : : jsonpp : [ glob *.h : jsonFlexLexer.h ] ;