2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-01 20:32:17 +00:00
Files
build/example/variant/project-root.jam
Vladimir Prus ef0560eb68 Add new example.
[SVN r21665]
2004-01-13 09:57:55 +00:00

10 lines
359 B
Plaintext

# 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 ;