diff options
Diffstat (limited to 'scripts/Util.py')
-rw-r--r-- | scripts/Util.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/Util.py b/scripts/Util.py index 004421eb651..3551634125d 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -446,6 +446,8 @@ class Windows(Platform): self.compiler = "v141" elif out.find("Version 19.2") != -1: self.compiler = "v142" + elif out.find("Version 19.3") != -1: + self.compiler = "v143" else: raise RuntimeError("Unknown compiler version:\n{0}".format(out)) except: |