diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-02-03 19:40:41 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-02-03 19:40:41 +0000 |
commit | b7c6cf0e3de4871bbb65742deb444ddeac3c47dc (patch) | |
tree | 0a41adc9347196f640c0c24dc538a364bab19580 /icespider/fileSessions/Jamfile.jam | |
parent | HTTP headers are case insensitive (diff) | |
download | icespider-b7c6cf0e3de4871bbb65742deb444ddeac3c47dc.tar.bz2 icespider-b7c6cf0e3de4871bbb65742deb444ddeac3c47dc.tar.xz icespider-b7c6cf0e3de4871bbb65742deb444ddeac3c47dc.zip |
Remove boost::filesystem in favour of std::filesystem
Diffstat (limited to 'icespider/fileSessions/Jamfile.jam')
-rw-r--r-- | icespider/fileSessions/Jamfile.jam | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/icespider/fileSessions/Jamfile.jam b/icespider/fileSessions/Jamfile.jam index 1a457cd..8cd6525 100644 --- a/icespider/fileSessions/Jamfile.jam +++ b/icespider/fileSessions/Jamfile.jam @@ -1,12 +1,10 @@ lib adhocutil : : : : <include>/usr/include/adhocutil ; -lib boost_system ; -lib boost_filesystem ; +lib stdc++fs ; lib icespider-filesessions : [ glob *.cpp ] : - <library>boost_system - <library>boost_filesystem + <library>stdc++fs <library>adhocutil <library>../core//icespider-core <implicit-dependency>../core//icespider-core |