summaryrefslogtreecommitdiff
path: root/service/Jamfile.jam
blob: e7bfed90829fa3f51548eaf49289fa71d3aea6cb (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
import icetray ;
import package ;
import testing ;

lib boost_utf : : <name>boost_unit_test_framework ;
lib dbpp-postgresql : : : : <include>/usr/include/dbpp-postgresql ;
lib dryice : : : : <include>/usr/include/icetray ;

lib mirrorsearch :
	[ glob *.cpp *.ice sql/*.sql : test.cpp ]
	:
	<slicer>yes
	<library>..//adhocutil
	<library>..//dbppcore
	<library>..//boost_system
	<library>..//boost_filesystem
	<library>..//boost_date_time
	<library>..//Ice
	<library>..//IceBox
	<library>..//IceUtil
	<library>..//pthread
	<library>..//icetray
	<library>..//slicer
	<library>..//slicer-db
	<library>..//glibmm
	<library>..//xml2
	<icetray.sql.namespace>MirrorSearch
	<icetray.sql.basedir>.
	<include>.
	: :
	<include>.
	<library>..//icetray
	;

path-constant me : . ;

run test.cpp
	: :
	data.sql
	schema.sql
	:
	<define>BOOST_TEST_DYN_LINK
	<library>..//boost_system
	<library>..//boost_filesystem
	<library>boost_utf
	<define>ROOT=\"$(me)\"
	<library>dbpp-postgresql
	<library>..//dbppcore
	<library>..//adhocutil
	<library>..//boost_system
	<library>..//boost_filesystem
	<library>..//netfs-api
	<library>..//IceUtil
	<library>..//Ice
	<library>..//IceBox
	<library>..//pthread
	<library>dryice
	<library>mirrorsearch
	<implicit-dependency>mirrorsearch
;

package.install install : : : mirrorsearch ;