Boost logo

Boost-Commit :

From: troy_at_[hidden]
Date: 2007-06-20 14:13:26


Author: troy
Date: 2007-06-20 14:13:26 EDT (Wed, 20 Jun 2007)
New Revision: 7114
URL: http://svn.boost.org/trac/boost/changeset/7114

Log:

separate out all_variants options

Text files modified:
   sandbox-branches/boost-cmake/dart-client/conf.py | 5 +++--
   1 files changed, 3 insertions(+), 2 deletions(-)

Modified: sandbox-branches/boost-cmake/dart-client/conf.py
==============================================================================
--- sandbox-branches/boost-cmake/dart-client/conf.py (original)
+++ sandbox-branches/boost-cmake/dart-client/conf.py 2007-06-20 14:13:26 EDT (Wed, 20 Jun 2007)
@@ -19,9 +19,10 @@
 #
 # Variants to build/test: map of tag => [cmake_arguments]
 #
+all_args = ['-DBUILD_TESTING:BOOL=ON']
 build_variants = {
- 'debug' : ['-DBUILD_TESTING:BOOL=ON', '-DBUILD_RELEASE:BOOL=OFF', '-DBUILD_DEBUG:BOOL=ON'],
- 'release': ['-DBUILD_TESTING:BOOL=ON', '-DBUILD_RELEASE:BOOL=ON', '-DBUILD_DEBUG:BOOL=OFF']
+ 'debug' : all_args + ['-DBUILD_RELEASE:BOOL=OFF', '-DBUILD_DEBUG:BOOL=ON'],
+ 'release': all_args + ['-DBUILD_RELEASE:BOOL=ON', '-DBUILD_DEBUG:BOOL=OFF']
 }
 
 #


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