We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f513eb commit 91d7327Copy full SHA for 91d7327
cmake/module/AddBoostIfNeeded.cmake
@@ -21,7 +21,8 @@ function(add_boost_if_needed)
21
find_package(Boost 1.64.0 REQUIRED)
22
set_target_properties(Boost::boost PROPERTIES IMPORTED_GLOBAL TRUE)
23
target_compile_definitions(Boost::boost INTERFACE
24
- $<$<CONFIG:Debug>:BOOST_MULTI_INDEX_ENABLE_SAFE_MODE>
+ # We don't use multi_index serialization.
25
+ BOOST_MULTI_INDEX_DISABLE_SERIALIZATION
26
)
27
if(CMAKE_VERSION VERSION_LESS 3.15)
28
add_library(Boost::headers ALIAS Boost::boost)
0 commit comments