summaryrefslogtreecommitdiff
path: root/project2/console/Jamfile.jam
blob: 24d85046e40aae95d0356470bc3d1cfae10d6916 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
alias glibmm : : : :
	<cflags>"`pkg-config --cflags glibmm-2.4`"
	<linkflags>"`pkg-config --libs glibmm-2.4`"
	;
cpp-pch pch : pch.hpp :
	<include>../../libmisc
	<library>glibmm
	<library>..//p2parts
	;
exe p2console :
	pch
	[ glob *.cpp ]
	:
	<include>.
	<library>..//p2parts
	<library>../common//p2common
	<library>../basics//p2basics
	<library>../cli//p2cli
	<include>../../libmisc
	;