diff options
Diffstat (limited to 'libmysqlpp/unittests/Jamfile.jam')
-rw-r--r-- | libmysqlpp/unittests/Jamfile.jam | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libmysqlpp/unittests/Jamfile.jam b/libmysqlpp/unittests/Jamfile.jam new file mode 100644 index 0000000..3e7b030 --- /dev/null +++ b/libmysqlpp/unittests/Jamfile.jam @@ -0,0 +1,18 @@ +import testing ; + +path-constant me : . ; + +lib boost_utf : : <name>boost_unit_test_framework ; + +run + testmysql.cpp + : : : + <define>ROOT=\"$(me)\" + <define>BOOST_TEST_DYN_LINK + <library>..//dbpp-mysql + <library>../../libdbpp//dbpptestcore + <library>boost_utf + : + testmysql + ; + |