summaryrefslogtreecommitdiff
path: root/project2/xml/Jamfile.jam
blob: 0cd4e1e6f1ed3c4da6bba4a755ba96a195e01e2d (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
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 boost_filesystem : : <name>boost_filesystem ;

lib p2xml :
	rawView.cpp xmlPresenter.cpp transformHtml.cpp transformText.cpp xmlRows.cpp
	xmlRawRows.cpp xslRows.cpp xslRowsCache.cpp xslPreFetch.cpp xmlMemCache.cpp xmlCache.cpp sessionXml.cpp
	:
	<include>../libmisc
	<library>libxmlpp
	<library>../common//p2common
	<library>../uuid//p2uuid
	<library>../url//p2url
	<library>libxslt
	<library>boost_filesystem
	: :
	<library>../uuid//p2uuid
	<include>.
	;