diff options
author | Thomas Sondergaard <[email protected]> | 2014-01-07 13:31:00 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2014-01-08 17:33:06 -0700 |
commit | 20e65c92c760404560be629354999314632f8674 (patch) | |
tree | 3b9c8f6b493934a616906136d6a707c6153406be /common.py | |
parent | 646c16af6e23184078995bcd3fc3db00b7c21250 (diff) |
mesa: Preliminary support for MSVC_VERSION=12.0
Cc: "10.0" <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'common.py')
-rw-r--r-- | common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common.py b/common.py index 1d618e675af..22c17257157 100644 --- a/common.py +++ b/common.py @@ -100,4 +100,4 @@ def AddOptions(opts): opts.Add(BoolOption('quiet', 'DEPRECATED: profile build', 'yes')) opts.Add(BoolOption('texture_float', 'enable floating-point textures and renderbuffers', 'no')) if host_platform == 'windows': - opts.Add(EnumOption('MSVC_VERSION', 'MS Visual C++ version', None, allowed_values=('7.1', '8.0', '9.0', '10.0', '11.0'))) + opts.Add(EnumOption('MSVC_VERSION', 'MS Visual C++ version', None, allowed_values=('7.1', '8.0', '9.0', '10.0', '11.0', '12.0'))) |