diff options
author | Brad King <brad.king@kitware.com> | 2016-11-02 13:42:39 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-11-02 13:51:48 (GMT) |
commit | 8b6cc2518a8019314af43a32702a09bff318b777 (patch) | |
tree | b662bd6f006143d11874b1ede76b430be13c5da2 /Modules/Compiler/MSVC-CXX.cmake | |
parent | 2d23f7b206c908e55999143487548e2d6a92bc79 (diff) | |
download | CMake-8b6cc2518a8019314af43a32702a09bff318b777.zip CMake-8b6cc2518a8019314af43a32702a09bff318b777.tar.gz CMake-8b6cc2518a8019314af43a32702a09bff318b777.tar.bz2 |
Features: Centralize per-compiler recording macros
Simplify and de-duplicate per-compiler feature recording macros and
convert to a centralized per-language macro.
Diffstat (limited to 'Modules/Compiler/MSVC-CXX.cmake')
-rw-r--r-- | Modules/Compiler/MSVC-CXX.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Compiler/MSVC-CXX.cmake b/Modules/Compiler/MSVC-CXX.cmake index 681ee70..82f15bd 100644 --- a/Modules/Compiler/MSVC-CXX.cmake +++ b/Modules/Compiler/MSVC-CXX.cmake @@ -6,6 +6,6 @@ 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) + _record_compiler_features(CXX "" CMAKE_CXX_COMPILE_FEATURES) endif() endmacro() |