From eb80f5284b0f1b7fc5f8f9731bc6a79c6fb1e43f Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Tue, 31 Dec 2019 14:28:19 +0100 Subject: [PATCH] Change compiler.version --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6b572f0..e9c6e18 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ message(STATUS "Using ${CMAKE_CXX_COMPILER}") if (NOT EXISTS ${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) message(WARNING "The file conanbuildinfo.cmake doesn't exist, running conan install.") - 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=9) + 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=8) endif () include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) conan_basic_setup()