summaryrefslogtreecommitdiff
path: root/project2/cgi/Jamfile.jam
blob: 017dd11f4db58fc12438e5652c26c8273fe87300 (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
50
51
52
53
54
55
56
alias glibmm : : : :
	<cflags>"`pkg-config --cflags glibmm-2.4`"
	<linkflags>"`pkg-config --libs glibmm-2.4`"
	;
lib boost_filesystem : : <name>boost_filesystem ;
lib cgicc : : <name>cgicc ;
lib fcgi : : <name>fcgi ;
lib fcgi++ : : <name>fcgi++ ;

cpp-pch pch : pch.hpp :
	<include>../../libmisc
	<library>cgicc
	<library>glibmm
	<library>../common//p2common
	<library>boost_filesystem
	<library>../xml//p2xml
	;
lib p2web :
	pch
	[ glob cgi*.cpp ]
	:
	<include>../libmisc
	<library>cgicc
	<library>glibmm
	<library>../common//p2common
	<library>boost_filesystem
	<library>../xml//p2xml
	: :
	<library>..//p2parts
	<library>cgicc
	<library>../common//p2common
	;

exe p2cgi :
	p2webCgi.cpp
	:
	<library>p2web
	<include>../../libmisc
	;

exe p2fcgi :
	p2webFCgi.cpp FCgiIO.cpp
	fcgi++
	fcgi
	:
	<library>p2web
	<include>../../libmisc
	;

exe testCgi :
	testCgi.cpp
	:
	<library>p2web
	<include>../../libmisc
	;