| 234 | } |
| 235 | |
| 236 | void cmExportBuildFileGenerator::ComplainAboutDuplicateTarget( |
| 237 | std::string const& targetName) const |
| 238 | { |
| 239 | std::ostringstream e; |
| 240 | e << "given target \"" << targetName << "\" more than once."; |
| 241 | this->ReportError(e.str()); |
| 242 | } |
| 243 | |
| 244 | void cmExportBuildFileGenerator::IssueMessage(MessageType type, |
| 245 | std::string const& message) const |
no test coverage detected