]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/tools/build/example/variant/jamroot.jam
update sources to v12.2.3
[ceph.git] / ceph / src / boost / tools / build / example / variant / jamroot.jam
CommitLineData
7c673cae
FG
1# Copyright 2004 Vladimir Prus
2# Distributed under the Boost Software License, Version 1.0.
3# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
4
b32b8144
FG
5#[jamroot
6#<< Define a build variant which is just combination of four properties.
7c673cae
FG
7variant crazy : <optimization>speed <inlining>off
8 <debug-symbols>on <profiling>on ;
b32b8144
FG
9
10#<< Define a built variant inherited from 'release'. It defines one new property and gets all properties from the parent `release` variant.
7c673cae 11variant super_release : release : <define>USE_ASM ;
b32b8144 12#]