MCPcopy Create free account
hub / github.com/Kitware/CMake / CreateLocalGenerators

Method CreateLocalGenerators

Source/cmGlobalGenerator.cxx:1275–1285  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1273}
1274
1275void 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
1287void cmGlobalGenerator::Configure()
1288{

Callers 1

Calls 8

CreateLocalGeneratorMethod · 0.95
IndexLocalGeneratorMethod · 0.95
moveFunction · 0.85
reserveMethod · 0.80
push_backMethod · 0.80
clearMethod · 0.45
sizeMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected