blob: 1183d57adc819cd7ad22363284289917a40cb7b9 (
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
|
import package ;
alias glibmm : : : :
<cflags>"`pkg-config --cflags glibmm-2.4`"
<linkflags>"`pkg-config --libs glibmm-2.4`"
;
lib pq ;
lib adhocutil : : : : <include>/usr/include/adhocutil ;
lib dbppcore : : : : <include>/usr/include/dbpp ;
lib boost_date_time ;
lib boost_system ;
alias libpq : : : :
<cflags>"-I`pg_config --includedir`"
<linkflags>"-L`pg_config --libdir`"
<library>pq
;
lib dbpp-postgresql :
[ glob *.cpp ] :
<library>glibmm
<library>libpq
<library>adhocutil
<library>dbppcore
<library>boost_date_time
<library>boost_system
<cflags>-fvisibility=hidden
<variant>release:<cflags>-flto
: :
<include>.
<cflags>"-I`pg_config --includedir`"
<library>glibmm
<library>dbppcore
;
build-project unittests ;
package.install install : <install-source-root>. : : dbpp-postgresql : [ glob *.h ] ;
|