summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt8
1 files changed, 6 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index ddd51df..43b12f9 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -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