| 1578 | } |
| 1579 | |
| 1580 | bool cmGlobalVisualStudio10Generator::IsBuildInParallelSupported() const |
| 1581 | { |
| 1582 | if (this->Version >= VSVersion::VS16) { |
| 1583 | return true; |
| 1584 | } |
| 1585 | |
| 1586 | static std::string const vsVer15_8_0 = "15.8.27705.0"; |
| 1587 | cm::optional<std::string> vsVer = this->GetVSInstanceVersion(); |
| 1588 | return (vsVer && |
| 1589 | cmSystemTools::VersionCompareGreaterEq(*vsVer, vsVer15_8_0)); |
| 1590 | } |
| 1591 | |
| 1592 | bool cmGlobalVisualStudio10Generator::SupportsShortObjectNames() const |
| 1593 | { |
no test coverage detected