diff options
author | Brad King <brad.king@kitware.com> | 2016-07-01 17:52:10 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-07-01 18:01:41 (GMT) |
commit | 3643390d49b567214f9008091aa0e1f4ebe7782a (patch) | |
tree | e310832801d5fa8af2e33601391685a3b753669c /Modules/CMakeCXXInformation.cmake | |
parent | 4c476cc9b2441f7cf36fd87c7c7338c373905678 (diff) | |
download | CMake-3643390d49b567214f9008091aa0e1f4ebe7782a.zip CMake-3643390d49b567214f9008091aa0e1f4ebe7782a.tar.gz CMake-3643390d49b567214f9008091aa0e1f4ebe7782a.tar.bz2 |
Strip CMAKE_<LANG>_FLAGS[_<CONFIG>] initializer whitespace
Diffstat (limited to 'Modules/CMakeCXXInformation.cmake')
-rw-r--r-- | Modules/CMakeCXXInformation.cmake | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Modules/CMakeCXXInformation.cmake b/Modules/CMakeCXXInformation.cmake index b35280f..07e4f39 100644 --- a/Modules/CMakeCXXInformation.cmake +++ b/Modules/CMakeCXXInformation.cmake @@ -206,10 +206,11 @@ endforeach() # use _INIT variables so that this only happens the first time # and you can set these flags in the cmake cache set(CMAKE_CXX_FLAGS_INIT "$ENV{CXXFLAGS} ${CMAKE_CXX_FLAGS_INIT}") -# avoid just having a space as the initial value for the cache -if(CMAKE_CXX_FLAGS_INIT STREQUAL " ") - set(CMAKE_CXX_FLAGS_INIT) -endif() + +foreach(c "" _DEBUG _RELEASE _MINSIZEREL _RELWITHDEBINFO) + string(STRIP "${CMAKE_CXX_FLAGS${c}_INIT}" CMAKE_CXX_FLAGS${c}_INIT) +endforeach() + set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS_INIT}" CACHE STRING "Flags used by the compiler during all build types.") |