[CMAKE] MSVC RUNTIME_CHECKS is a 'Debug'-only feature

"cl : Command line error D8016 : '/Ox' and '/RTC1' command-line options are incompatible"

Addendum to 92dfec219d.
This commit is contained in:
Serge Gautherie 2020-06-02 21:27:07 +02:00 committed by Victor Perevertkin
parent de40118362
commit a2a6038e56
No known key found for this signature in database
GPG key ID: C750B7222E9C7830
4 changed files with 11 additions and 4 deletions

View file

@ -45,5 +45,7 @@ set(NEWSPRINTF FALSE CACHE BOOL
"Whether to compile the new sprintf.")
if(MSVC)
option(RUNTIME_CHECKS "Whether to enable runtime checks on MSVC" ON)
# 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)
endif()