summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio7Generator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-05-29 13:58:43 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2014-05-29 13:58:43 (GMT)
commit177d0ef15e2767da5dd4774cc9a8d62b14990d2e (patch)
treed969b40b1b2228dcfbb843ef0034d1db0a35f254 /Source/cmGlobalVisualStudio7Generator.cxx
parent0fbec3d3c2a55d40d2671990ffd6baa53dce24d1 (diff)
parentb684ce58dde41162179ab1cc6a0558e269bfd209 (diff)
downloadCMake-177d0ef15e2767da5dd4774cc9a8d62b14990d2e.zip
CMake-177d0ef15e2767da5dd4774cc9a8d62b14990d2e.tar.gz
CMake-177d0ef15e2767da5dd4774cc9a8d62b14990d2e.tar.bz2
Merge topic 'vs-vcproj-bool-case'
b684ce58 VS: Use lower-case boolean values in VS 7-9 (#14927)
Diffstat (limited to 'Source/cmGlobalVisualStudio7Generator.cxx')
-rw-r--r--Source/cmGlobalVisualStudio7Generator.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGlobalVisualStudio7Generator.cxx b/Source/cmGlobalVisualStudio7Generator.cxx
index 42033c5..b581147 100644
--- a/Source/cmGlobalVisualStudio7Generator.cxx
+++ b/Source/cmGlobalVisualStudio7Generator.cxx
@@ -1024,11 +1024,11 @@ static cmVS7FlagTable cmVS7ExtraFlagTable[] =
cmVS7FlagTable::UserValueIgnored | cmVS7FlagTable::Continue},
{"PrecompiledHeaderThrough", "Yu", "Precompiled Header Name", "",
cmVS7FlagTable::UserValueRequired},
- {"WholeProgramOptimization", "LTCG", "WholeProgramOptimization", "TRUE", 0},
+ {"WholeProgramOptimization", "LTCG", "WholeProgramOptimization", "true", 0},
// Exception handling mode. If no entries match, it will be FALSE.
- {"ExceptionHandling", "GX", "enable c++ exceptions", "TRUE", 0},
- {"ExceptionHandling", "EHsc", "enable c++ exceptions", "TRUE", 0},
+ {"ExceptionHandling", "GX", "enable c++ exceptions", "true", 0},
+ {"ExceptionHandling", "EHsc", "enable c++ exceptions", "true", 0},
// The EHa option does not have an IDE setting. Let it go to false,
// and have EHa passed on the command line by leaving out the table
// entry.