blob: 0eb5b28b4228d2f3c1011df1c9a84a903b32630b (
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
|
import testing ;
path-constant me : . ;
lib boost_utf : : <name>boost_unit_test_framework ;
lib boost_filesystem ;
lib boost_system ;
lib dbpptestcore : : : : <include>/usr/include/dbpp ;
run
testsqlite.cpp
: : :
<define>ROOT=\"$(me)\"
<define>BOOST_TEST_DYN_LINK
<library>..//dbpp-sqlite
<library>dbpptestcore
<library>..//adhocutil
<library>boost_utf
<library>boost_filesystem
<library>boost_system
:
testsqlite
;
|