| 795 | } |
| 796 | |
| 797 | cmGeneratorTarget* cmLocalGenerator::FindLocalNonAliasGeneratorTarget( |
| 798 | std::string const& name) const |
| 799 | { |
| 800 | auto ti = this->GeneratorTargetSearchIndex.find(name); |
| 801 | if (ti != this->GeneratorTargetSearchIndex.end()) { |
| 802 | return ti->second; |
| 803 | } |
| 804 | return nullptr; |
| 805 | } |
| 806 | |
| 807 | void cmLocalGenerator::ComputeTargetManifest() |
| 808 | { |