diff options
author | Ian Scott <ian.m.scott@stud.man.ac.uk> | 2001-06-07 15:36:55 (GMT) |
---|---|---|
committer | Ian Scott <ian.m.scott@stud.man.ac.uk> | 2001-06-07 15:36:55 (GMT) |
commit | 4c4184f56c32e26e9b6a283c0c8bf6a7a59efd79 (patch) | |
tree | d3ad0024fdb0d973d573a17bb814e03b0d50a78e /Templates/CMakeWindowsSystemConfig.cmake | |
parent | 5b69d22c7b1ce247244ce65e84246945dca758b8 (diff) | |
download | CMake-4c4184f56c32e26e9b6a283c0c8bf6a7a59efd79.zip CMake-4c4184f56c32e26e9b6a283c0c8bf6a7a59efd79.tar.gz CMake-4c4184f56c32e26e9b6a283c0c8bf6a7a59efd79.tar.bz2 |
adding a "Release with debugging Info" build to CMake for NT
Diffstat (limited to 'Templates/CMakeWindowsSystemConfig.cmake')
-rw-r--r-- | Templates/CMakeWindowsSystemConfig.cmake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Templates/CMakeWindowsSystemConfig.cmake b/Templates/CMakeWindowsSystemConfig.cmake index 9afd686..c7a9854 100644 --- a/Templates/CMakeWindowsSystemConfig.cmake +++ b/Templates/CMakeWindowsSystemConfig.cmake @@ -8,6 +8,8 @@ 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 (/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_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 |