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

Method ProcessPresetVariables

Source/cmake.cxx:502–514  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

500}
501
502void cmake::ProcessPresetVariables()
503{
504 for (auto const& var : this->UnprocessedPresetVariables) {
505 if (!var.second) {
506 continue;
507 }
508 cmStateEnums::CacheEntryType type = cmStateEnums::UNINITIALIZED;
509 if (!var.second->Type.empty()) {
510 type = cmState::StringToCacheEntryType(var.second->Type);
511 }
512 this->ProcessCacheArg(var.first, var.second->Value, type);
513 }
514}
515
516void cmake::PrintPresetVariables()
517{

Callers 2

RunMethod · 0.95
LoadCacheMethod · 0.80

Calls 2

ProcessCacheArgMethod · 0.95
emptyMethod · 0.45

Tested by

no test coverage detected