diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-01-31 20:12:57 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-02-03 19:02:43 +0000 |
commit | 9bf78dba1a5520b3d50a8d9ac74f0c0c12e46e59 (patch) | |
tree | cb046d5faf68ca86c4e9c49245abdcccd01940f8 /libpqpp/Jamfile.jam | |
parent | Switch to structured binding interface (diff) | |
download | libdbpp-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/Jamfile.jam')
-rw-r--r-- | libpqpp/Jamfile.jam | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpqpp/Jamfile.jam b/libpqpp/Jamfile.jam index b1578ab..2b31d95 100644 --- a/libpqpp/Jamfile.jam +++ b/libpqpp/Jamfile.jam @@ -4,7 +4,7 @@ lib pq ; lib adhocutil : : : : <include>/usr/include/adhocutil ; lib dbppcore : : : : <include>/usr/include/dbpp ; lib boost_date_time ; -lib boost_system ; +lib stdc++fs ; alias libpq : : : : <cflags>"-I`pg_config --includedir`" @@ -19,7 +19,7 @@ lib dbpp-postgresql : <library>adhocutil <library>dbppcore <library>boost_date_time - <library>boost_system + <library>stdc++fs : : <include>. <cflags>"-I`pg_config --includedir`" |