Skip to content

Instantly share code, notes, and snippets.

@mallochine
Created October 28, 2017 20:48
Show Gist options
  • Save mallochine/c126e317cb3645c880d170bb12848791 to your computer and use it in GitHub Desktop.
Save mallochine/c126e317cb3645c880d170bb12848791 to your computer and use it in GitHub Desktop.
problem2.cpp
bool cmGlobalVisualStudio14Generator::IsWindowsDesktopToolsetInstalled() const
{
const char desktop10Key[] = "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\"
"VisualStudio\\14.0\\VC\\Runtimes";
std::vector<std::string> vc14;
return cmSystemTools::GetRegistrySubKeys(desktop10Key, vc14,
cmSystemTools::KeyWOW64_32);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment