summaryrefslogtreecommitdiff
path: root/test/Jamfile.jam
blob: 8460cef7701635b0652b5a987111828c0b0a3a5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
lib boost_unit_test_framework : : <link>shared ;
lib dbpptestcore : : <link>shared ;
lib stdc++fs ;

path-constant src : ../src ;
path-constant test : . ;

run test-ingest.cpp :
	-- :
	../src/schema.sql
	:
	<define>BOOST_TEST_DYN_LINK
	<define>SRC=\"$(src)\"
	<define>TEST=\"$(test)\"
	<library>$(src)//webstat
	<library>..//dbpp-postgresql
	<library>boost_unit_test_framework
	<library>dbpptestcore
	<library>stdc++fs
	;