diff options
| author | Alexander Blair <snipa@jagtech.io> | 2020-12-10 17:52:18 -0800 |
|---|---|---|
| committer | Alexander Blair <snipa@jagtech.io> | 2020-12-10 17:52:18 -0800 |
| commit | ebdc617408fb1936a2905dc949e6dfafcc75d1bd (patch) | |
| tree | 11eb3bea79eaa1a04825de2139346c44d2dee0be /cmake | |
| parent | 0f6756927929d44f62fa4301a22c584223552d98 (diff) | |
| parent | 8ee3ec72962ff32cf9c608356d3b162c8bee67e1 (diff) | |
| download | monzero-core-ebdc617408fb1936a2905dc949e6dfafcc75d1bd.tar.gz monzero-core-ebdc617408fb1936a2905dc949e6dfafcc75d1bd.tar.xz monzero-core-ebdc617408fb1936a2905dc949e6dfafcc75d1bd.zip | |
Merge pull request #7102
8ee3ec729 cmake: fix "release" version string on tagged releases (moneromooo-monero)
Diffstat (limited to 'cmake')
| -rw-r--r-- | cmake/GitVersion.cmake | 26 |
1 files changed, 9 insertions, 17 deletions
diff --git a/cmake/GitVersion.cmake b/cmake/GitVersion.cmake index 3263266c7..6a62bcaa3 100644 --- a/cmake/GitVersion.cmake +++ b/cmake/GitVersion.cmake @@ -48,29 +48,21 @@ function (get_version_tag_from_git GIT) message(STATUS "You are currently on commit ${COMMIT}") # Get all the tags - execute_process(COMMAND "${GIT}" rev-list --tags --max-count=1 --abbrev-commit + execute_process(COMMAND "${GIT}" tag -l --points-at HEAD WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} RESULT_VARIABLE RET - OUTPUT_VARIABLE TAGGEDCOMMIT + OUTPUT_VARIABLE TAG OUTPUT_STRIP_TRAILING_WHITESPACE) - if(NOT TAGGEDCOMMIT) - message(WARNING "Cannot determine most recent tag. Make sure that you are building either from a Git working tree or from a source archive.") + # Check if we're building that tagged commit or a different one + if(TAG) + message(STATUS "You are building a tagged release") + set(VERSIONTAG "release") + set(VERSION_IS_RELEASE "true") + else() + message(STATUS "You are ahead of or behind a tagged release") set(VERSIONTAG "${COMMIT}") set(VERSION_IS_RELEASE "false") - else() - message(STATUS "The most recent tag was at ${TAGGEDCOMMIT}") - - # Check if we're building that tagged commit or a different one - if(COMMIT STREQUAL TAGGEDCOMMIT) - message(STATUS "You are building a tagged release") - set(VERSIONTAG "release") - set(VERSION_IS_RELEASE "true") - else() - message(STATUS "You are ahead of or behind a tagged release") - set(VERSIONTAG "${COMMIT}") - set(VERSION_IS_RELEASE "false") - endif() endif() endif() |
