summaryrefslogtreecommitdiff
path: root/netfs/Jamfile.jam
blob: e00fa1635afb01b6c784a7dad399e4da19c2ed67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using gcc ;

alias libxmlpp : : : :
	<cflags>"`pkg-config --cflags libxml++-2.6`"
	<linkflags>"`pkg-config --libs libxml++-2.6`" ;
alias fuse : : : :
	<cflags>"-D_FILE_OFFSET_BITS=64"
	<linkflags>"-lfuse" ;

lib boost_regex : : <name>boost_regex ;
lib boost_filesystem : : <name>boost_filesystem ;

exe netfs :
	libxmlpp
	comms.cpp msgtypes.cpp
	[ glob fuse*.cpp ]
	../libmisc
	:
	<include>../libmisc/
	<library>boost_regex
	<library>fuse
	;

exe netfsd :
	libxmlpp
	comms.cpp msgtypes.cpp
	[ glob daemon*.cpp ]
	../libmisc
	:
	<include>../libmisc/
	<library>boost_regex
	<library>fuse
	;