| 691 | /* clang-format on */ |
| 692 | |
| 693 | void cmGeneratorTarget::GetObjectSources( |
| 694 | std::vector<cmSourceFile const*>& data, std::string const& config) const |
| 695 | { |
| 696 | IMPLEMENT_VISIT(SourceKindObjectSource); |
| 697 | |
| 698 | if (this->VisitedConfigsForObjects.count(config)) { |
| 699 | return; |
| 700 | } |
| 701 | |
| 702 | for (cmSourceFile const* it : data) { |
| 703 | this->Objects[it]; |
| 704 | } |
| 705 | |
| 706 | this->LocalGenerator->ComputeObjectFilenames(this->Objects, config, this); |
| 707 | this->VisitedConfigsForObjects.insert(config); |
| 708 | } |
| 709 | |
| 710 | void cmGeneratorTarget::ComputeObjectMapping() |
| 711 | { |
no test coverage detected