mirror of
https://github.com/reactos/CMake.git
synced 2024-11-28 14:01:21 +00:00
cmMakefile: Simplify CMP0054 handling.
This commit is contained in:
parent
e17b5e4262
commit
f9785e0cb6
@ -112,10 +112,7 @@ const char* cmConditionEvaluator::GetDefinitionIfUnquoted(
|
||||
|
||||
if(def && argument.WasQuoted() && this->Policy54Status == cmPolicies::WARN)
|
||||
{
|
||||
bool hasBeenReported = this->Makefile.HasCMP0054AlreadyBeenReported(
|
||||
this->Makefile.GetExecutionContext());
|
||||
|
||||
if(!hasBeenReported)
|
||||
if(!this->Makefile.HasCMP0054AlreadyBeenReported())
|
||||
{
|
||||
std::ostringstream e;
|
||||
e << (cmPolicies::GetPolicyWarning(cmPolicies::CMP0054)) << "\n";
|
||||
@ -161,10 +158,7 @@ bool cmConditionEvaluator::IsKeyword(std::string const& keyword,
|
||||
if(isKeyword && argument.WasQuoted() &&
|
||||
this->Policy54Status == cmPolicies::WARN)
|
||||
{
|
||||
bool hasBeenReported = this->Makefile.HasCMP0054AlreadyBeenReported(
|
||||
this->Makefile.GetExecutionContext());
|
||||
|
||||
if(!hasBeenReported)
|
||||
if(!this->Makefile.HasCMP0054AlreadyBeenReported())
|
||||
{
|
||||
std::ostringstream e;
|
||||
e << cmPolicies::GetPolicyWarning(cmPolicies::CMP0054) << "\n";
|
||||
|
@ -4941,10 +4941,9 @@ bool cmMakefile::SetPolicyVersion(const char *version)
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
bool cmMakefile::HasCMP0054AlreadyBeenReported(
|
||||
cmListFileContext context) const
|
||||
bool cmMakefile::HasCMP0054AlreadyBeenReported() const
|
||||
{
|
||||
cmCMP0054Id id(context);
|
||||
cmCMP0054Id id(this->GetExecutionContext());
|
||||
|
||||
bool alreadyReported =
|
||||
this->CMP0054ReportedIds.find(id) != this->CMP0054ReportedIds.end();
|
||||
|
@ -411,8 +411,7 @@ public:
|
||||
* Determine if the given context, name pair has already been reported
|
||||
* in context of CMP0054.
|
||||
*/
|
||||
bool HasCMP0054AlreadyBeenReported(
|
||||
cmListFileContext context) const;
|
||||
bool HasCMP0054AlreadyBeenReported() const;
|
||||
|
||||
bool IgnoreErrorsCMP0061() const;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user