summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2013-03-12 20:33:38 +0000
committerAndreas Boll <andreas.boll.dev@gmail.com>2013-04-17 13:32:15 +0200
commit6dee3bd549c1c6506eab63dcd44d23e2bc3969da (patch)
tree02b2b228fc3d67a1a7f19b052d962f5c7ae6f202
parent41cd5e8de1d8c6c31a6eb2ae49226ffddab575c2 (diff)
scons: Allows choosing VS 10 or 11.
NOTE: Candidate for the stable branches. Reviewed-by: Brian Paul <brianp@vmware.com> (cherry picked from commit 96b3ca89b153f358de74059151d2b0e8bd884dfa)
-rw-r--r--common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/common.py b/common.py
index 6ff9608c41..1d618e675a 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('MSVS_VERSION', 'MS Visual C++ version', None, allowed_values=('7.1', '8.0', '9.0')))
+ opts.Add(EnumOption('MSVC_VERSION', 'MS Visual C++ version', None, allowed_values=('7.1', '8.0', '9.0', '10.0', '11.0')))