summaryrefslogtreecommitdiff
path: root/icespider/fileSessions/Jamfile.jam
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2016-10-08 21:39:17 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2016-10-08 21:39:17 +0100
commitc523f40ddf83eb7bd49ab50c913ac65fd31f0139 (patch)
treef8d80f852c8bbcb26d405c3531362cf987bfc53c /icespider/fileSessions/Jamfile.jam
parentAdd ability to load plugins (such as a session manager service) into the core... (diff)
downloadicespider-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.jam13
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
+ ;
+