You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
466 B
18 lines
466 B
|
|
if (NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 16.0)
|
|
# MSVC has no specific language level or flags to change it.
|
|
set(CMAKE_CXX_STANDARD_DEFAULT "")
|
|
endif()
|
|
|
|
macro(cmake_record_cxx_compile_features)
|
|
if (NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 16.0)
|
|
list(APPEND CMAKE_CXX_COMPILE_FEATURES
|
|
cxx_std_98
|
|
cxx_std_11
|
|
cxx_std_14
|
|
cxx_std_17
|
|
)
|
|
_record_compiler_features(CXX "" CMAKE_CXX_COMPILE_FEATURES)
|
|
endif()
|
|
endmacro()
|