| 1800 | } |
| 1801 | |
| 1802 | Json::Value Target::DumpSources(FileSetDatabase const& fsdb) |
| 1803 | { |
| 1804 | Json::Value sources = Json::arrayValue; |
| 1805 | cmGeneratorTarget::KindedSources const& kinded = |
| 1806 | this->GT->GetKindedSources(this->Config); |
| 1807 | for (cmGeneratorTarget::SourceAndKind const& sk : kinded.Sources) { |
| 1808 | sources.append(this->DumpSource(sk, sources.size(), fsdb)); |
| 1809 | } |
| 1810 | return sources; |
| 1811 | } |
| 1812 | |
| 1813 | Json::Value Target::DumpSource(cmGeneratorTarget::SourceAndKind const& sk, |
| 1814 | Json::ArrayIndex si, |
no test coverage detected