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