| 2684 | } |
| 2685 | |
| 2686 | cmLocalGenerator* cmGlobalGenerator::FindLocalGenerator( |
| 2687 | cmDirectoryId const& id) const |
| 2688 | { |
| 2689 | auto const it = this->LocalGeneratorSearchIndex.find(id.String); |
| 2690 | if (it != this->LocalGeneratorSearchIndex.end()) { |
| 2691 | return it->second; |
| 2692 | } |
| 2693 | return nullptr; |
| 2694 | } |
| 2695 | |
| 2696 | void cmGlobalGenerator::AddAlias(std::string const& name, |
| 2697 | std::string const& tgtName) |
no test coverage detected