diff options
Diffstat (limited to 'netfs/fuse/Jamfile.jam')
-rw-r--r-- | netfs/fuse/Jamfile.jam | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/netfs/fuse/Jamfile.jam b/netfs/fuse/Jamfile.jam index 40a86f3..8814a9d 100644 --- a/netfs/fuse/Jamfile.jam +++ b/netfs/fuse/Jamfile.jam @@ -1,3 +1,6 @@ +lib slicer : : : : <include>/usr/include/slicer ; +lib slicer-xml : : : : <include>/usr/include/slicer ; + cpp-pch pch : pch.hpp : <define>_FILE_OFFSET_BITS=64 <include>../../libmisc @@ -7,13 +10,26 @@ cpp-pch pch : pch.hpp : <library>..//boost_thread <library>..//fuse <library>..//Ice - <library>..//libxml2 ; +obj configuration : + configuration.ice + : + <slicer>yes + <library>..//Ice + <library>..//IceUtil + <library>..//pthread + <library>slicer + : : + <library>..//IceUtil + <library>..//Ice + <library>..//boost_system + <library>slicer + ; exe netfs : pch - ../../libmisc/xml.cpp + configuration [ glob *.cpp ] [ glob ../../libfusepp/fuse*.cpp ] : @@ -21,6 +37,7 @@ exe netfs : <include>../../libmisc <include>../../libfusepp <implicit-dependency>../ice//netfsComms + <implicit-dependency>configuration <library>../ice//netfsComms <library>../lib//netfsCommon <library>..//boost_thread @@ -29,6 +46,7 @@ exe netfs : <library>..//Ice <library>..//IceUtil <library>..//pthread - <library>..//libxml2 + <library>slicer + <library>slicer-xml ; |