| 3601 | } |
| 3602 | |
| 3603 | void cmGlobalGenerator::SetExternalMakefileProjectGenerator( |
| 3604 | std::unique_ptr<cmExternalMakefileProjectGenerator> extraGenerator) |
| 3605 | { |
| 3606 | this->ExtraGenerator = std::move(extraGenerator); |
| 3607 | if (this->ExtraGenerator) { |
| 3608 | this->ExtraGenerator->SetGlobalGenerator(this); |
| 3609 | } |
| 3610 | } |
| 3611 | |
| 3612 | std::string cmGlobalGenerator::GetExtraGeneratorName() const |
| 3613 | { |
no test coverage detected