From: José Fonseca Date: Mon, 13 Apr 2009 12:23:50 +0000 (+0100) Subject: Allow to choose the MSVS version. X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=5046972596f79f6686677fc0721357fd59fd4d62;p=apitrace Allow to choose the MSVS version. --- diff --git a/SConstruct b/SConstruct index e70d4f7..54a2139 100644 --- a/SConstruct +++ b/SConstruct @@ -24,6 +24,7 @@ import sys opts = Options('config.py') opts.Add(BoolOption('debug', 'build debug version', 'no')) opts.Add(PathOption('dxsdk', 'DirectX SDK installation dir', os.environ.get('DXSDK_DIR', 'C:\\DXSDK'))) +opts.Add(EnumOption('MSVS_VERSION', 'Microsoft Visual Studio version', None, allowed_values=('7.1', '8.0', '9.0'))) env = Environment( options = opts,