| 222 | } |
| 223 | |
| 224 | void cmExportInstallCMakeConfigGenerator::GenerateImportConfig( |
| 225 | std::ostream& os, std::string const& config) |
| 226 | { |
| 227 | // Start with the import file header. |
| 228 | this->GenerateImportHeaderCode(os, config); |
| 229 | |
| 230 | // Generate the per-config target information. |
| 231 | this->cmExportFileGenerator::GenerateImportConfig(os, config); |
| 232 | |
| 233 | // End with the import file footer. |
| 234 | this->GenerateImportFooterCode(os); |
| 235 | } |
| 236 | |
| 237 | void cmExportInstallCMakeConfigGenerator::GenerateImportTargetsConfig( |
| 238 | std::ostream& os, std::string const& config, std::string const& suffix) |
nothing calls this directly
no test coverage detected