Fix compiler selection when building for Py34

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@76346 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2014-04-14 21:03:28 +00:00
parent 803bf67bd4
commit 774001b14b

View File

@@ -70,7 +70,8 @@ def configure(conf):
# Python to know what version of the compiler to use.
# TODO: Fix this
msvc_version = '9.0' #conf.options.msvc_ver
if conf.options.python and '33' in conf.options.python:
if conf.options.python and ('33' in conf.options.python or
'34' in conf.options.python):
msvc_version = '10.0'
conf.env['MSVC_VERSIONS'] = ['msvc ' + msvc_version]