| 773 | } |
| 774 | |
| 775 | void cmLocalGenerator::AddGeneratorTarget( |
| 776 | std::unique_ptr<cmGeneratorTarget> gt) |
| 777 | { |
| 778 | cmGeneratorTarget* gt_ptr = gt.get(); |
| 779 | |
| 780 | this->GeneratorTargets.push_back(std::move(gt)); |
| 781 | this->GeneratorTargetSearchIndex.emplace(gt_ptr->GetName(), gt_ptr); |
| 782 | this->GlobalGenerator->IndexGeneratorTarget(gt_ptr); |
| 783 | } |
| 784 | |
| 785 | void cmLocalGenerator::AddImportedGeneratorTarget(cmGeneratorTarget* gt) |
| 786 | { |
no test coverage detected