From: Thomas Sondergaard Date: Tue, 7 Jan 2014 20:31:00 +0000 (-0700) Subject: mesa: Preliminary support for MSVC_VERSION=12.0 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=20e65c92c760404560be629354999314632f8674;p=mesa.git mesa: Preliminary support for MSVC_VERSION=12.0 Cc: "10.0" Reviewed-by: Brian Paul --- 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')))