summaryrefslogtreecommitdiff
path: root/project2/Jamfile.jam
blob: a8cf8aed095c2c08ca9a7d5c8812d079d24e4e71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using gcc ;

alias libxmlpp : : : :
	<cflags>"`pkg-config --cflags libxml++-2.6`"
	<linkflags>"`pkg-config --libs libxml++-2.6`" ;

lib fcgi : : <name>fcgi ;
lib odbc : : <name>odbc ;
lib boost_regex : : <name>boost_regex ;
lib cgicc : : <name>cgicc ;

exe p2web :
	libxmlpp
	[ glob *.cpp ]
	../libmisc
	../libodbcpp :
	<include>../libmisc/
	<include>../libodbcpp/
	<library>boost_regex
	<library>odbc
	<library>cgicc
	<library>fcgi ;