| 2789 | } |
| 2790 | |
| 2791 | cmTarget* cmGlobalGenerator::FindTarget( |
| 2792 | std::string const& name, cmStateEnums::TargetDomainSet domains) const |
| 2793 | { |
| 2794 | if (domains.contains(cmStateEnums::TargetDomain::ALIAS)) { |
| 2795 | auto const ai = this->AliasTargets.find(name); |
| 2796 | if (ai != this->AliasTargets.end()) { |
| 2797 | return this->FindTargetImpl(ai->second, domains); |
| 2798 | } |
| 2799 | } |
| 2800 | return this->FindTargetImpl(name, domains); |
| 2801 | } |
| 2802 | |
| 2803 | cmGeneratorTarget* cmGlobalGenerator::FindGeneratorTarget( |
| 2804 | std::string const& name) const |
no test coverage detected