|
@@ -16,7 +16,20 @@ else()
|
|
|
message("==> CMAKE_BUILD_TYPE == ${CMAKE_BUILD_TYPE}.")
|
|
|
endif()
|
|
|
|
|
|
-
|
|
|
+FIND_PACKAGE(Git)
|
|
|
+IF(GIT_FOUND)
|
|
|
+ message("Ask git for version information")
|
|
|
+ EXECUTE_PROCESS(
|
|
|
+ COMMAND ${GIT_EXECUTABLE} describe --abbrev=12 --long --tags --dirty --always --match v[0-9]*
|
|
|
+ WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
|
|
|
+ OUTPUT_VARIABLE GIT_DESCRIBE_VERSION
|
|
|
+ RESULT_VARIABLE GIT_DESCRIBE_RESULT
|
|
|
+ ERROR_VARIABLE GIT_DESCRIBE_ERROR
|
|
|
+ OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
|
+ )
|
|
|
+ message("Version: " ${GIT_DESCRIBE_VERSION})
|
|
|
+ # message("Result: " ${GIT_DESCRIBE_RESULT})
|
|
|
+ENDIF(GIT_FOUND)
|
|
|
|
|
|
## https://gcc.gnu.org/onlinedocs/libstdc++/manual/using_macros.html
|
|
|
## During Debug, use debug version of libstdc++ (asserts on access to invalid iterators, etc!)
|
|
@@ -162,6 +175,8 @@ add_custom_command(
|
|
|
add_executable(hharry hharry.cpp lastseen.cpp terminal.cpp render.cpp utils.cpp images.h wordplay.cpp charman.cpp logs_utils.cpp)
|
|
|
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)
|
|
|
target_compile_definitions(hharry PUBLIC ZF_LOG_DEF_LEVEL=ZF_LOG_VERBOSE)
|
|
|
if(DISABLE_BUFFER_DEBUG)
|