| 158 | } |
| 159 | |
| 160 | void cmExportBuildFileGenerator::GetTargets( |
| 161 | std::vector<TargetExport>& targets) const |
| 162 | { |
| 163 | if (this->ExportSet) { |
| 164 | for (std::unique_ptr<cmTargetExport> const& te : |
| 165 | this->ExportSet->GetTargetExports()) { |
| 166 | if (te->NamelinkOnly) { |
| 167 | continue; |
| 168 | } |
| 169 | targets.emplace_back(te->TargetName, te->XcFrameworkLocation); |
| 170 | } |
| 171 | return; |
| 172 | } |
| 173 | targets = this->Targets; |
| 174 | } |
| 175 | |
| 176 | cmExportFileGenerator::ExportInfo cmExportBuildFileGenerator::FindExportInfo( |
| 177 | cmGeneratorTarget const* target) const |
no test coverage detected