diff options
author | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-03-22 16:34:11 +0200 |
---|---|---|
committer | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-03-22 16:34:11 +0200 |
commit | 8a2b29a3bfdf163f298b7e90a71fc5e86429b209 (patch) | |
tree | 5952efedbdc35626aa968c2ae3ecf8a29cb860cb /cmake | |
parent | Add version info in the settings menu (diff) | |
download | nheko-8a2b29a3bfdf163f298b7e90a71fc5e86429b209.tar.xz |
Be compatible with cmake 3.1
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/version.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/version.hpp b/cmake/version.hpp index 272e84ac..204bc895 100644 --- a/cmake/version.hpp +++ b/cmake/version.hpp @@ -1,5 +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}"; +static constexpr const char *build_os = "${CMAKE_HOST_SYSTEM_NAME}"; } |