| 91 | } |
| 92 | |
| 93 | Json::Value Cache::DumpEntryProperty(std::string const& name, |
| 94 | std::string const& prop) |
| 95 | { |
| 96 | Json::Value property = Json::objectValue; |
| 97 | property["name"] = prop; |
| 98 | cmValue p = this->State->GetCacheEntryProperty(name, prop); |
| 99 | property["value"] = p ? *p : ""; |
| 100 | return property; |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | Json::Value cmFileAPICacheDump(cmFileAPI& fileAPI, unsigned int version) |
no test coverage detected