summaryrefslogtreecommitdiff
path: root/project2/Jamfile.jam
blob: 771a473f5be0ee0625cff597585be10863de8bcd (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
using gcc ;

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

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

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