diff options
author | Brad King <brad.king@kitware.com> | 2018-09-17 10:47:46 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-09-17 18:16:48 (GMT) |
commit | 0c709cb2a214ec37100d38f06e1bbf157d8c4cb8 (patch) | |
tree | 19675a36da0dc13a7bd355af6656cf0d257fed15 /Source/cmMakefile.cxx | |
parent | 333804fa0e12c3df9ef16fec163451cffda52df4 (diff) | |
download | CMake-0c709cb2a214ec37100d38f06e1bbf157d8c4cb8.zip CMake-0c709cb2a214ec37100d38f06e1bbf157d8c4cb8.tar.gz CMake-0c709cb2a214ec37100d38f06e1bbf157d8c4cb8.tar.bz2 |
Add deprecation warnings for policies CMP0063 and below
The OLD behaviors of all policies are deprecated, but only by
documentation. Add an explicit deprecation diagnostic for some policies
to encourage projects to port away from setting policies to OLD.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index fdcf0a8..6e646a8 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -4184,7 +4184,7 @@ bool cmMakefile::SetPolicy(cmPolicies::PolicyID id, // Deprecate old policies, especially those that require a lot // of code to maintain the old behavior. - if (status == cmPolicies::OLD && id <= cmPolicies::CMP0054) { + if (status == cmPolicies::OLD && id <= cmPolicies::CMP0063) { this->IssueMessage(cmake::DEPRECATION_WARNING, cmPolicies::GetPolicyDeprecatedWarning(id)); } |