blob: 09f26696b7798c182864759d615451f1a0811494 (
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
|
import package ;
lib pq : : : :
<cflags>"-I`pg_config --includedir`"
<linkflags>"-L`pg_config --libdir`"
;
lib adhocutil : : : : <include>/usr/include/adhocutil ;
lib dbppcore : : : : <include>/usr/include/dbpp ;
lib boost_date_time ;
lib stdc++fs ;
lib dbpp-postgresql :
[ glob *.cpp ] :
<library>..//glibmm
<library>pq
<library>adhocutil
<library>dbppcore
<library>boost_date_time
<library>stdc++fs
: :
<include>.
<cflags>"-I`pg_config --includedir`"
<library>..//glibmm
<library>dbppcore
;
build-project unittests ;
package.install install : <install-source-root>. : : dbpp-postgresql : [ glob pq-*.h ] ;
|