-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove BOOST_ALL_NO_LIB if building for windows
- not possible with current boost due to boostorg/serialization#232
- Loading branch information
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- a/papilo/CMakeLists.txt | ||
+++ b/papilo/CMakeLists.txt | ||
@@ -214,7 +214,6 @@ write_basic_package_version_file( | ||
) | ||
|
||
if(MSVC) | ||
- target_compile_definitions(papilo INTERFACE BOOST_ALL_NO_LIB) | ||
target_compile_options(papilo INTERFACE /bigobj) | ||
target_compile_options(papilo INTERFACE ${TBB_CXX_STD_FLAG}) | ||
else() | ||
--- a/soplex/CMakeLists.txt | ||
+++ b/soplex/CMakeLists.txt | ||
@@ -211,7 +211,6 @@ if(CMAKE_CXX_COMPILER_ID MATCHES "MSVC") | ||
add_definitions(/wd4100) | ||
add_definitions(/wd4661) | ||
add_definitions(-D_CRT_SECURE_NO_WARNINGS) | ||
- add_definitions(-DBOOST_ALL_NO_LIB) | ||
# set MT or MTd flag when using the static VS runtime libraries | ||
if(MT) | ||
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /MT") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters