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