blob: 7bdba932ca7e312e737434afd7f77a6578847a24 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
import icespider ;
import testing ;
lib icespider-core ;
lib icespider-common ;
lib icespider-fcgi ;
lib icespider-testing ;
lib adhocutil ;
lib Ice ;
lib IceUtil ;
lib pthread ;
lib boost_system ;
lib boost_filesystem ;
lib slicer ;
lib slicer-json ;
lib slicer-db ;
lib boost_unit_test_framework ;
lib icespider : :
<name>icespider-core
: :
<include>/usr/include/icespider
<include>/usr/include/slicer
<include>/usr/include/adhocutil
<include>/usr/share/icespider/ice
<library>icespider-common
<library>adhocutil
<library>Ice
<library>IceUtil
<library>pthread
<library>slicer
<library>boost_system
<allow-ice>yes
;
alias mirrorsearchsite :
[ glob *.cpp *.ice *.json : test.cpp ]
:
<slicer>yes
: :
<library>../service//mirrorsearch-api
<implicit-dependency>../service//mirrorsearch-api
<library>icespider
<library>slicer-json
<include>.
;
exe mirrorsearch-cgi :
mirrorsearchsite
:
<slicer>yes
<library>icespider-fcgi
;
path-constant me : . ;
obj test :
test.cpp
:
<define>BOOST_TEST_DYN_LINK
<define>ROOT=\"$(me)\"
<library>icespider-testing
<library>mirrorsearchsite
;
run
test
mirrorsearchsite
: : :
<slicer>yes
<library>boost_filesystem
<library>icespider-testing
<library>boost_unit_test_framework
<library>../service//mirrorsearch-service
: testmirrorsearchsite ;
|