diff options
author | Brad King <brad.king@kitware.com> | 2002-11-08 23:06:53 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2002-11-08 23:06:53 (GMT) |
commit | 3a6d52f4c5a2cf7bb0fd0ec0e46cf1802d82c77b (patch) | |
tree | 88bd3a8bd7c60b350b8f706f46a6d6f82b5e2088 /Modules/CMakeSystemSpecificInformation.cmake | |
parent | c74ce9b21852bfd93d7d13ba70e11967b94a8300 (diff) | |
download | CMake-3a6d52f4c5a2cf7bb0fd0ec0e46cf1802d82c77b.zip CMake-3a6d52f4c5a2cf7bb0fd0ec0e46cf1802d82c77b.tar.gz CMake-3a6d52f4c5a2cf7bb0fd0ec0e46cf1802d82c77b.tar.bz2 |
ENH: Moved caching of C*_FLAGS* settings down to CMakeSystemSpecificInformation.cmake. The platform files can set the defaults on the first run, and then the settings are cached at the end.
Diffstat (limited to 'Modules/CMakeSystemSpecificInformation.cmake')
-rw-r--r-- | Modules/CMakeSystemSpecificInformation.cmake | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Modules/CMakeSystemSpecificInformation.cmake b/Modules/CMakeSystemSpecificInformation.cmake index 4d76f89..c641f19 100644 --- a/Modules/CMakeSystemSpecificInformation.cmake +++ b/Modules/CMakeSystemSpecificInformation.cmake @@ -120,6 +120,21 @@ SET(CMAKE_VERBOSE_MAKEFILE FALSE CACHE BOOL "If this value is on, makefiles will # default build type is none SET (CMAKE_BUILD_TYPE "" CACHE STRING "Choose the type of build, options are: None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel.") + +# Add these settings to the cache. +SET (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}" CACHE STRING + "Flags used by the compiler during all build types.") +SET (CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG}" CACHE STRING + "Flags used by the compiler during debug builds.") +SET (CMAKE_CXX_FLAGS_MINSIZEREL "${CMAKE_CXX_FLAGS_MINSIZEREL}" CACHE STRING + "Flags used by the compiler during release minsize builds.") +SET (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE}" 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_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO}" CACHE STRING + "Flags used by the compiler during Release with Debug Info builds.") +SET (CMAKE_C_FLAGS "${CMAKE_C_FLAGS}" CACHE STRING + "Flags for C compiler.") + MARK_AS_ADVANCED( CMAKE_VERBOSE_MAKEFILE CMAKE_CXX_FLAGS |