| 223 | }; |
| 224 | |
| 225 | void InfoWriter::SetConfig(std::string const& key, |
| 226 | cmQtAutoGenInitializer::ConfigString const& cfgStr) |
| 227 | { |
| 228 | this->Set(key, cfgStr.Default); |
| 229 | for (auto const& item : cfgStr.Config) { |
| 230 | this->Set(cmStrCat(key, '_', item.first), item.second); |
| 231 | } |
| 232 | } |
| 233 | |
| 234 | template <typename CONT> |
| 235 | bool InfoWriter::MakeArray(Json::Value& jval, CONT const& container) |
no test coverage detected