diff options
author | Rodrigo Locatti <reinuseslisp@airmail.cc> | 2020-07-12 17:18:20 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-12 17:18:20 -0300 |
commit | 84b5804834da312a7b830326cec882bfe24ba144 (patch) | |
tree | 2466d142752c7f16830733c34f998424d80d81a1 | |
parent | 739d90ee66cac6986c3ae9dcb2ff78a0836b2017 (diff) | |
parent | 539675b21a4e132a3826d5ee7385c8a980d558e5 (diff) |
Merge pull request #4316 from lioncash/cmake-concept
CMakeLists: Disable concepts in boost asio
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 12c0a4284..174ed1c58 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -123,6 +123,8 @@ if (MSVC) # cubeb and boost still make use of deprecated result_of. add_definitions(-D_HAS_DEPRECATED_RESULT_OF) + # boost asio's concept usage doesn't play nicely with MSVC yet. + add_definitions(-DASIO_DISABLE_CONCEPTS) else() set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) |