summaryrefslogtreecommitdiffstats
path: root/Modules/Compiler/Clang-C.cmake
diff options
context:
space:
mode:
authorChuck Atkins <chuck.atkins@kitware.com>2017-05-10 20:39:53 (GMT)
committerChuck Atkins <chuck.atkins@kitware.com>2017-05-30 13:34:36 (GMT)
commit9b112a848a2063c81fe758984351d765e712a2bc (patch)
tree6a7021a51fe474418e1e132de7b58095d7936e74 /Modules/Compiler/Clang-C.cmake
parent37221529c7d032599cd7f8a4bb6778a55b8bc5a8 (diff)
downloadCMake-9b112a848a2063c81fe758984351d765e712a2bc.zip
CMake-9b112a848a2063c81fe758984351d765e712a2bc.tar.gz
CMake-9b112a848a2063c81fe758984351d765e712a2bc.tar.bz2
Compilers: Port to use default cmake_record_lang_compile_features macros
Diffstat (limited to 'Modules/Compiler/Clang-C.cmake')
-rw-r--r--Modules/Compiler/Clang-C.cmake15
1 files changed, 0 insertions, 15 deletions
diff --git a/Modules/Compiler/Clang-C.cmake b/Modules/Compiler/Clang-C.cmake
index b94087f..b881e2b 100644
--- a/Modules/Compiler/Clang-C.cmake
+++ b/Modules/Compiler/Clang-C.cmake
@@ -18,18 +18,3 @@ if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 3.4)
endif()
__compiler_check_default_language_standard(C 3.4 99 3.6 11)
-
-macro(cmake_record_c_compile_features)
- set(_result 0)
- if (UNIX AND NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 3.4)
- if (_result EQUAL 0)
- _record_compiler_features_c(11)
- endif()
- if (_result EQUAL 0)
- _record_compiler_features_c(99)
- endif()
- if (_result EQUAL 0)
- _record_compiler_features_c(90)
- endif()
- endif()
-endmacro()