Only use add_compile_definitions with CMake >= 3.12.
This commit is contained in:
parent
3c23f6d1a0
commit
c2bc1b5e7b
@ -11,8 +11,12 @@ set(CMAKE_BUILD_TYPE "Release" CACHE STRING "The type of build.")
|
||||
option(BUILD_SHARED_LIBS "Build shared libraries." YES)
|
||||
|
||||
# Not every non-debug build type adds -DNDEBUG.
|
||||
if(NOT CMAKE_BUILD_TYPE MATCHES "Debug")
|
||||
add_compile_definitions(NDEBUG)
|
||||
if(NOT ${CMAKE_BUILD_TYPE} MATCHES "Debug")
|
||||
if(${CMAKE_VERSION} VERSION_LESS 3.12)
|
||||
add_definitions("-DNDEBUG")
|
||||
else()
|
||||
add_compile_definitions("NDEBUG")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
project(mastodonpp
|
||||
|
Loading…
x
Reference in New Issue
Block a user