| 2050 | } |
| 2051 | |
| 2052 | Json::Value Target::DumpCompileGroup(CompileGroup& cg) |
| 2053 | { |
| 2054 | Json::Value group = |
| 2055 | this->DumpCompileData(this->MergeCompileData(cg.Entry->first)); |
| 2056 | group["sourceIndexes"] = std::move(cg.SourceIndexes); |
| 2057 | return group; |
| 2058 | } |
| 2059 | |
| 2060 | Json::Value Target::DumpSysroot(std::string const& path) |
| 2061 | { |
no test coverage detected