cmGeneratorTarget: Issue messages through the local generator.

This commit is contained in:
Stephen Kelly 2015-08-25 22:18:39 +02:00
parent cdb9984bff
commit cf0a78dc4c

View File

@ -1403,7 +1403,7 @@ cmGeneratorTarget::CompileInfo const* cmGeneratorTarget::GetCompileInfo(
msg += this->GetName(); msg += this->GetName();
msg += " which has type "; msg += " which has type ";
msg += cmTarget::GetTargetTypeName(this->Target->GetType()); msg += cmTarget::GetTargetTypeName(this->Target->GetType());
this->Makefile->IssueMessage(cmake::INTERNAL_ERROR, msg); this->LocalGenerator->IssueMessage(cmake::INTERNAL_ERROR, msg);
return 0; return 0;
} }
@ -2093,7 +2093,7 @@ cmGeneratorTarget::NormalGetRealName(const std::string& config) const
{ {
std::string msg = "NormalGetRealName called on imported target: "; std::string msg = "NormalGetRealName called on imported target: ";
msg += this->GetName(); msg += this->GetName();
this->Makefile->IssueMessage(cmake::INTERNAL_ERROR, msg); this->LocalGenerator->IssueMessage(cmake::INTERNAL_ERROR, msg);
} }
if(this->GetType() == cmTarget::EXECUTABLE) if(this->GetType() == cmTarget::EXECUTABLE)