2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-17 13:42:14 +00:00
Files
build/new/builtin.jam
Vladimir Prus 0318e1da7c Propagate only propagated properties.
[SVN r14884]
2002-08-15 08:42:08 +00:00

23 lines
912 B
Plaintext

# Copyright (C) Vladimir Prus 2002. Permission to copy, use, modify, sell and
# distribute this software is granted provided this copyright notice appears in
# all copies. This software is provided "as is" without express or implied
# warranty, and with no claim as to its suitability for any purpose.
# Defines standard features and rules.
import feature : feature compose ;
feature toolset : gcc : implicit propagated ;
feature optimization : off on : propagated ;
feature threading : single multi : link-incompatible propagated ;
feature rtti : on off : link-incompatible propagated ;
feature debug-symbols : on off : propagated ;
feature define : : free ;
feature "include" : : free ;
feature variant : debug release : implicit composite propagated ;
compose <variant>debug : <optimization>off <rtti>on <debug-symbols>on ;
compose <variant>release : <optimization>on <rtti>on <debug-symbols>off ;