-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjamroot.jam
More file actions
26 lines (20 loc) · 968 Bytes
/
jamroot.jam
File metadata and controls
26 lines (20 loc) · 968 Bytes
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
#--------------------------------------------------------------------------------------------------
# Boost.Forest library
#
# Copyright 2012 Fabio Fracassi
#
# Distributed under the Boost Software License Version 1.0. (See
# accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
#
#--------------------------------------------------------------------------------------------------
# Ported over from ASL during C++Now! Library in a week session with permission from Sean Parent
# find original ASL at http://stlab.adobe.com/
#--------------------------------------------------------------------------------------------------
import modules ;
local boost = [ modules.peek : BOOST ] ;
project forest : requirements <include>$(boost) <include>. ;
# This seems to prevent some Boost.Build errors that otherwise occur :-(
use-project /boost : $(boost) ;
build-project ./libs/forest/test ;
# build-project ./libs/forest/doc ;