| 1566 | } |
| 1567 | |
| 1568 | bool cmGlobalVisualStudio10Generator::IsMsBuildRestoreSupported() const |
| 1569 | { |
| 1570 | if (this->Version >= VSVersion::VS16) { |
| 1571 | return true; |
| 1572 | } |
| 1573 | |
| 1574 | static std::string const vsVer15_7_5 = "15.7.27703.2042"; |
| 1575 | cm::optional<std::string> vsVer = this->GetVSInstanceVersion(); |
| 1576 | return (vsVer && |
| 1577 | cmSystemTools::VersionCompareGreaterEq(*vsVer, vsVer15_7_5)); |
| 1578 | } |
| 1579 | |
| 1580 | bool cmGlobalVisualStudio10Generator::IsBuildInParallelSupported() const |
| 1581 | { |
no test coverage detected