summaryrefslogtreecommitdiff
path: root/libpqpp/unittests/Jamfile.jam
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2019-01-31 20:12:57 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2019-02-03 19:02:43 +0000
commit9bf78dba1a5520b3d50a8d9ac74f0c0c12e46e59 (patch)
treecb046d5faf68ca86c4e9c49245abdcccd01940f8 /libpqpp/unittests/Jamfile.jam
parentSwitch to structured binding interface (diff)
downloadlibdbpp-postgresql-9bf78dba1a5520b3d50a8d9ac74f0c0c12e46e59.tar.bz2
libdbpp-postgresql-9bf78dba1a5520b3d50a8d9ac74f0c0c12e46e59.tar.xz
libdbpp-postgresql-9bf78dba1a5520b3d50a8d9ac74f0c0c12e46e59.zip
Remove boost::filesystem in favour of std::filesystem
Diffstat (limited to 'libpqpp/unittests/Jamfile.jam')
-rw-r--r--libpqpp/unittests/Jamfile.jam10
1 files changed, 5 insertions, 5 deletions
diff --git a/libpqpp/unittests/Jamfile.jam b/libpqpp/unittests/Jamfile.jam
index 85abb80..577b70c 100644
--- a/libpqpp/unittests/Jamfile.jam
+++ b/libpqpp/unittests/Jamfile.jam
@@ -3,22 +3,22 @@ import testing ;
path-constant me : . ;
lib boost_utf : : <name>boost_unit_test_framework ;
-lib boost_filesystem ;
-lib boost_system ;
+lib stdc++fs ;
lib dbpptestcore : : : : <include>/usr/include/dbpp ;
lib adhocutil : : : : <include>/usr/include/adhocutil ;
run
testpq.cpp
- : : :
+ : :
+ pqschema.sql
+ :
<define>ROOT=\"$(me)\"
<define>BOOST_TEST_DYN_LINK
<library>..//dbpp-postgresql
<library>dbpptestcore
<library>adhocutil
<library>boost_utf
- <library>boost_filesystem
- <library>boost_system
+ <library>stdc++fs
:
testpq
;