diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-10-08 21:39:17 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-10-08 21:39:17 +0100 |
commit | c523f40ddf83eb7bd49ab50c913ac65fd31f0139 (patch) | |
tree | f8d80f852c8bbcb26d405c3531362cf987bfc53c /icespider/fileSessions/Jamfile.jam | |
parent | Add ability to load plugins (such as a session manager service) into the core... (diff) | |
download | icespider-c523f40ddf83eb7bd49ab50c913ac65fd31f0139.tar.bz2 icespider-c523f40ddf83eb7bd49ab50c913ac65fd31f0139.tar.xz icespider-c523f40ddf83eb7bd49ab50c913ac65fd31f0139.zip |
Adds a session manager interface and basic file based implementation as a plugin
Diffstat (limited to 'icespider/fileSessions/Jamfile.jam')
-rw-r--r-- | icespider/fileSessions/Jamfile.jam | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/icespider/fileSessions/Jamfile.jam b/icespider/fileSessions/Jamfile.jam new file mode 100644 index 0000000..f08559d --- /dev/null +++ b/icespider/fileSessions/Jamfile.jam @@ -0,0 +1,13 @@ +lib adhocutil : : : : <include>/usr/include/adhocutil ; +lib boost_system ; +lib boost_filesystem ; + +lib icespider-filesessions : + [ glob *.cpp ] + : + <library>boost_system + <library>boost_filesystem + <library>adhocutil + <library>../core//icespider-core + ; + |