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

Method WriteChecks

Source/cmConfigureLog.cxx:82–95  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

80}
81
82void cmConfigureLog::WriteChecks(cmMakefile const& mf)
83{
84 if (!mf.GetCMakeInstance()->HasCheckInProgress()) {
85 return;
86 }
87 this->BeginObject("checks"_s);
88 for (auto const& value :
89 cmReverseRange(mf.GetCMakeInstance()->GetCheckInProgressMessages())) {
90 this->BeginLine() << "- ";
91 this->Encoder->write(value, &this->Stream);
92 this->EndLine();
93 }
94 this->EndObject();
95}
96
97void cmConfigureLog::EnsureInit()
98{

Callers 1

BeginEventMethod · 0.95

Calls 7

BeginObjectMethod · 0.95
EndLineMethod · 0.95
EndObjectMethod · 0.95
cmReverseRangeFunction · 0.85
HasCheckInProgressMethod · 0.80
GetCMakeInstanceMethod · 0.45
writeMethod · 0.45

Tested by

no test coverage detected