blob: d825fa5e1f80d86ea7186f13f75e51132ce2fda6 (
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
|
import package ;
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 ] ;
|