Fixed accidental compiler flags concatenation for MSVC.

This commit is contained in:
LazyHamster 2017-10-18 15:25:17 +03:00
parent aaa0b858e4
commit 93821165be
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ endif()
foreach(_build_type "Release" "MinSizeRel" "RelWithDebInfo")
foreach(_lang C CXX)
string(TOUPPER "CMAKE_${_lang}_FLAGS_${_build_type}" _var)
string(REGEX REPLACE "(^| )[/-]D *NDEBUG($| )" "" ${_var} "${${_var}}")
string(REGEX REPLACE "(^| )[/-]D *NDEBUG($| )" " " ${_var} "${${_var}}")
endforeach()
endforeach()