| 708 | } |
| 709 | |
| 710 | void cmGeneratorTarget::ComputeObjectMapping() |
| 711 | { |
| 712 | auto const& configs = |
| 713 | this->Makefile->GetGeneratorConfigs(cmMakefile::IncludeEmptyConfig); |
| 714 | std::set<std::string> configSet(configs.begin(), configs.end()); |
| 715 | if (configSet == this->VisitedConfigsForObjects) { |
| 716 | return; |
| 717 | } |
| 718 | |
| 719 | for (std::string const& c : configs) { |
| 720 | std::vector<cmSourceFile const*> sourceFiles; |
| 721 | this->GetObjectSources(sourceFiles, c); |
| 722 | } |
| 723 | } |
| 724 | |
| 725 | cmValue cmGeneratorTarget::GetFeature(std::string const& feature, |
| 726 | std::string const& config) const |
no test coverage detected