diff options
author | Brad King <brad.king@kitware.com> | 2016-06-20 13:55:48 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-06-20 13:55:48 (GMT) |
commit | 5c7b2aafbd0e158ab659d68c4d0cf0afb7a9ba65 (patch) | |
tree | 1b9ef7e77ad62c28f22bb40482ad0dcf75b5d2c6 /Modules | |
parent | f4c35c3dc2cd7204fc680d39a5c2f186f0badd6a (diff) | |
parent | 78249be29d0b9c187c5e459d636a8704ab3956eb (diff) | |
download | CMake-5c7b2aafbd0e158ab659d68c4d0cf0afb7a9ba65.zip CMake-5c7b2aafbd0e158ab659d68c4d0cf0afb7a9ba65.tar.gz CMake-5c7b2aafbd0e158ab659d68c4d0cf0afb7a9ba65.tar.bz2 |
Merge topic 'revert-vs-clang-minsize'
78249be2 VS: Fix regressed mapping for the cl `/Os` compiler flag
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/Platform/Windows-MSVC.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Platform/Windows-MSVC.cmake b/Modules/Platform/Windows-MSVC.cmake index 1920a7c..6c254ed 100644 --- a/Modules/Platform/Windows-MSVC.cmake +++ b/Modules/Platform/Windows-MSVC.cmake @@ -305,7 +305,7 @@ macro(__windows_compiler_msvc lang) set(CMAKE_${lang}_FLAGS_DEBUG_INIT "-D_DEBUG /MDd -gline-tables-only -fno-inline -O0 ${_RTC1}") set(CMAKE_${lang}_FLAGS_RELEASE_INIT "/MD -O2 -DNDEBUG") set(CMAKE_${lang}_FLAGS_RELWITHDEBINFO_INIT "/MD -gline-tables-only -O2 -fno-inline -DNDEBUG") - set(CMAKE_${lang}_FLAGS_MINSIZEREL_INIT "/MD -Os -DNDEBUG") + set(CMAKE_${lang}_FLAGS_MINSIZEREL_INIT "/MD -DNDEBUG") # TODO: Add '-Os' once VS generator maps it properly for Clang else() set(CMAKE_${lang}_FLAGS_INIT "${_PLATFORM_DEFINES}${_PLATFORM_DEFINES_${lang}} /D_WINDOWS /W3${_FLAGS_${lang}}") set(CMAKE_${lang}_FLAGS_DEBUG_INIT "/D_DEBUG /MDd /Zi /Ob0 /Od ${_RTC1}") |