From 09b97686cfe90b4f45f69756089c39d77f5d2106 Mon Sep 17 00:00:00 2001 From: Zeex Date: Sun, 12 Apr 2015 22:19:30 +0600 Subject: [PATCH] Remove '.samp' from version string Now that we have a different minor version that seems unnecessary. --- source/compiler/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/compiler/CMakeLists.txt b/source/compiler/CMakeLists.txt index dea8706..1e57c81 100644 --- a/source/compiler/CMakeLists.txt +++ b/source/compiler/CMakeLists.txt @@ -6,7 +6,7 @@ list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/../../cmake) set(VERSION_MAJOR 3) set(VERSION_MINOR 10) set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}) -set(VERSION_STR ${VERSION}.samp) +set(VERSION_STR ${VERSION}) math(EXPR VERSION_INT "${VERSION_MAJOR} << 8 | ${VERSION_MINOR}") # Append git commit hash to the version string