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