diff options
Diffstat (limited to 'netfs/fuse/Jamfile.jam')
-rw-r--r-- | netfs/fuse/Jamfile.jam | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/netfs/fuse/Jamfile.jam b/netfs/fuse/Jamfile.jam index e7558f6..acf757d 100644 --- a/netfs/fuse/Jamfile.jam +++ b/netfs/fuse/Jamfile.jam @@ -1,3 +1,4 @@ +lib fuse : : <name>fuse ; cpp-pch pch : pch.hpp : <define>_FILE_OFFSET_BITS=64 @@ -6,7 +7,7 @@ cpp-pch pch : pch.hpp : <implicit-dependency>../ice//netfsComms <library>../ice//netfsComms <library>..//boost_thread - <library>..//fuse + <library>fuse <library>..//Ice ; @@ -25,10 +26,10 @@ obj configuration : <library>..//slicer ; -exe netfs : +lib netfsClient : pch configuration - [ glob *.cpp ] + [ glob *.cpp : netfs.cpp ] [ glob ../../libfusepp/fuse*.cpp ] : <define>_FILE_OFFSET_BITS=64 @@ -40,12 +41,25 @@ exe netfs : <library>../lib//netfsCommon <library>..//boost_thread <library>..//boost_system - <library>..//fuse + <library>fuse <library>..//Ice <library>..//IceUtil <library>..//pthread <library>..//slicer <library>..//libxmlpp <library>..//slicer-xml + : : + <include>. + <include>../../libfusepp + <library>../ice//netfsComms + <implicit-dependency>../ice//netfsComms + <implicit-dependency>configuration + <define>_FILE_OFFSET_BITS=64 + <library>fuse + ; + +exe netfs : + netfs.cpp : + <library>netfsClient ; |