| 1342 | } |
| 1343 | |
| 1344 | void cmGlobalGenerator::CreateGenerationObjects(TargetTypes targetTypes) |
| 1345 | { |
| 1346 | this->CreateLocalGenerators(); |
| 1347 | // Commit side effects only if we are actually generating |
| 1348 | if (targetTypes == TargetTypes::AllTargets) { |
| 1349 | this->CheckTargetProperties(); |
| 1350 | } |
| 1351 | this->CreateGeneratorTargets(targetTypes); |
| 1352 | if (targetTypes == TargetTypes::AllTargets) { |
| 1353 | this->ComputeBuildFileGenerators(); |
| 1354 | } |
| 1355 | } |
| 1356 | |
| 1357 | void cmGlobalGenerator::CreateImportedGenerationObjects( |
| 1358 | cmMakefile* mf, std::vector<std::string> const& targets, |
no test coverage detected