summaryrefslogtreecommitdiffstats
path: root/Modules/Compiler/MSVC-CXX.cmake
blob: 82f15bd70e4965a889f9c4c672a887ba52088b17 (plain)
1
2
3
4
5
6
7
8
9
10
11

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)
    _record_compiler_features(CXX "" CMAKE_CXX_COMPILE_FEATURES)
  endif()
endmacro()