Commit 7b527c12 by Edward Thomson

cmake: move deprecation definition to src/

There's no need to add the deprecation at the top-level.  Our tests add
deprecation explicitly.
parent 9f37457e
...@@ -103,10 +103,6 @@ include(DefaultCFlags) ...@@ -103,10 +103,6 @@ include(DefaultCFlags)
# Compiler / linker flags # Compiler / linker flags
# #
if(DEPRECATE_HARD)
add_definitions(-DGIT_DEPRECATE_HARD)
endif()
if(NOT CMAKE_CONFIGURATION_TYPES) if(NOT CMAKE_CONFIGURATION_TYPES)
# Build Debug by default # Build Debug by default
if(NOT CMAKE_BUILD_TYPE) if(NOT CMAKE_BUILD_TYPE)
......
...@@ -2,6 +2,10 @@ add_library(git2internal OBJECT) ...@@ -2,6 +2,10 @@ add_library(git2internal OBJECT)
set_target_properties(git2internal PROPERTIES C_STANDARD 90) set_target_properties(git2internal PROPERTIES C_STANDARD 90)
if(DEPRECATE_HARD)
add_definitions(-DGIT_DEPRECATE_HARD)
endif()
if(DEBUG_POOL) if(DEBUG_POOL)
set(GIT_DEBUG_POOL 1) set(GIT_DEBUG_POOL 1)
endif() endif()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment