diff options
author | Sebastien Barre <sebastien.barre@kitware.com> | 2001-05-25 19:27:52 (GMT) |
---|---|---|
committer | Sebastien Barre <sebastien.barre@kitware.com> | 2001-05-25 19:27:52 (GMT) |
commit | 1a2918040d99a073417b7b230ab7898933300ae9 (patch) | |
tree | 168ede97d01482284a0d90e618f094169c4fb4d9 /Templates | |
parent | 7a6699e183944ea12454cddbd34415b1c1d300c2 (diff) | |
download | CMake-1a2918040d99a073417b7b230ab7898933300ae9.zip CMake-1a2918040d99a073417b7b230ab7898933300ae9.tar.gz CMake-1a2918040d99a073417b7b230ab7898933300ae9.tar.bz2 |
better help
Diffstat (limited to 'Templates')
-rw-r--r-- | Templates/CMakeWindowsSystemConfig.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Templates/CMakeWindowsSystemConfig.cmake b/Templates/CMakeWindowsSystemConfig.cmake index eeb0c6f..9afd686 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") |