mirror of
https://github.com/boostorg/build.git
synced 2026-02-14 00:32:11 +00:00
Minor stylistic change in the Boost Build tools/msvc.jam toolset grouping all of msvc specific feature declarations together as we may later decide to initialize them automatically on module import and initialize the toolset and its generators only when the first toolset version gets configured correctly.
[SVN r48571]
This commit is contained in:
@@ -971,8 +971,11 @@ local rule register-toolset-really ( )
|
||||
toolset.add-requirements
|
||||
<toolset>msvc,<runtime-link>shared:<threading>multi ;
|
||||
|
||||
# Precompiled header (PCH) support feature.
|
||||
feature.feature pch-source : : free dependency ;
|
||||
# Declare msvc toolset specific features.
|
||||
{
|
||||
feature.feature debug-store : object database : propagated ;
|
||||
feature.feature pch-source : : dependency free ;
|
||||
}
|
||||
|
||||
# Declare generators.
|
||||
{
|
||||
@@ -1014,7 +1017,6 @@ local rule register-toolset-really ( )
|
||||
#
|
||||
# Declare flags for compilation.
|
||||
#
|
||||
feature.feature debug-store : object database : propagated ;
|
||||
|
||||
toolset.flags msvc.compile CFLAGS <optimization>speed : /O2 ;
|
||||
toolset.flags msvc.compile CFLAGS <optimization>space : /O1 ;
|
||||
|
||||
Reference in New Issue
Block a user