mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-06 20:10:08 +01:00
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:
3
wscript
3
wscript
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user