summaryrefslogtreecommitdiff
path: root/Templates
diff options
context:
space:
mode:
authorSebastien Barre <sebastien.barre@kitware.com>2001-05-25 15:27:52 -0400
committerSebastien Barre <sebastien.barre@kitware.com>2001-05-25 15:27:52 -0400
commit1a2918040d99a073417b7b230ab7898933300ae9 (patch)
tree168ede97d01482284a0d90e618f094169c4fb4d9 /Templates
parent7a6699e183944ea12454cddbd34415b1c1d300c2 (diff)
downloadcmake-1a2918040d99a073417b7b230ab7898933300ae9.tar.gz
better help
Diffstat (limited to 'Templates')
-rw-r--r--Templates/CMakeWindowsSystemConfig.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/Templates/CMakeWindowsSystemConfig.cmake b/Templates/CMakeWindowsSystemConfig.cmake
index eeb0c6f4a2..9afd686330 100644
--- a/Templates/CMakeWindowsSystemConfig.cmake
+++ b/Templates/CMakeWindowsSystemConfig.cmake
@@ -7,10 +7,10 @@ SET (HAVE_LIMITS_H 1)
SET (HAVE_UNISTD_H 1)
SET (CXX VC++60 )
SET (CMAKE_CXX_FLAGS_RELEASE "/MD /O2" CACHE STRING
- "Flags used by the compiler during release builds")
+ "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_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
"Flags used by the compiler during debug builds")
SET (CMAKE_CXX_FLAGS "/W3 /Zm1000 /GX /GR" CACHE STRING
- "Flags used by the compiler during all build types, /GX /GR are for exceptions and rtti in VC++")
+ "Flags used by the compiler during all build types, /GX /GR are for exceptions and rtti in VC++, /Zm1000 increases the compiler's memory allocation to support ANSI C++/stdlib")