diff options
author | Mark Palange (Mani) <palange@lindenlab.com> | 2011-01-13 14:28:03 -0800 |
---|---|---|
committer | Mark Palange (Mani) <palange@lindenlab.com> | 2011-01-13 14:28:03 -0800 |
commit | 1c1bee24d7aefdda1d4dcf66f80c1dabe7e72152 (patch) | |
tree | 907ddb8dec7234731ee463907e04741e566701a0 /indra | |
parent | cc3f0d287c7edb9e4cfe18985f2758e815502440 (diff) |
Added vc10, removed vc90 and vc71 from supported vc versions
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/develop.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/indra/develop.py b/indra/develop.py index 36c947327a..c88c8a9d06 100755 --- a/indra/develop.py +++ b/indra/develop.py @@ -477,11 +477,16 @@ class WindowsSetup(PlatformSetup): 'vc90' : { 'gen' : r'Visual Studio 9 2008', 'ver' : r'9.0' + }, + 'vc10' : { + 'gen' : r'Visual Studio 10', + 'ver' : r'10.0' } } gens['vs2003'] = gens['vc71'] gens['vs2005'] = gens['vc80'] gens['vs2008'] = gens['vc90'] + gens['vs2010'] = gens['vc10'] search_path = r'C:\windows' exe_suffixes = ('.exe', '.bat', '.com') @@ -493,7 +498,7 @@ class WindowsSetup(PlatformSetup): def _get_generator(self): if self._generator is None: - for version in 'vc80 vc90 vc71'.split(): + for version in 'vc10 vc80'.split(): if self.find_visual_studio(version): self._generator = version print 'Building with ', self.gens[version]['gen'] |