]> git.saurik.com Git - wxWidgets.git/commitdiff
Add version check for MSVC 10
authorRobin Dunn <robin@alldunn.com>
Fri, 22 Feb 2013 05:59:42 +0000 (05:59 +0000)
committerRobin Dunn <robin@alldunn.com>
Fri, 22 Feb 2013 05:59:42 +0000 (05:59 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73552 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

build/tools/build-wxwidgets.py

index 6c651e2f61f332b5e0010f6ccab570d5e7876d13..c2974ea31bece0e31106d949c6d03b680538035d 100755 (executable)
@@ -64,6 +64,8 @@ def getVisCVersion():
         return '71'
     if 'Version 15' in text:
         return '90'
+    if 'Version 16' in text:
+        return '100'
     # TODO: Add more tests to get the other versions...
     else:
         return 'FIXME'