Add additional Windows SDK path

Windows 10 SDK binary files are installed in versioned folder from Creator Update (10.0.15063.0)
This commit is contained in:
Younguk Kim 2017-08-04 23:48:43 +09:00 committed by rdb
parent 4fae81947e
commit 114aee1d6a

View File

@ -2422,6 +2422,7 @@ def SetupVisualStudioEnviron():
winsdk_ver = SDK["MSPLATFORM_VERSION"]
if winsdk_ver.startswith('10.'):
AddToPathEnv("PATH", SDK["MSPLATFORM"] + "bin\\" + arch)
AddToPathEnv("PATH", SDK["MSPLATFORM"] + "bin\\" + winsdk_ver + "\\" + arch)
# Windows Kit 10 introduces the "universal CRT".
inc_dir = SDK["MSPLATFORM"] + "Include\\" + winsdk_ver + "\\"