Update of /cvsroot/cppunit/cppunit2
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv11051
Modified Files:
sconstruct
Log Message:
- Fixed bug in Registry::remove() when a suite had multiple child suites.
- Added Registry suite removal tests
Index: sconstruct
===================================================================
RCS file: /cvsroot/cppunit/cppunit2/sconstruct,v
retrieving revision 1.35
retrieving revision 1.36
diff -C2 -d -r1.35 -r1.36
*** sconstruct 16 Aug 2007 15:51:04 -0000 1.35
--- sconstruct 8 Jul 2008 20:42:00 -0000 1.36
***************
*** 23,27 ****
'Platform (compiler/stl) used to build the project',
'msvc71',
! allowed_values='suncc vacpp mingw msvc6 msvc7 msvc71 msvc80 linux-gcc'.split(),
ignorecase=2) )
--- 23,27 ----
'Platform (compiler/stl) used to build the project',
'msvc71',
! allowed_values='suncc vacpp mingw msvc6 msvc7 msvc71 msvc80 msvc90 linux-gcc'.split(),
ignorecase=2) )
***************
*** 86,89 ****
--- 86,94 ----
env.Tool( tool )
env['CXXFLAGS']='-GR -EHsc /nologo'
+ elif platform == 'msvc90':
+ env['MSVS_VERSION']='9.0'
+ for tool in ['msvc', 'msvs', 'mslink', 'masm', 'mslib']:
+ env.Tool( tool )
+ env['CXXFLAGS']='-GR -EHsc /nologo'
elif platform == 'mingw':
env.Tool( 'mingw' )
|