summaryrefslogtreecommitdiff
path: root/tools/build/v2/example/variant/jamroot.jam
blob: e19476ccc0075533a135b3d37caffa5bde32a43d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Copyright 2004 Vladimir Prus 
# Distributed under the Boost Software License, Version 1.0. 
# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) 


# Define a build variant which is just combination
# of four properties. 
variant crazy : <optimization>speed <inlining>off 
                <debug-symbols>on <profiling>on ;
		
# Define a built variant inherited from 'release'.
# It defines one new property and get all properties
# from parent variant.		
variant super_release : release : <define>USE_ASM ;