diff options
author | José Fonseca <jfonseca@vmware.com> | 2010-12-01 12:20:58 +0000 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2010-12-01 12:23:12 +0000 |
commit | 792caebced5f8f6dbd7bf23aa8d94230aa786d00 (patch) | |
tree | ea8fb197d7c9efd5fff4d3161ff81b521e50e19f /common.py | |
parent | 2aa32036609b986e5db2fb9e0549419ce1ff1e7c (diff) |
scons: Move MSVS_VERSION option to common module.
Diffstat (limited to 'common.py')
-rw-r--r-- | common.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common.py b/common.py index b7749c925dfc..78e2d0fb24f1 100644 --- a/common.py +++ b/common.py @@ -91,3 +91,4 @@ def AddOptions(opts): opts.Add(BoolOption('llvm', 'use LLVM', default_llvm)) opts.Add(BoolOption('debug', 'DEPRECATED: debug build', 'yes')) opts.Add(BoolOption('profile', 'DEPRECATED: profile build', 'no')) + opts.Add(EnumOption('MSVS_VERSION', 'MS Visual C++ version', None, allowed_values=('7.1', '8.0', '9.0'))) |