|
@@ -179,8 +179,12 @@ target_link_libraries(hharry util)
|
|
|
target_link_libraries(hharry zf_log)
|
|
|
target_compile_definitions(hharry PUBLIC HHVERSION="${GIT_DESCRIBE_VERSION}")
|
|
|
|
|
|
-# target_compile_definitions(hharry PUBLIC ZF_LOG_DEF_LEVEL=ZF_LOG_INFO)
|
|
|
+if((CMAKE_BUILD_TYPE STREQUAL Release) OR (CMAKE_BUILD_TYPE STREQUAL RelWithDebInfo))
|
|
|
+target_compile_definitions(hharry PUBLIC ZF_LOG_DEF_LEVEL=ZF_LOG_INFO)
|
|
|
+else()
|
|
|
target_compile_definitions(hharry PUBLIC ZF_LOG_DEF_LEVEL=ZF_LOG_VERBOSE)
|
|
|
+endif()
|
|
|
+
|
|
|
if(DISABLE_BUFFER_DEBUG)
|
|
|
target_compile_definitions(hharry PUBLIC NO_BUFFER_DEBUG=1)
|
|
|
endif()
|