Fix sconscript syntax error when using python 2.x instead of 3.x.

This commit is contained in:
Brecht Van Lommel 2014-01-29 14:50:20 +01:00
parent ac27a1a0f6
commit 44cb138cf2
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ elif env['OURPLATFORM'] == 'win64-vc':
kernel_flags['sse2'] = '-D_CRT_SECURE_NO_WARNINGS /fp:fast /Ox /Gs-'
kernel_flags['sse3'] = kernel_flags['sse2']
if env['MSVC_VERSION'] in {'11.0', '12.0'}:
if env['MSVC_VERSION'] in ('11.0', '12.0'):
kernel_flags['sse41'] = kernel_flags['sse3']
kernel_flags['avx'] = kernel_flags['sse41'] + ' /arch:AVX'
else: