Browse Source
Merge pull request #4318 from lioncash/cpp20
CMakeLists: Enable usage of C++20 on Linux
pull/15/merge
Rodrigo Locatti
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
3 deletions
-
CMakeLists.txt
|
|
|
@ -118,15 +118,15 @@ message(STATUS "Target architecture: ${ARCHITECTURE}") |
|
|
|
# Configure C++ standard |
|
|
|
# =========================== |
|
|
|
|
|
|
|
# boost asio's concept usage doesn't play nicely with some compilers yet. |
|
|
|
add_definitions(-DBOOST_ASIO_DISABLE_CONCEPTS) |
|
|
|
if (MSVC) |
|
|
|
add_compile_options(/std:c++latest) |
|
|
|
|
|
|
|
# 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(-DBOOST_ASIO_DISABLE_CONCEPTS) |
|
|
|
else() |
|
|
|
set(CMAKE_CXX_STANDARD 17) |
|
|
|
set(CMAKE_CXX_STANDARD 20) |
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON) |
|
|
|
endif() |
|
|
|
|
|
|
|
|