diff options
author | Hummer12007 <hilobakho@gmail.com> | 2016-07-12 13:44:19 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-12 13:44:19 +0000 |
commit | 8fc9f503f9f691144ff65928ca12ddf0b3fde3c7 (patch) | |
tree | dc9d63489bf9cfedc8d17db273142abdc532790c | |
parent | 614aa28a7b7b04ac9b54aa8c0355e01a76ee0240 (diff) |
Enable using non-annotated tags in git-describe
This fixes the version string
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 813bec4d..83989ecd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,7 +20,7 @@ list(INSERT CMAKE_MODULE_PATH 0 ) if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/.git) execute_process( - COMMAND git describe --always + COMMAND git describe --always --tags OUTPUT_VARIABLE GIT_COMMIT_HASH OUTPUT_STRIP_TRAILING_WHITESPACE WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} |