Skip to content
Snippets Groups Projects
Commit 76e70a0d authored by Oz Linden's avatar Oz Linden
Browse files
parents 0b74df67 061c3a5a
No related branches found
No related tags found
No related merge requests found
...@@ -52,20 +52,22 @@ def get_HKLM_registry_value(key_str, value_str): ...@@ -52,20 +52,22 @@ def get_HKLM_registry_value(key_str, value_str):
def find_vc_dir(): def find_vc_dir():
supported_versions = (r'8.0', r'9.0') supported_versions = (r'8.0', r'9.0')
supported_products = (r'VisualStudio', r'VCExpress')
value_str = (r'ProductDir') value_str = (r'ProductDir')
for version in supported_versions: for product in supported_products:
key_str = (r'SOFTWARE\Microsoft\VisualStudio\%s\Setup\VC' % for version in supported_versions:
version) key_str = (r'SOFTWARE\Microsoft\%s\%s\Setup\VC' %
try: (product, version))
return get_HKLM_registry_value(key_str, value_str)
except WindowsError, err:
x64_key_str = (r'SOFTWARE\Wow6432Node\Microsoft\VisualStudio\%s\Setup\VS' %
version)
try: try:
return get_HKLM_registry_value(x64_key_str, value_str) return get_HKLM_registry_value(key_str, value_str)
except: except WindowsError, err:
print >> sys.stderr, "Didn't find MS VC version %s " % version x64_key_str = (r'SOFTWARE\Wow6432Node\Microsoft\VisualStudio\%s\Setup\VS' %
version)
try:
return get_HKLM_registry_value(x64_key_str, value_str)
except:
print >> sys.stderr, "Didn't find MS %s version %s " % (product,version)
raise raise
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment