Skip to content

Commit

Permalink
Merge branch 'fix-boost-mac-deprecated-warnings' into 'bugfix-60'
Browse files Browse the repository at this point in the history
mark boost include as system to avoid warnings we can't fix

See merge request integer/soplex!391
  • Loading branch information
leoneifler committed Jan 29, 2023
2 parents 78068c1 + cbf614b commit 2ca3f67
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 @@ -182,7 +182,7 @@ if(BOOST)
find_package(Boost 1.65.0) # PaPILO requires at least Boost 1.65 (on mac 1.72)
if(Boost_FOUND)
set(SOPLEX_WITH_BOOST on)
include_directories(${Boost_INCLUDE_DIRS})
include_directories(SYSTEM ${Boost_INCLUDE_DIRS})
if(NOT Boost_VERSION_MACRO)
set(Boost_VERSION_MACRO ${Boost_VERSION})
endif()
Expand Down

0 comments on commit 2ca3f67

Please sign in to comment.