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

Method IsBuildInParallelSupported

Source/cmGlobalVisualStudio10Generator.cxx:1580–1590  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1578}
1579
1580bool 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
1592bool cmGlobalVisualStudio10Generator::SupportsShortObjectNames() const
1593{

Callers 1

WriteCustomRuleCppMethod · 0.80

Calls 1

GetVSInstanceVersionMethod · 0.95

Tested by

no test coverage detected