Skip to content
Snippets Groups Projects
Commit 2d23f7b2 authored by Brad King's avatar Brad King
Browse files

Features: Do not record features on MSVC < 2010

We have no feature tests for versions of VS older than 2010, so do
not even call `record_compiler_features` for such versions.  This
is consistent with other compilers where we call this macro only
for versions for which we have recorded features.
parent ab2ae482
No related branches found
No related tags found
No related merge requests found
......@@ -5,5 +5,7 @@ if (NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 16.0)
endif()
macro(cmake_record_cxx_compile_features)
record_compiler_features(CXX "" CMAKE_CXX_COMPILE_FEATURES)
if (NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 16.0)
record_compiler_features(CXX "" CMAKE_CXX_COMPILE_FEATURES)
endif()
endmacro()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment