Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FreeRDP/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntenore Gatta <antenore@simbiosi.org>2018-05-29 18:24:35 +0300
committerAntenore Gatta <antenore@simbiosi.org>2018-05-29 18:24:35 +0300
commit7310837cc5afe3bb57c6dcf59799862b192f4815 (patch)
tree3ae360ceb01df5a5ed2a176fda0a1d3440b7e3ab
parent8bef7d4e6e22b49398731a439b69106980f6d2c3 (diff)
String wrapping not allowed in old CMAKE versions
-rw-r--r--CMakeLists.txt6
1 files changed, 1 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 133fd4934..9b2f48b70 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -101,11 +101,7 @@ set(REMMINA_VERSION_MAJOR "1")
set(REMMINA_VERSION_MINOR "2")
set(REMMINA_VERSION_REVISION "30")
set(REMMINA_VERSION_SUFFIX "1")
-set(REMMINA_VERSION "\
-${REMMINA_VERSION_MAJOR}.\
-${REMMINA_VERSION_MINOR}.\
-${REMMINA_VERSION_REVISION}.\
-${REMMINA_VERSION_SUFFIX}")
+set(REMMINA_VERSION "${REMMINA_VERSION_MAJOR}.${REMMINA_VERSION_MINOR}.${REMMINA_VERSION_REVISION}.${REMMINA_VERSION_SUFFIX}")
message(STATUS "Remmina version: ${REMMINA_VERSION}")