| 345 | } |
| 346 | |
| 347 | void cmGlobalGenerator::CheckTargetLinkLibraries() const |
| 348 | { |
| 349 | for (auto const& generator : this->LocalGenerators) { |
| 350 | for (auto const& gt : generator->GetGeneratorTargets()) { |
| 351 | gt->CheckLinkLibraries(); |
| 352 | } |
| 353 | for (auto const& gt : generator->GetOwnedImportedGeneratorTargets()) { |
| 354 | gt->CheckLinkLibraries(); |
| 355 | } |
| 356 | } |
| 357 | } |
| 358 | |
| 359 | bool cmGlobalGenerator::CheckTargetsForType() const |
| 360 | { |
no test coverage detected