summaryrefslogtreecommitdiffstats
path: root/Modules/CMakeCXXCompilerId.cpp.in
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2010-05-17 18:11:20 (GMT)
committerBrad King <brad.king@kitware.com>2010-05-17 18:11:20 (GMT)
commit571dc7489111893355deba710feee5990bce92e4 (patch)
tree11d48c783134fd52b2e80bf00b3a6983fbe1c1f4 /Modules/CMakeCXXCompilerId.cpp.in
parente6cd880381ec536be277da3b590b5f326b848e1f (diff)
downloadCMake-571dc7489111893355deba710feee5990bce92e4.zip
CMake-571dc7489111893355deba710feee5990bce92e4.tar.gz
CMake-571dc7489111893355deba710feee5990bce92e4.tar.bz2
Recognize Clang C and C++ compilers (see #10693)
Map to the platform and compiler information for GNU because the compilers are command-line compatible for common operations. Later we can add Clang-specific features as necessary. We honor the preferred capitalization is "Clang", not the common mis-spelling "CLang".
Diffstat (limited to 'Modules/CMakeCXXCompilerId.cpp.in')
-rw-r--r--Modules/CMakeCXXCompilerId.cpp.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/CMakeCXXCompilerId.cpp.in b/Modules/CMakeCXXCompilerId.cpp.in
index 00ab8e2..4a32823 100644
--- a/Modules/CMakeCXXCompilerId.cpp.in
+++ b/Modules/CMakeCXXCompilerId.cpp.in
@@ -11,6 +11,9 @@
#elif defined(__INTEL_COMPILER) || defined(__ICC)
# define COMPILER_ID "Intel"
+#elif defined(__clang__)
+# define COMPILER_ID "Clang"
+
#elif defined(__BORLANDC__)
# define COMPILER_ID "Borland"