diff options
author | stoffu <stoffu@protonmail.ch> | 2017-09-14 08:28:23 +0900 |
---|---|---|
committer | stoffu <stoffu@protonmail.ch> | 2017-09-21 07:47:37 +0900 |
commit | e29282d2081709e126b1fb67f49e9d4a666794da (patch) | |
tree | 1787dbfeb55ffaa94a34813cf53c741544d2dd3e /src/version.h | |
parent | Merge pull request #2441 (diff) | |
download | monero-e29282d2081709e126b1fb67f49e9d4a666794da.tar.xz |
build: auto update version info without manually deleting version.h
Diffstat (limited to '')
-rw-r--r-- | src/version.h | 6 | ||||
-rw-r--r-- | src/version.h.in | 4 |
2 files changed, 6 insertions, 4 deletions
diff --git a/src/version.h b/src/version.h new file mode 100644 index 000000000..d1d06c790 --- /dev/null +++ b/src/version.h @@ -0,0 +1,6 @@ +#pragma once + +extern const char* const MONERO_VERSION_TAG; +extern const char* const MONERO_VERSION; +extern const char* const MONERO_RELEASE_NAME; +extern const char* const MONERO_VERSION_FULL; diff --git a/src/version.h.in b/src/version.h.in deleted file mode 100644 index 281b52db4..000000000 --- a/src/version.h.in +++ /dev/null @@ -1,4 +0,0 @@ -#define MONERO_VERSION_TAG "@VERSIONTAG@" -#define MONERO_VERSION "0.11.0.0" -#define MONERO_RELEASE_NAME "Helium Hydra" -#define MONERO_VERSION_FULL MONERO_VERSION "-" MONERO_VERSION_TAG |