12345678910111213 |
- diff --git a/CMake/FollyCompilerMSVC.cmake b/CMake/FollyCompilerMSVC.cmake
- --- a/CMake/FollyCompilerMSVC.cmake
- +++ b/CMake/FollyCompilerMSVC.cmake
- @@ -298,6 +298,9 @@ function(apply_folly_compile_options_to_target THETARGET)
- $<$<BOOL:${MSVC_ENABLE_CPP_LATEST}>:_HAS_AUTO_PTR_ETC=1> # We're building in C++ 17 or greater mode, but certain dependencies (Boost) still have dependencies on unary_function and binary_function, so we have to make sure not to remove them.
- $<$<BOOL:${MSVC_ENABLE_LEAN_AND_MEAN_WINDOWS}>:WIN32_LEAN_AND_MEAN> # Don't include most of Windows.h
- $<$<BOOL:${MSVC_SUPPRESS_BOOST_CONFIG_OUTDATED}>:BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE> # MSVC moves faster than boost, so add a quick way to disable the messages.
- +
- + NOMINMAX
- + GLOG_NO_ABBREVIATED_SEVERITIES
- )
-
- # Ignore a warning about an object file not defining any symbols,
|