diff options
author | Shauren <shauren.trinity@gmail.com> | 2018-01-06 12:28:38 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2018-01-06 12:30:28 +0100 |
commit | b2b4f9d1e4562ec246efb5136c1c674ec78f50b7 (patch) | |
tree | ba0d81ce1ba02528599030fde736f30c19d49d72 /dep | |
parent | 6da6f1b415be2e7964c7c15c87b29a38052e76e4 (diff) |
Core/Misc: Added compatibility layer for boost 1.66 and future std:: networking stuff
* Based on work done by @dimiandre in PR #21173
Closes #21171
Closes #21173
(cherry picked from commit dfd2660a85e4f0891c63009ee8425b2796586409)
Diffstat (limited to 'dep')
-rw-r--r-- | dep/boost/CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/dep/boost/CMakeLists.txt b/dep/boost/CMakeLists.txt index 50381e18744..84093a73efb 100644 --- a/dep/boost/CMakeLists.txt +++ b/dep/boost/CMakeLists.txt @@ -74,7 +74,10 @@ target_compile_definitions(boost -DBOOST_CHRONO_NO_LIB # Due to MSVC linking error boost::none" already defined in scripts_... # May be removed when the requirement is raised to boost 1.61 on windows. - -DBOOST_OPTIONAL_USE_OLD_DEFINITION_OF_NONE) + -DBOOST_OPTIONAL_USE_OLD_DEFINITION_OF_NONE + -DBOOST_CHRONO_NO_LIB + -DBOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE + -DBOOST_ASIO_NO_DEPRECATED) if (NOT boost_filesystem_copy_links_without_NO_SCOPED_ENUM) target_compile_definitions(boost |