Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Archive
Alchemy Viewer
Commits
0e047070
Commit
0e047070
authored
16 years ago
by
Bryan O'Sullivan
Browse files
Options
Downloads
Patches
Plain Diff
Autodetect an installed version of Visual Studio.
Reviewed by Palange.
parent
c955963a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
indra/develop.py
+54
-31
54 additions, 31 deletions
indra/develop.py
with
54 additions
and
31 deletions
indra/develop.py
+
54
−
31
View file @
0e047070
...
...
@@ -397,29 +397,46 @@ class DarwinSetup(UnixSetup):
class
WindowsSetup
(
PlatformSetup
):
def
__init__
(
self
):
super
(
WindowsSetup
,
self
).
__init__
()
self
.
gens
=
{
'
vc71
'
:
{
'
gen
'
:
r
'
Visual Studio 7 .NET 2003
'
,
'
ver
'
:
r
'
7.1
'
},
'
vc80
'
:
{
'
gen
'
:
r
'
Visual Studio 8 2005
'
,
'
ver
'
:
r
'
8.0
'
},
'
vc90
'
:
{
'
gen
'
:
r
'
Visual Studio 9 2008
'
,
'
ver
'
:
r
'
9.0
'
}
gens
=
{
'
vc71
'
:
{
'
gen
'
:
r
'
Visual Studio 7 .NET 2003
'
,
'
ver
'
:
r
'
7.1
'
},
'
vc80
'
:
{
'
gen
'
:
r
'
Visual Studio 8 2005
'
,
'
ver
'
:
r
'
8.0
'
},
'
vc90
'
:
{
'
gen
'
:
r
'
Visual Studio 9 2008
'
,
'
ver
'
:
r
'
9.0
'
}
self
.
gens
[
'
vs2003
'
]
=
self
.
gens
[
'
vc71
'
]
self
.
gens
[
'
vs2005
'
]
=
self
.
gens
[
'
vc80
'
]
self
.
gens
[
'
vs2008
'
]
=
self
.
gens
[
'
vc90
'
]
}
gens
[
'
vs2003
'
]
=
gens
[
'
vc71
'
]
gens
[
'
vs2005
'
]
=
gens
[
'
vc80
'
]
gens
[
'
vs2008
'
]
=
gens
[
'
vc90
'
]
self
.
generator
=
'
vc71
'
def
__init__
(
self
):
super
(
WindowsSetup
,
self
).
__init__
()
self
.
_generator
=
None
self
.
incredibuild
=
False
def
_get_generator
(
self
):
if
self
.
_generator
is
None
:
for
version
in
'
vc71 vc80 vc90
'
.
split
():
if
self
.
find_visual_studio
(
version
):
self
.
_generator
=
version
print
'
Building with
'
,
self
.
gens
[
version
][
'
gen
'
]
break
else
:
print
>>
sys
.
stderr
,
'
Cannot find a Visual Studio installation!
'
eys
.
exit
(
1
)
return
self
.
_generator
def
_set_generator
(
self
,
gen
):
self
.
_generator
=
gen
generator
=
property
(
_get_generator
,
_set_generator
)
def
os
(
self
):
return
'
win32
'
...
...
@@ -441,19 +458,14 @@ class WindowsSetup(PlatformSetup):
'
-DUNATTENDED:BOOL=%(unattended)s
'
'
%(opts)s
"
%(dir)s
"'
%
args
)
def
get_build_cmd
(
self
):
if
self
.
incredibuild
:
config
=
self
.
build_type
if
self
.
gens
[
self
.
generator
][
'
ver
'
]
in
[
r
'
8.0
'
,
r
'
9.0
'
]:
config
=
'
\"
%s|Win32
\"
'
%
config
return
"
buildconsole Secondlife.sln /build %s
"
%
config
value
=
""
def
find_visual_studio
(
self
,
gen
=
None
):
if
gen
is
None
:
gen
=
self
.
_generator
gen
=
gen
.
lower
()
try
:
import
_winreg
key_str
=
(
r
'
SOFTWARE\Microsoft\VisualStudio\%s\Setup\VS
'
%
self
.
gens
[
self
.
generator
.
lower
()
][
'
ver
'
])
self
.
gens
[
gen
][
'
ver
'
])
value_str
=
(
r
'
EnvironmentDirectory
'
)
print
(
'
Reading VS environment from HKEY_LOCAL_MACHINE\%s\%s
'
%
(
key_str
,
value_str
))
...
...
@@ -463,11 +475,22 @@ class WindowsSetup(PlatformSetup):
key
=
_winreg
.
OpenKey
(
reg
,
key_str
)
value
=
_winreg
.
QueryValueEx
(
key
,
value_str
)[
0
]
print
'
Found: %s
'
%
value
return
value
except
WindowsError
,
err
:
print
"
Didn
'
t find Visual Studio installation.
"
print
>>
sys
.
stderr
,
"
Didn
'
t find
"
,
self
.
gens
[
gen
][
'
name
'
]
return
''
def
get_build_cmd
(
self
):
if
self
.
incredibuild
:
config
=
self
.
build_type
if
self
.
gens
[
self
.
generator
][
'
ver
'
]
in
[
r
'
8.0
'
,
r
'
9.0
'
]:
config
=
'
\"
%s|Win32
\"
'
%
config
return
"
buildconsole Secondlife.sln /build %s
"
%
config
# devenv.com is CLI friendly, devenv.exe... not so much.
return
'"'
+
value
+
'
devenv.com
"
Secondlife.sln /build %s
'
%
self
.
build_type
return
(
'"
%sdevenv.com
"
Secondlife.sln /build %s
'
%
(
self
.
find_visual_studio
(),
self
.
build_type
))
# this override of run exists because the PlatformSetup version
# uses Unix/Mac only calls. Freakin' os module!
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment