mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
[CMAKE] Fix RUNTIME_CHECKS dependent option
Addendum to92dfec219d
anda2a6038e56
This commit is contained in:
parent
abcbd44641
commit
6bab72f69a
3 changed files with 3 additions and 3 deletions
|
@ -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()
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue