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

Method BuildConfigureLog

Source/cmFileAPI.cxx:879–892  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

877}
878
879Json::Value cmFileAPI::BuildConfigureLog(Object object)
880{
881 Json::Value configureLog = cmFileAPIConfigureLogDump(*this, object.Version);
882 configureLog["kind"] = this->ObjectKindName(object.Kind);
883
884 Json::Value& version = configureLog["version"];
885 if (object.Version == 1) {
886 version = BuildVersion(1, ConfigureLogV1Minor);
887 } else {
888 return configureLog; // should be unreachable
889 }
890
891 return configureLog;
892}
893
894// The "cache" object kind.
895

Callers 1

BuildObjectMethod · 0.95

Calls 2

ObjectKindNameMethod · 0.95

Tested by

no test coverage detected