summaryrefslogtreecommitdiffstats
path: root/Templates/CMakeWindowsSystemConfig.cmake
diff options
context:
space:
mode:
authorIan Scott <ian.m.scott@stud.man.ac.uk>2001-07-03 09:27:39 (GMT)
committerIan Scott <ian.m.scott@stud.man.ac.uk>2001-07-03 09:27:39 (GMT)
commit331c517eeb8c11e8fc67598a8156d14a2a865533 (patch)
tree89db69c1b8c3980ac79f90d1f0420ec85254e025 /Templates/CMakeWindowsSystemConfig.cmake
parentd9e7be545f449db384e6e0193a7906e6139acb9c (diff)
downloadCMake-331c517eeb8c11e8fc67598a8156d14a2a865533.zip
CMake-331c517eeb8c11e8fc67598a8156d14a2a865533.tar.gz
CMake-331c517eeb8c11e8fc67598a8156d14a2a865533.tar.bz2
Renamed the ReleaseWithDebugInfo Build configuration to RelWithDebInfo,
because msdev does simple matching on build target, and specifying either Release or Debug builds would also build ReleaseWithDebugInfo
Diffstat (limited to 'Templates/CMakeWindowsSystemConfig.cmake')
-rw-r--r--Templates/CMakeWindowsSystemConfig.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/Templates/CMakeWindowsSystemConfig.cmake b/Templates/CMakeWindowsSystemConfig.cmake
index 267e322..69199ed 100644
--- a/Templates/CMakeWindowsSystemConfig.cmake
+++ b/Templates/CMakeWindowsSystemConfig.cmake
@@ -6,8 +6,8 @@ SET (CMAKE_CXX_COMPILER VC++60 CACHE STRING
"Name of C++ compiler used.")
SET (CMAKE_CXX_FLAGS_RELEASE "/MD /O2" CACHE STRING
"Flags used by the compiler during release builds (/MD /Ob1 /Oi /Ot /Oy /Gs will produce slightly less optimized but smaller files)")
-SET (CMAKE_CXX_FLAGS_RELWITHDEBUGINFO "/MD /Zi /O2" CACHE STRING
- "Flags used by the compiler during ReleaseWithDebugInfo builds")
+SET (CMAKE_CXX_FLAGS_RELWITHDEBINFO "/MD /Zi /O2" CACHE STRING
+ "Flags used by the compiler during Release with Debug Info builds")
SET (CMAKE_CXX_FLAGS_MINSIZEREL "/MD /O1" CACHE STRING
"Flags used by the compiler during release minsize builds")
SET (CMAKE_CXX_FLAGS_DEBUG "/MDd /Zi /Od /GZ" CACHE STRING