Created
October 28, 2017 20:44
-
-
Save mallochine/7af8454c0e1e208f8e877ba9a60488c1 to your computer and use it in GitHub Desktop.
problem number 1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bool cmGlobalVisualStudio14Generator::IsWindowsStoreToolsetInstalled() const | |
{ | |
const char universal10Key[] = | |
"HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\" | |
"VisualStudio\\14.0\\Setup\\Build Tools for Windows 10;SrcPath"; | |
std::string win10SDK; | |
return cmSystemTools::ReadRegistryValue(universal10Key, win10SDK, | |
cmSystemTools::KeyWOW64_32); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment