[CMAKE] Fix RUNTIME_CHECKS dependent option

Addendum to 92dfec219d and a2a6038e56
This commit is contained in:
Victor Perevertkin 2020-12-14 21:09:14 +03:00
parent abcbd44641
commit 6bab72f69a
No known key found for this signature in database
GPG key ID: C750B7222E9C7830
3 changed files with 3 additions and 3 deletions

View file

@ -46,5 +46,5 @@ set(_PREFAST_ FALSE CACHE BOOL
"Whether to enable PREFAST while compiling.")
# RTC are incompatible with compiler optimizations.
cmake_dependent_option(RUNTIME_CHECKS "Whether to enable runtime checks on MSVC" ON
"CMAKE_BUILD_TYPE STREQUAL \"Debug\"" OFF)
"CMAKE_BUILD_TYPE STREQUAL Debug" OFF)
endif()

View file

@ -47,5 +47,5 @@ set(NEWSPRINTF FALSE CACHE BOOL
if(MSVC)
# RTC are incompatible with compiler optimizations.
cmake_dependent_option(RUNTIME_CHECKS "Whether to enable runtime checks on MSVC" ON
"CMAKE_BUILD_TYPE STREQUAL \"Debug\"" OFF)
"CMAKE_BUILD_TYPE STREQUAL Debug" OFF)
endif()

View file

@ -90,7 +90,7 @@ set(_VS_ANALYZE_ FALSE CACHE BOOL
"Whether to enable static analysis while compiling.")
# RTC are incompatible with compiler optimizations.
cmake_dependent_option(RUNTIME_CHECKS "Whether to enable runtime checks on MSVC" ON
"CMAKE_BUILD_TYPE STREQUAL \"Debug\"" OFF)
"CMAKE_BUILD_TYPE STREQUAL Debug" OFF)
endif()
if(GCC)