From: Robin Dunn Date: Fri, 22 Feb 2013 05:59:42 +0000 (+0000) Subject: Add version check for MSVC 10 X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/2e59a53a5973d8da4155eb8481ac29e82d7e152f Add version check for MSVC 10 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73552 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/build/tools/build-wxwidgets.py b/build/tools/build-wxwidgets.py index 6c651e2f61..c2974ea31b 100755 --- a/build/tools/build-wxwidgets.py +++ b/build/tools/build-wxwidgets.py @@ -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'