aboutsummaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-05-17 09:04:38 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-08-26 19:28:25 +0000
commit33e91e1a1e94c2957f59def9fe49f75956a9f699 (patch)
tree60462ee47708a782176159acb22bdb4893414b98 /cmake
parentMerge pull request #5827 (diff)
downloadmonero-33e91e1a1e94c2957f59def9fe49f75956a9f699.tar.xz
wallet, rpc: add a release field to get_version
It does not leak much since you can make a fair guess by RPC version already, and some people want to avoid non release clients when using third parties' nodes (because they'd never lie about it)
Diffstat (limited to 'cmake')
-rw-r--r--cmake/GenVersion.cmake4
1 files changed, 4 insertions, 0 deletions
diff --git a/cmake/GenVersion.cmake b/cmake/GenVersion.cmake
index b2ccfbc34..992539507 100644
--- a/cmake/GenVersion.cmake
+++ b/cmake/GenVersion.cmake
@@ -36,6 +36,7 @@ if(RET)
message(WARNING "Cannot determine current commit. Make sure that you are building either from a Git working tree or from a source archive.")
set(VERSIONTAG "unknown")
+ set(VERSION_IS_RELEASE "false")
configure_file("src/version.cpp.in" "${TO}")
else()
string(SUBSTRING ${COMMIT} 0 9 COMMIT)
@@ -47,6 +48,7 @@ else()
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.")
set(VERSIONTAG "${COMMIT}")
+ set(VERSION_IS_RELEASE "false")
else()
message(STATUS "The most recent tag was at ${TAGGEDCOMMIT}")
@@ -54,9 +56,11 @@ else()
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()