diff options
author | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-03-22 16:20:22 +0200 |
---|---|---|
committer | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-03-22 16:20:22 +0200 |
commit | f77a103209c108867a91fc98e5967b32000d7258 (patch) | |
tree | cb227b07083dd4dc34e88178e5ded5b2bb22a6aa /cmake | |
parent | Fix text color on room switcher (diff) | |
download | nheko-f77a103209c108867a91fc98e5967b32000d7258.tar.xz |
Add version info in the settings menu
fixes #239
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/version.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cmake/version.hpp b/cmake/version.hpp new file mode 100644 index 00000000..272e84ac --- /dev/null +++ b/cmake/version.hpp @@ -0,0 +1,5 @@ +namespace nheko { +static constexpr const char *version = "${PROJECT_VERSION}"; +static constexpr const char *build_user = "${BUILD_USER}@${BUILD_HOST}"; +static constexpr const char *build_os = "${BUILD_OS}"; +} |