| 80 | } |
| 81 | |
| 82 | void 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 | |
| 97 | void cmConfigureLog::EnsureInit() |
| 98 | { |
no test coverage detected