diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-05-24 16:57:33 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-05-24 16:57:33 (GMT) |
commit | 5731bc9d54036b28d4fce428cc218bb207c63411 (patch) | |
tree | 39caed87c95dc064689d064469ca5d9b01a7db00 /Templates/CMakeWindowsSystemConfig.cmake | |
parent | ad92f34fea4c565a3f6698c5bc620797be9c64fe (diff) | |
download | CMake-5731bc9d54036b28d4fce428cc218bb207c63411.zip CMake-5731bc9d54036b28d4fce428cc218bb207c63411.tar.gz CMake-5731bc9d54036b28d4fce428cc218bb207c63411.tar.bz2 |
ENH: change the syntax of the SET command, fix the combo box for larger strings
Diffstat (limited to 'Templates/CMakeWindowsSystemConfig.cmake')
-rw-r--r-- | Templates/CMakeWindowsSystemConfig.cmake | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/Templates/CMakeWindowsSystemConfig.cmake b/Templates/CMakeWindowsSystemConfig.cmake index cad970f..eeb0c6f 100644 --- a/Templates/CMakeWindowsSystemConfig.cmake +++ b/Templates/CMakeWindowsSystemConfig.cmake @@ -5,8 +5,12 @@ SET (WORDS_BIGENDIAN ) SET (HAVE_LIMITS_H 1) SET (HAVE_UNISTD_H 1) -SET (CXX VC++60) -SET (CMAKE_CXX_FLAGS_RELEASE "/MD /O2" CACHE_NO_REPLACE) -SET (CMAKE_CXX_FLAGS_MINSIZEREL "/MD /O1" CACHE_NO_REPLACE) -SET (CMAKE_CXX_FLAGS_DEBUG "/MDd /Zi /Od /GZ" CACHE_NO_REPLACE) -SET (CMAKE_CXX_FLAGS "/W3 /Zm1000 /GX /GR" CACHE_NO_REPLACE) +SET (CXX VC++60 ) +SET (CMAKE_CXX_FLAGS_RELEASE "/MD /O2" CACHE STRING + "Flags used by the compiler during release 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 + "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++") |