From: José Fonseca Date: Fri, 23 Jan 2009 16:25:37 +0000 (+0000) Subject: scons: Allow to specify the MSVS version on command line. X-Git-Tag: 062012170305~17580^2~496^2~92 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=de29f5781ad9f3630b28f341bb41622a090cd8dc;p=profile%2Fivi%2Fmesa.git scons: Allow to specify the MSVS version on command line. --- diff --git a/scons/generic.py b/scons/generic.py index 0ed21a4..7ded920 100644 --- a/scons/generic.py +++ b/scons/generic.py @@ -239,6 +239,11 @@ def generate(env): if env['toolchain'] == 'crossmingw' and env['machine'] not in ('generic', 'x86'): env['machine'] = 'x86' + try: + env['MSVS_VERSION'] = ARGUMENTS['MSVS_VERSION'] + except KeyError: + pass + # Build type env['debug'] = _bool_map[ARGUMENTS.get('debug', 'no')] env['profile'] = _bool_map[ARGUMENTS.get('profile', 'no')]