| 1414 | } |
| 1415 | |
| 1416 | void cmGlobalGenerator::ComputeBuildFileGenerators() |
| 1417 | { |
| 1418 | for (unsigned int i = 0; i < this->LocalGenerators.size(); ++i) { |
| 1419 | std::vector<std::unique_ptr<cmExportBuildFileGenerator>> const& gens = |
| 1420 | this->Makefiles[i]->GetExportBuildFileGenerators(); |
| 1421 | for (std::unique_ptr<cmExportBuildFileGenerator> const& g : gens) { |
| 1422 | g->Compute(this->LocalGenerators[i].get()); |
| 1423 | } |
| 1424 | } |
| 1425 | } |
| 1426 | |
| 1427 | bool cmGlobalGenerator::UnsupportedVariableIsDefined(std::string const& name, |
| 1428 | bool supported) const |
no test coverage detected