summaryrefslogtreecommitdiff
path: root/test/Jamfile.jam
diff options
context:
space:
mode:
Diffstat (limited to 'test/Jamfile.jam')
-rw-r--r--test/Jamfile.jam9
1 files changed, 7 insertions, 2 deletions
diff --git a/test/Jamfile.jam b/test/Jamfile.jam
index 2cdf94c..38bee41 100644
--- a/test/Jamfile.jam
+++ b/test/Jamfile.jam
@@ -2,13 +2,18 @@ lib boost_unit_test_framework ;
project : requirements
<library>../lib//mygrate
- <library>boost_unit_test_framework
+ <library>boost_unit_test_framework/<link>shared
<define>BOOST_TEST_DYN_LINK
;
+lib testdb :
+ [ glob testdb-*.cpp ] :
+ <link>static
+ ;
+
run test-rawDataReader.cpp ;
run test-bitset.cpp ;
run test-streams.cpp ;
run test-misc.cpp ;
-run test-mysql.cpp ;
+run test-mysql.cpp : : : <library>testdb ;
run test-postgresql.cpp ;