From e90825204c9d47f1460df47264b11226e0ffa577 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Bartoletti?= Date: Wed, 6 Nov 2024 07:29:52 +0100 Subject: [PATCH] chore(Boost): Remove redundant Boost_USE_STATIC_LIBS=OFF setting This setting was mistakenly added in MR !350 and is causing compilation issues on MinGW (see #294). Furthermore, this option is redundant as we already have an existing setting for controlling Boost library linkage. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 37c33d92..4ed10a6a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -89,7 +89,7 @@ include_directories( ${CMAKE_BINARY_DIR}/include ) #-- BOOST -------------------------------------------------- option( Boost_USE_AUTO_LINK "boost use autolink" OFF ) set(Boost_USE_DEBUG_RUNTIME OFF) -set(Boost_USE_STATIC_LIBS OFF) +# set(Boost_USE_STATIC_LIBS OFF) option( Boost_USE_DEBUG_RUNTIME "Use Boost debug runtime" OFF ) if( NOT ${Boost_USE_AUTO_LINK} )