diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-09-24 03:02:07 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-09-24 03:06:06 +0100 |
commit | 817e41ccb3102239c24af940f301a5335ddabeac (patch) | |
tree | f93d51c06d3d244b5ddfd2c3b13f895a14c67e84 /libpqpp/unittests/Jamfile.jam | |
parent | Connector compatibility fix (diff) | |
download | libdbpp-postgresql-817e41ccb3102239c24af940f301a5335ddabeac.tar.bz2 libdbpp-postgresql-817e41ccb3102239c24af940f301a5335ddabeac.tar.xz libdbpp-postgresql-817e41ccb3102239c24af940f301a5335ddabeac.zip |
PostgreSQL mocking and tests from Project2
Diffstat (limited to 'libpqpp/unittests/Jamfile.jam')
-rw-r--r-- | libpqpp/unittests/Jamfile.jam | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libpqpp/unittests/Jamfile.jam b/libpqpp/unittests/Jamfile.jam new file mode 100644 index 0000000..39d0576 --- /dev/null +++ b/libpqpp/unittests/Jamfile.jam @@ -0,0 +1,18 @@ +import testing ; + +path-constant me : . ; + +lib boost_utf : : <name>boost_unit_test_framework ; + +run + testpq.cpp + : : : + <define>ROOT=\"$(me)\" + <define>BOOST_TEST_DYN_LINK + <library>..//dbpp-postgresql + <library>../../libdbpp//dbpptestcore + <library>boost_utf + : + testpq + ; + |