Boost logo

Boost-Commit :

From: jurko.gospodnetic_at_[hidden]
Date: 2008-09-03 21:59:21


Author: jurko
Date: 2008-09-03 21:59:21 EDT (Wed, 03 Sep 2008)
New Revision: 48571
URL: http://svn.boost.org/trac/boost/changeset/48571

Log:
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.
Text files modified:
   trunk/tools/build/v2/tools/msvc.jam | 8 +++++---
   1 files changed, 5 insertions(+), 3 deletions(-)

Modified: trunk/tools/build/v2/tools/msvc.jam
==============================================================================
--- trunk/tools/build/v2/tools/msvc.jam (original)
+++ trunk/tools/build/v2/tools/msvc.jam 2008-09-03 21:59:21 EDT (Wed, 03 Sep 2008)
@@ -971,8 +971,11 @@
     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 @@
     #
     # 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 ;


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk