| 1218 | } |
| 1219 | |
| 1220 | Json::Value DirectoryObject::DumpInstallerExportTargets(cmExportSet* exp) |
| 1221 | { |
| 1222 | Json::Value targets = Json::arrayValue; |
| 1223 | for (auto const& targetExport : exp->GetTargetExports()) { |
| 1224 | Json::Value target = Json::objectValue; |
| 1225 | target["id"] = TargetId(targetExport->Target, this->TopBuild); |
| 1226 | target["index"] = this->TargetIndexMap[targetExport->Target]; |
| 1227 | targets.append(std::move(target)); // NOLINT(*) |
| 1228 | } |
| 1229 | return targets; |
| 1230 | } |
| 1231 | |
| 1232 | Json::Value DirectoryObject::DumpInstallerPath(std::string const& top, |
| 1233 | std::string const& fromPathIn, |
no test coverage detected