summaryrefslogtreecommitdiff
path: root/slicer/json/Jamfile.jam
blob: be5f9519d65316aead69127d357a58fb89b5f196 (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
import package ;

lib jsonpp : : : :
	<library>../..//glibmm
	;

lib stdc++fs ;

lib slicer-json :
	[ glob *.cpp : test*.cpp ]
	:
	<include>..
	<library>stdc++fs
	<library>jsonpp
	<library>../..//glibmm
	<library>..//adhocutil
	<library>../slicer//slicer
	: :
	<library>jsonpp
	;

run testSpecifics.cpp
	: : :
	<define>BOOST_TEST_DYN_LINK
	<library>slicer-json
	<library>stdc++fs
	<library>..//boost_utf
	<library>../test//types
	<implicit-dependency>../test//types
	<library>../test//common
	<library>../slicer//slicer
	<include>..
	:
	testSpecifics
	;

explicit install ;
package.install install : <install-header-subdir>slicer/json : : slicer-json : [ glob-tree *.h ] ;