| 2779 | } |
| 2780 | |
| 2781 | cmGeneratorTarget* cmGlobalGenerator::FindGeneratorTargetImpl( |
| 2782 | std::string const& name) const |
| 2783 | { |
| 2784 | auto const it = this->GeneratorTargetSearchIndex.find(name); |
| 2785 | if (it != this->GeneratorTargetSearchIndex.end()) { |
| 2786 | return it->second; |
| 2787 | } |
| 2788 | return nullptr; |
| 2789 | } |
| 2790 | |
| 2791 | cmTarget* cmGlobalGenerator::FindTarget( |
| 2792 | std::string const& name, cmStateEnums::TargetDomainSet domains) const |
no test coverage detected