Kaydet (Commit) 5ce2c589 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Look for Windows SDK v7.1, too

üst 2a2c05e9
......@@ -97,6 +97,10 @@ sub print_windows_sdk_home()
my ($value, $key);
$value = reg_get_value ('HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Microsoft SDKs/Windows/v6.1/InstallationFolder');
if (!defined $value)
{
$value = reg_get_value ('HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Microsoft SDKs/Windows/v7.1/InstallationFolder');
}
if (!defined $value)
{
$value = reg_get_value ('HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Microsoft SDKs/Windows/CurrentInstallFolder');
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment