| 2801 | } |
| 2802 | |
| 2803 | cmGeneratorTarget* cmGlobalGenerator::FindGeneratorTarget( |
| 2804 | std::string const& name) const |
| 2805 | { |
| 2806 | auto const ai = this->AliasTargets.find(name); |
| 2807 | if (ai != this->AliasTargets.end()) { |
| 2808 | return this->FindGeneratorTargetImpl(ai->second); |
| 2809 | } |
| 2810 | return this->FindGeneratorTargetImpl(name); |
| 2811 | } |
| 2812 | |
| 2813 | bool cmGlobalGenerator::NameResolvesToFramework( |
| 2814 | std::string const& libname) const |
no test coverage detected