Skip to content

Commit

Permalink
chore(Boost): Remove redundant Boost_USE_STATIC_LIBS=OFF setting
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
lbartoletti committed Nov 6, 2024
1 parent cf236fa commit e908252
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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} )
Expand Down

0 comments on commit e908252

Please sign in to comment.