]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/tools/build/example/variant/jamroot.jam
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / tools / build / example / variant / jamroot.jam
CommitLineData
1e59de90
TL
1# Copyright 2004 Vladimir Prus
2# Distributed under the Boost Software License, Version 1.0.
3# (See accompanying file LICENSE.txt or https://www.bfgroup.xyz/b2/LICENSE.txt)
7c673cae 4
b32b8144 5#[jamroot
1e59de90
TL
6#<< Define a build variant which is just combination of four properties.
7variant crazy : <optimization>speed <inlining>off
7c673cae 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#]