diff options
author | Brad King <brad.king@kitware.com> | 2013-10-02 18:10:38 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-10-08 00:12:46 (GMT) |
commit | aa53ee57bb50faa3aa64e86cb58bbe2df6688335 (patch) | |
tree | 82d4a635097a71c9248f6251e02c67e0db0194f4 /Source/cmPolicies.h | |
parent | ab65862417adc80dfb18170a6bd70889a24fe045 (diff) | |
download | CMake-aa53ee57bb50faa3aa64e86cb58bbe2df6688335.zip CMake-aa53ee57bb50faa3aa64e86cb58bbe2df6688335.tar.gz CMake-aa53ee57bb50faa3aa64e86cb58bbe2df6688335.tar.bz2 |
Add policy CMP0025 for Apple Clang compiler id compatibility
The parent commit introduced a separate "AppleClang" compiler id for
Apple's Clang distribution. Add a policy in order to support projects
that expect this compiler's id to be just "Clang". When the policy is
OLD or not set, map AppleClang back to Clang. Continue to use the
AppleClang id internally while enabling the language, but set the
CMAKE_<LANG>_COMPILER_ID after project() or enable_language() to the
compatible value for use by project code.
Diffstat (limited to 'Source/cmPolicies.h')
-rw-r--r-- | Source/cmPolicies.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmPolicies.h b/Source/cmPolicies.h index bafe5b2..ec8959d 100644 --- a/Source/cmPolicies.h +++ b/Source/cmPolicies.h @@ -75,6 +75,7 @@ public: CMP0022, ///< INTERFACE_LINK_LIBRARIES defines the link interface CMP0023, ///< Disallow mixing keyword and plain tll signatures CMP0024, ///< Disallow including export() result. + CMP0025, ///< Compiler id for Apple Clang is now AppleClang /** \brief Always the last entry. * |