| 116 | } |
| 117 | |
| 118 | Json::Value CMakeFiles::DumpGlobsDependent() |
| 119 | { |
| 120 | Json::Value globsDependent = Json::arrayValue; |
| 121 | for (cmGlobCacheEntry const& entry : |
| 122 | this->FileAPI.GetCMakeInstance()->GetGlobCacheEntries()) { |
| 123 | globsDependent.append(this->DumpGlobDependent(entry)); |
| 124 | } |
| 125 | return globsDependent; |
| 126 | } |
| 127 | |
| 128 | Json::Value CMakeFiles::DumpGlobDependent(cmGlobCacheEntry const& entry) |
| 129 | { |
no test coverage detected