summaryrefslogtreecommitdiffstats
path: root/src/boost/tools/build/example/variant/jamroot.jam
blob: 52d21e49852cfb7768a9b8c1c747e5d62d86359e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# 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) 

#[jamroot
#<< 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 gets all properties from the parent `release` variant.
variant super_release : release : <define>USE_ASM ;
#]