]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/tools/build/example/variant/jamroot.jam
add subtree-ish sources for 12.0.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
5
6# Define a build variant which is just combination
7# of four properties.
8variant crazy : <optimization>speed <inlining>off
9 <debug-symbols>on <profiling>on ;
10
11# Define a built variant inherited from 'release'.
12# It defines one new property and get all properties
13# from parent variant.
14variant super_release : release : <define>USE_ASM ;