diff options
author | Nils Gladitz <nilsgladitz@gmail.com> | 2014-03-28 20:38:10 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-03-31 13:45:10 (GMT) |
commit | 77b581c2f004a36b2b62cc7c678abf51f92c76b5 (patch) | |
tree | 38d8a72a1d631f6a9b5cd30ab9ab14a256e7826a /Source/cmAddCustomTargetCommand.cxx | |
parent | a48de7d8506325e7f27c9dada578744e1ff3fb35 (diff) | |
download | CMake-77b581c2f004a36b2b62cc7c678abf51f92c76b5.zip CMake-77b581c2f004a36b2b62cc7c678abf51f92c76b5.tar.gz CMake-77b581c2f004a36b2b62cc7c678abf51f92c76b5.tar.bz2 |
Policies: omit warnings about unset policies when they are actually set to NEW
Diffstat (limited to 'Source/cmAddCustomTargetCommand.cxx')
-rw-r--r-- | Source/cmAddCustomTargetCommand.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmAddCustomTargetCommand.cxx b/Source/cmAddCustomTargetCommand.cxx index ef62523..e27d830 100644 --- a/Source/cmAddCustomTargetCommand.cxx +++ b/Source/cmAddCustomTargetCommand.cxx @@ -165,10 +165,13 @@ bool cmAddCustomTargetCommand if (!nameOk) { cmake::MessageType messageType = cmake::AUTHOR_WARNING; + cmOStringStream e; bool issueMessage = false; switch(this->Makefile->GetPolicyStatus(cmPolicies::CMP0037)) { case cmPolicies::WARN: + e << (this->Makefile->GetPolicies() + ->GetPolicyWarning(cmPolicies::CMP0037)) << "\n"; issueMessage = true; case cmPolicies::OLD: break; @@ -180,9 +183,6 @@ bool cmAddCustomTargetCommand } if (issueMessage) { - cmOStringStream e; - e << (this->Makefile->GetPolicies() - ->GetPolicyWarning(cmPolicies::CMP0037)) << "\n"; e << "The target name \"" << targetName << "\" is reserved or not valid for certain " "CMake features, such as generator expressions, and may result " |