MCPcopy Create free account
hub / github.com/Kitware/CMake / IsMsBuildRestoreSupported

Method IsMsBuildRestoreSupported

Source/cmGlobalVisualStudio10Generator.cxx:1568–1578  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1566}
1567
1568bool 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
1580bool cmGlobalVisualStudio10Generator::IsBuildInParallelSupported() const
1581{

Callers 1

GenerateBuildCommandMethod · 0.95

Calls 1

GetVSInstanceVersionMethod · 0.95

Tested by

no test coverage detected