mirror of
https://github.com/boostorg/build.git
synced 2026-02-01 20:32:17 +00:00
10 lines
359 B
Plaintext
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 ; |