| 325 | } |
| 326 | |
| 327 | void cmExportInstallFileGenerator::ComplainAboutDuplicateTarget( |
| 328 | std::string const& targetName) const |
| 329 | { |
| 330 | std::ostringstream e; |
| 331 | e << "install(" << this->IEGen->InstallSubcommand() << " \"" |
| 332 | << this->GetExportName() << "\" ...) " |
| 333 | << "includes target \"" << targetName |
| 334 | << "\" more than once in the export set."; |
| 335 | this->ReportError(e.str()); |
| 336 | } |
| 337 | |
| 338 | void cmExportInstallFileGenerator::IssueMessage( |
| 339 | MessageType type, std::string const& message) const |
no test coverage detected