mirror of
https://github.com/reactos/CMake.git
synced 2024-12-03 17:11:04 +00:00
9d767810e1
If no compiler feature information is known for a given compiler version, do not set a language standard default either. The two settings must be recorded consistently.
10 lines
278 B
CMake
10 lines
278 B
CMake
|
|
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)
|
|
record_compiler_features(CXX "" CMAKE_CXX_COMPILE_FEATURES)
|
|
endmacro()
|