diff options
author | Sebastien Barre <sebastien.barre@kitware.com> | 2002-04-22 19:16:54 (GMT) |
---|---|---|
committer | Sebastien Barre <sebastien.barre@kitware.com> | 2002-04-22 19:16:54 (GMT) |
commit | 6083e3c1274d8def2984e3406cb82048df2b98a8 (patch) | |
tree | 924f1cc53b745e99b4c46cc4ea191e149f87d066 /Templates | |
parent | 64beaa8b9c0a7355abc1569b4fa7549561d3fe8a (diff) | |
download | CMake-6083e3c1274d8def2984e3406cb82048df2b98a8.zip CMake-6083e3c1274d8def2984e3406cb82048df2b98a8.tar.gz CMake-6083e3c1274d8def2984e3406cb82048df2b98a8.tar.bz2 |
ENH: make CMake less verbose/precious
Diffstat (limited to 'Templates')
-rw-r--r-- | Templates/CMakeNMakeWindowsSystemConfig.cmake | 4 | ||||
-rw-r--r-- | Templates/CMakeWindowsSystemConfig.cmake | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Templates/CMakeNMakeWindowsSystemConfig.cmake b/Templates/CMakeNMakeWindowsSystemConfig.cmake index 55ba1ea..d92906d 100644 --- a/Templates/CMakeNMakeWindowsSystemConfig.cmake +++ b/Templates/CMakeNMakeWindowsSystemConfig.cmake @@ -49,7 +49,7 @@ SET (CMAKE_BUILD_TYPE Debug CACHE STRING SET (CMAKE_CXX_COMPILER cl CACHE FILEPATH "Name of C++ compiler used.") -SET (CMAKE_CXX_FLAGS "/W3 /Zm1000 /GX /GR" CACHE STRING +SET (CMAKE_CXX_FLAGS "/nologo /W3 /Zm1000 /GX /GR" CACHE STRING "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.") SET (CMAKE_CXX_FLAGS_DEBUG "/MDd /Zi /Od /GZ" CACHE STRING @@ -69,7 +69,7 @@ SET (CMAKE_CXX_FLAGS_RELWITHDEBINFO "/MD /Zi /O2" CACHE STRING SET (CMAKE_C_COMPILER cl CACHE FILEPATH "Name of C compiler used.") -SET (CMAKE_C_FLAGS "/W3 /Zm1000" CACHE STRING +SET (CMAKE_C_FLAGS "/nologo /W3 /Zm1000" CACHE STRING "Flags for C compiler.") SET (CMAKE_C_LIBPATH_FLAG "-LIBPATH:" CACHE STRING diff --git a/Templates/CMakeWindowsSystemConfig.cmake b/Templates/CMakeWindowsSystemConfig.cmake index d42a563..d2413ff 100644 --- a/Templates/CMakeWindowsSystemConfig.cmake +++ b/Templates/CMakeWindowsSystemConfig.cmake @@ -21,7 +21,7 @@ SET (CMAKE_CXX_FLAGS_MINSIZEREL "/MD /O1" CACHE STRING 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 +SET (CMAKE_CXX_FLAGS "/nologo /W3 /Zm1000 /GX /GR" CACHE STRING "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") SET (CMAKE_EXTRA_LINK_FLAGS "/STACK:10000000" CACHE STRING |