| 2083 | } |
| 2084 | |
| 2085 | Json::Value Target::DumpInstallDestinations() |
| 2086 | { |
| 2087 | Json::Value destinations = Json::arrayValue; |
| 2088 | auto installGens = this->GT->Target->GetInstallGenerators(); |
| 2089 | for (auto* itGen : installGens) { |
| 2090 | destinations.append(this->DumpInstallDestination(itGen)); |
| 2091 | } |
| 2092 | return destinations; |
| 2093 | } |
| 2094 | |
| 2095 | Json::Value Target::DumpInstallDestination(cmInstallTargetGenerator* itGen) |
| 2096 | { |
no test coverage detected