| 1273 | } |
| 1274 | |
| 1275 | void cmGlobalGenerator::CreateLocalGenerators() |
| 1276 | { |
| 1277 | this->LocalGeneratorSearchIndex.clear(); |
| 1278 | this->LocalGenerators.clear(); |
| 1279 | this->LocalGenerators.reserve(this->Makefiles.size()); |
| 1280 | for (auto const& m : this->Makefiles) { |
| 1281 | auto lg = this->CreateLocalGenerator(m.get()); |
| 1282 | this->IndexLocalGenerator(lg.get()); |
| 1283 | this->LocalGenerators.push_back(std::move(lg)); |
| 1284 | } |
| 1285 | } |
| 1286 | |
| 1287 | void cmGlobalGenerator::Configure() |
| 1288 | { |
no test coverage detected