blob: 30efa98aa51b1cf1e985e6f16b223ce024b6e6ad (
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
|
import package ;
build-project core ;
build-project compile ;
build-project unittests ;
build-project fcgi ;
build-project xslt ;
build-project fileSessions ;
lib Ice ;
lib IceUtil ;
lib pthread ;
package.install install : :
compile//icespider
:
core//icespider-core
common//icespider-common
fcgi//icespider-fcgi
xslt//icespider-xslt
fileSessions//icespider-filesessions
:
[ glob-tree *.h : fcgi unittests compile ]
;
package.install-data install-tools : boost-build/tools : compile/icespider.jam ;
package.install-data install-ice : icespider/ice : [ glob common/*.ice ] ;
|