diff options
author | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2017-04-06 19:56:33 +0300 |
---|---|---|
committer | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2017-04-06 19:56:33 +0300 |
commit | 73e73f46eaff4f2236b31ed5858738c6b5e26ea3 (patch) | |
tree | 3af375ca4be03bacb34aa72b173dd22a9f792380 /CMakeLists.txt | |
parent | Initialize sync timer (diff) | |
download | nheko-73e73f46eaff4f2236b31ed5858738c6b5e26ea3.tar.xz |
Use const refs for the deserialized data
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 3880bb92..217f1c17 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,7 +31,7 @@ ELSE("${CMAKE_BUILD_TYPE}" STREQUAL "Release") COMMAND ${GIT} rev-parse --short HEAD OUTPUT_VARIABLE GIT_OUT OUTPUT_STRIP_TRAILING_WHITESPACE ) - SET(PATCH_OUT "0-git${GIT_OUT}") + SET(PATCH_OUT "0-${GIT_OUT}") ELSE(GIT) SET(PATCH_OUT "0") ENDIF(GIT) |