blob: d4014ea248b43f097cf749ac48d71e78e62b3660 (
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 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
testmysql.cpp
: : :
<define>ROOT=\"$(me)\"
<define>BOOST_TEST_DYN_LINK
<library>..//dbpp-mysql
<library>dbpptestcore
<library>boost_utf
<library>boost_system
<library>boost_filesystem
<dependency>mysqlschema.sql
:
testmysql
;
run
testmysqle.cpp
: --log_level=all : :
<define>ROOT=\"$(me)\"
<define>BOOST_TEST_DYN_LINK
<library>..//dbpp-mysql-embedded
<library>dbpptestcore
<library>boost_utf
<library>boost_system
<library>boost_filesystem
<dependency>mysqlschema.sql
:
testmysqle
;
|