summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scripts/Util.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/Util.py b/scripts/Util.py
index beb0ddc883a..a8ee573f020 100644
--- a/scripts/Util.py
+++ b/scripts/Util.py
@@ -398,8 +398,10 @@ class Windows(Platform):
self.compiler = "v120"
elif out.find("Version 19.00.") != -1:
self.compiler = "v140"
- elif out.find("Version 19.") != -1:
+ elif out.find("Version 19.1") != -1:
self.compiler = "v141"
+ elif out.find("Version 19.2") != -1:
+ self.compiler = "v142"
else:
raise RuntimeError("Unknown compiler version:\n{0}".format(out))
except: