diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2018-09-12 17:33:04 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2018-09-19 15:23:08 (GMT) |
commit | eedd91ab085d551d7953f8bb6fe01fd5540af004 (patch) | |
tree | 06c48354c007001780a079d2a6b86fd7bdd822bc /Source/cmPolicies.h | |
parent | fd28ea35ca5f62e52d030288bf60ca6fe769cb96 (diff) | |
download | CMake-eedd91ab085d551d7953f8bb6fe01fd5540af004.zip CMake-eedd91ab085d551d7953f8bb6fe01fd5540af004.tar.gz CMake-eedd91ab085d551d7953f8bb6fe01fd5540af004.tar.bz2 |
BundleUtilities: Disallow inclusion at configure time
This commit adds a new CMake policy, CMP0080, which prohibits the
inclusion of BundleUtilities at configure time. The old behavior is
to allow the inclusion.
Diffstat (limited to 'Source/cmPolicies.h')
-rw-r--r-- | Source/cmPolicies.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/cmPolicies.h b/Source/cmPolicies.h index 4ffe803..f99cc0f 100644 --- a/Source/cmPolicies.h +++ b/Source/cmPolicies.h @@ -234,7 +234,10 @@ class cmMakefile; SELECT( \ POLICY, CMP0079, \ "target_link_libraries allows use with targets in other directories.", 3, \ - 13, 0, cmPolicies::WARN) + 13, 0, cmPolicies::WARN) \ + SELECT(POLICY, CMP0080, \ + "BundleUtilities cannot be included at configure time", 3, 13, 0, \ + cmPolicies::WARN) #define CM_SELECT_ID(F, A1, A2, A3, A4, A5, A6) F(A1) #define CM_FOR_EACH_POLICY_ID(POLICY) \ |