From 374bb8fd5d2f8d977bcbf17e67d086f45344eba5 Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Tue, 21 Apr 2020 10:34:09 +0200 Subject: [PATCH] Removed unused conan option to fix Windows build. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b9789d7..36c5c45 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -39,7 +39,7 @@ if (NOT EXISTS ${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) -s compiler=clang -s compiler.libcxx=libstdc++11 -s compiler.version=${VERSION}) else() execute_process(COMMAND conan install ${CMAKE_SOURCE_DIR} --install-folder=${CMAKE_BINARY_DIR} --build missing - -s compiler=gcc -s compiler.libcxx=libstdc++11 -s compiler.version=${VERSION} -s os=Windows -o CreatureLib:staticC=True) + -s compiler=gcc -s compiler.libcxx=libstdc++11 -s compiler.version=${VERSION} -s os=Windows) endif() endif () include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)