From 7b5e11e9c99c7d298057719cc6b8c70cc3c3ce3c Mon Sep 17 00:00:00 2001 From: rdb Date: Sat, 28 Dec 2019 20:57:44 +0100 Subject: [PATCH] makepanda: add support for Windows 10.0.18362.0 SDK --- makepanda/makepandacore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makepanda/makepandacore.py b/makepanda/makepandacore.py index 324d1ee43d..01a50199a7 100644 --- a/makepanda/makepandacore.py +++ b/makepanda/makepandacore.py @@ -2853,7 +2853,7 @@ def SetupVisualStudioEnviron(): elif not win_kit.endswith('\\'): win_kit += '\\' - for vnum in 10150, 10240, 10586, 14393, 15063, 16299, 17134, 17763: + for vnum in 10150, 10240, 10586, 14393, 15063, 16299, 17134, 17763, 18362: version = "10.0.{0}.0".format(vnum) if os.path.isfile(win_kit + "Include\\" + version + "\\ucrt\\assert.h"): print("Using Universal CRT %s" % (version))