summaryrefslogtreecommitdiff
path: root/project2/Jamfile.jam
blob: ac82e158f9b2a94c8cabeb23db130b3eebaa22d7 (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
40
41
42
43
44
45
46
47
48
49
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 boost_filesystem : : <name>boost_filesystem ;
lib cgicc : : <name>cgicc ;
lib esmtp : : <name>esmtp ;
lib curl : : <name>curl ;

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

exe p2console :
	libxmlpp
	libxslt
	[ glob *.cpp ]
	[ glob console/*.cpp ]
	../libmisc
	../libodbcpp :
	<include>../libmisc/
	<include>../libodbcpp/
	<library>boost_regex
	<library>boost_filesystem
	<library>odbc
	<library>curl
	<library>esmtp ;