Skip to content

Commit

Permalink
Also check for msvc_version 14.2
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinD42 committed Jun 17, 2020
1 parent 4d0b5f4 commit a4ae172
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wscript
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def configure(conf):
# Visual Studio 2017. However, waf is using "msvc 15.0" to designate
# that version rather than "14.1" so we'll need to catch that case and
# fix up the msvc_version accordingly.
if msvc_version == "14.1" and sys.version_info >= (3,7):
if msvc_version in ["14.1", "14.2"] and sys.version_info >= (3,7):
##msvc_version = '15.0'

# On the other hand, microsoft says that v141 and v140 (Visual
Expand Down

0 comments on commit a4ae172

Please sign in to comment.