diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-02-07 19:06:43 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-02-07 19:06:43 +0000 |
commit | 115f6dd6e6bd7be6173effec94a4b48289328d70 (patch) | |
tree | 6f21e91216f6db2f5875635b66737b69761f4a48 /project2/sql | |
parent | GCC-8.2 and libadhocutil-0.6 compat fixes (diff) | |
download | project2-115f6dd6e6bd7be6173effec94a4b48289328d70.tar.bz2 project2-115f6dd6e6bd7be6173effec94a4b48289328d70.tar.xz project2-115f6dd6e6bd7be6173effec94a4b48289328d70.zip |
Remove boost::filesystem in favour of std::filesystem
Diffstat (limited to 'project2/sql')
-rw-r--r-- | project2/sql/Jamfile.jam | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/project2/sql/Jamfile.jam b/project2/sql/Jamfile.jam index 2affda0..dfe578f 100644 --- a/project2/sql/Jamfile.jam +++ b/project2/sql/Jamfile.jam @@ -2,7 +2,7 @@ alias glibmm : : : : <cflags>"`pkg-config --cflags glibmm-2.4`" <linkflags>"`pkg-config --libs glibmm-2.4`" ; -lib boost_filesystem ; +lib stdc++fs ; lib dbppcore : : : : <include>/usr/include/dbpp ; build-project unittests ; @@ -20,7 +20,7 @@ lib p2sql : <include>. <library>dbppcore <library>glibmm - <library>boost_filesystem + <library>stdc++fs <library>../common//p2common <library>../basics//p2basics <library>..//adhocutil |