diff options
author | Brad King <brad.king@kitware.com> | 2010-05-17 14:11:20 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2010-05-17 14:11:20 -0400 |
commit | 571dc7489111893355deba710feee5990bce92e4 (patch) | |
tree | 11d48c783134fd52b2e80bf00b3a6983fbe1c1f4 /Modules/Compiler | |
parent | e6cd880381ec536be277da3b590b5f326b848e1f (diff) | |
download | cmake-571dc7489111893355deba710feee5990bce92e4.tar.gz |
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/Compiler')
-rw-r--r-- | Modules/Compiler/Clang-C.cmake | 1 | ||||
-rw-r--r-- | Modules/Compiler/Clang-CXX.cmake | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/Modules/Compiler/Clang-C.cmake b/Modules/Compiler/Clang-C.cmake new file mode 100644 index 0000000000..f7baf686ab --- /dev/null +++ b/Modules/Compiler/Clang-C.cmake @@ -0,0 +1 @@ +include(Compiler/GNU-C) diff --git a/Modules/Compiler/Clang-CXX.cmake b/Modules/Compiler/Clang-CXX.cmake new file mode 100644 index 0000000000..d3c403a693 --- /dev/null +++ b/Modules/Compiler/Clang-CXX.cmake @@ -0,0 +1 @@ +include(Compiler/GNU-CXX) |