diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2020-10-20 18:51:42 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2020-10-20 18:51:42 (GMT) |
commit | cf6ac2d365dcfb00b32a0a10ac0c48a401d42ef5 (patch) | |
tree | a25f17669a4dfa68880e0bf56f9d70fe46870c40 /Source/cmPolicies.h | |
parent | 21bc2fd945aa06c640bd609bf1e57cc208d6d6bd (diff) | |
parent | 8bb8c9fb138c0eb94f05f069577b16afc37faa46 (diff) | |
download | CMake-cf6ac2d365dcfb00b32a0a10ac0c48a401d42ef5.zip CMake-cf6ac2d365dcfb00b32a0a10ac0c48a401d42ef5.tar.gz CMake-cf6ac2d365dcfb00b32a0a10ac0c48a401d42ef5.tar.bz2 |
Merge branch 'master' into cmakepresets-schema
Diffstat (limited to 'Source/cmPolicies.h')
-rw-r--r-- | Source/cmPolicies.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Source/cmPolicies.h b/Source/cmPolicies.h index 18ce9c3..5ef0ff7 100644 --- a/Source/cmPolicies.h +++ b/Source/cmPolicies.h @@ -340,7 +340,12 @@ class cmMakefile; 3, 19, 0, cmPolicies::WARN) \ SELECT(POLICY, CMP0114, \ "ExternalProject step targets fully adopt their steps.", 3, 19, 0, \ - cmPolicies::WARN) + cmPolicies::WARN) \ + SELECT(POLICY, CMP0115, "Source file extensions must be explicit.", 3, 20, \ + 0, cmPolicies::WARN) \ + SELECT(POLICY, CMP0116, \ + "Ninja generators transform DEPFILEs from add_custom_command().", 3, \ + 20, 0, cmPolicies::WARN) #define CM_SELECT_ID(F, A1, A2, A3, A4, A5, A6) F(A1) #define CM_FOR_EACH_POLICY_ID(POLICY) \ |