| 277 | } |
| 278 | |
| 279 | bool cmVSSetupAPIHelper::GetVCToolsetVersion(std::string& vsToolsetVersion) |
| 280 | { |
| 281 | vsToolsetVersion.clear(); |
| 282 | bool isInstalled = this->EnumerateAndChooseVSInstance(); |
| 283 | |
| 284 | if (isInstalled) { |
| 285 | vsToolsetVersion = chosenInstanceInfo.VCToolsetVersion; |
| 286 | } |
| 287 | |
| 288 | return isInstalled && !vsToolsetVersion.empty(); |
| 289 | } |
| 290 | |
| 291 | bool cmVSSetupAPIHelper::IsEWDKEnabled() |
| 292 | { |
no test coverage detected