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/Clang-C.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/Clang-C.cmake')
-rw-r--r-- | Modules/Compiler/Clang-C.cmake | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/Modules/Compiler/Clang-C.cmake b/Modules/Compiler/Clang-C.cmake index d8b7743..b3f3805 100644 --- a/Modules/Compiler/Clang-C.cmake +++ b/Modules/Compiler/Clang-C.cmake @@ -34,18 +34,14 @@ if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 3.4) endif() macro(cmake_record_c_compile_features) - macro(_get_clang_features std_version list) - record_compiler_features(C "${std_version}" ${list}) - endmacro() - set(_result 0) if (UNIX AND NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 3.4) - _get_clang_features(${CMAKE_C11_STANDARD_COMPILE_OPTION} CMAKE_C11_COMPILE_FEATURES) + _record_compiler_features_c(11) if (_result EQUAL 0) - _get_clang_features(${CMAKE_C99_STANDARD_COMPILE_OPTION} CMAKE_C99_COMPILE_FEATURES) + _record_compiler_features_c(99) endif() if (_result EQUAL 0) - _get_clang_features(${CMAKE_C90_STANDARD_COMPILE_OPTION} CMAKE_C90_COMPILE_FEATURES) + _record_compiler_features_c(90) endif() endif() endmacro() |