swap STREQUAL for MATCHES

This commit is contained in:
p01arst0rm 2021-04-20 20:11:50 +01:00 committed by Ivan
parent bcfae17219
commit 9e008996ab
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Release") set(CMAKE_BUILD_TYPE "Release")
endif() endif()
if(NOT CMAKE_BUILD_TYPE STREQUAL "Debug") if(NOT CMAKE_BUILD_TYPE MATCHES "Debug")
add_definitions(-DNDEBUG) add_definitions(-DNDEBUG)
elseif(NOT MSVC) elseif(NOT MSVC)
add_definitions(-D_DEBUG) add_definitions(-D_DEBUG)