From 187f25aefdb9fd63b8465e8e661b942401addde0 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Mon, 18 Dec 2017 09:06:00 +0100 Subject: cmake: const correctness --- cmake/opentrack-version.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cmake') diff --git a/cmake/opentrack-version.cmake b/cmake/opentrack-version.cmake index 181fc613..05390659 100644 --- a/cmake/opentrack-version.cmake +++ b/cmake/opentrack-version.cmake @@ -24,9 +24,9 @@ extern \"C\" extern #endif -const char* opentrack_version; +const char* const opentrack_version; -const char* opentrack_version = \"${OPENTRACK_COMMIT}${_build_type}\"; +const char* const opentrack_version = \"${OPENTRACK_COMMIT}${_build_type}\"; ") set(file "${CMAKE_CURRENT_BINARY_DIR}/version.cpp") -- cgit v1.2.3