Merge topic 'print-CMP0022-content-conflict'

271bf10 Fix CMP0022 warning when no old-style property is set
This commit is contained in:
Brad King 2013-09-13 11:37:53 -04:00 committed by CMake Topic Stage
commit b434b0510a
1 changed files with 1 additions and 1 deletions

View File

@ -6449,7 +6449,7 @@ bool cmTarget::ComputeLinkInterface(const char* config, LinkInterface& iface,
<< newExplicitLibraries
<< "\n"
<< linkIfaceProp << ":\n "
<< explicitLibraries << "\n";
<< (explicitLibraries ? explicitLibraries : "(empty)") << "\n";
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING, w.str());
}
// Fall through