| 26 | } |
| 27 | |
| 28 | void cmExportInstallAndroidMKGenerator::ReportDuplicateTarget( |
| 29 | std::string const& targetName) const |
| 30 | { |
| 31 | std::ostringstream e; |
| 32 | e << "install(EXPORT_ANDROID_MK \"" << this->GetExportSet()->GetName() |
| 33 | << "\" ...) " |
| 34 | << "includes target \"" << targetName |
| 35 | << "\" more than once in the export set."; |
| 36 | this->ReportError(e.str()); |
| 37 | } |
| 38 | |
| 39 | bool cmExportInstallAndroidMKGenerator::GenerateMainFile(std::ostream& os) |
| 40 | { |
nothing calls this directly
no test coverage detected