summaryrefslogtreecommitdiff
path: root/test/Jamfile.jam
blob: 0741a65b197c2519298de6fcfee44ddafdcd1743 (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
lib boost_unit_test_framework : : <link>shared ;
lib dbpptestcore : : <link>shared ;
lib stdc++fs ;

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

project WebStat-Testing : requirements
	<define>SRC=\"$(src)\"
	<define>TEST=\"$(test)\"
	<library>$(src)//webstat
	;

lib test-util :
	test-util.cpp
	:
	<library>..//dbpp-postgresql
	;

run test-ingest.cpp :
	-- :
	../src/schema.sql
	:
	<define>BOOST_TEST_DYN_LINK
	<library>test-util
	<library>..//dbpp-postgresql
	<library>boost_unit_test_framework
	<library>dbpptestcore
	<library>stdc++fs
	;