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)
|
option(BUILD_SHARED_LIBS "Build shared libraries." YES)
|
||||||
|
|
||||||
# Not every non-debug build type adds -DNDEBUG.
|
# Not every non-debug build type adds -DNDEBUG.
|
||||||
if(NOT CMAKE_BUILD_TYPE MATCHES "Debug")
|
if(NOT ${CMAKE_BUILD_TYPE} MATCHES "Debug")
|
||||||
add_compile_definitions(NDEBUG)
|
if(${CMAKE_VERSION} VERSION_LESS 3.12)
|
||||||
|
add_definitions("-DNDEBUG")
|
||||||
|
else()
|
||||||
|
add_compile_definitions("NDEBUG")
|
||||||
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
project(mastodonpp
|
project(mastodonpp
|
||||||
|
|
Loading…
Reference in New Issue
Block a user