From 7384bf6e98841cbcef6cda57c8ae1d8646288961 Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Tue, 31 Dec 2019 20:25:47 +0100 Subject: [PATCH] Fixed syntax issue --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 424ac35..0840a6d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,7 +27,7 @@ if (NOT EXISTS ${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) list(GET VERSION_LIST 0 VERSION) list(GET VERSION_LIST 1 MINOR) if (NOT MINOR MATCHES 0) - SET(VERSION ${VERSION}.{MINOR}) + SET(VERSION ${VERSION}.${MINOR}) endif() if (NOT WINDOWS) execute_process(COMMAND conan install ${CMAKE_SOURCE_DIR} --install-folder=${CMAKE_BINARY_DIR} --build missing -s compiler=clang -s compiler.libcxx=libstdc++11 -s compiler.version=${VERSION})