diff options
author | Steve Dower <steve.dower@microsoft.com> | 2016-08-16 01:58:29 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2016-08-16 01:58:29 (GMT) |
commit | 0e6d0dcd0ba67733857f2e4078b9c4030462586f (patch) | |
tree | f5db1b39aaf63d73cb9002f4bc40d9c51057ed45 /Tools | |
parent | 02d03dfab1fc0b41c5afed862d9f659e733283d6 (diff) | |
download | cpython-0e6d0dcd0ba67733857f2e4078b9c4030462586f.zip cpython-0e6d0dcd0ba67733857f2e4078b9c4030462586f.tar.gz cpython-0e6d0dcd0ba67733857f2e4078b9c4030462586f.tar.bz2 |
Adds missing file to installer.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/msi/exe/exe_reg.wxs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Tools/msi/exe/exe_reg.wxs b/Tools/msi/exe/exe_reg.wxs new file mode 100644 index 0000000..4443c21 --- /dev/null +++ b/Tools/msi/exe/exe_reg.wxs @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8"?> +<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> + <Fragment> + <PropertyRef Id="ROOTREGISTRYKEY" /> + <PropertyRef Id="REGISTRYKEY" /> + + <ComponentGroup Id="exe_reg"> + <Component Id="CommonPythonRegistration" Directory="InstallDirectory" Guid="$(var.CommonPythonRegComponentGuid)"> + <RegistryKey Root="HKMU" Key="[ROOTREGISTRYKEY]"> + <RegistryValue Name="DisplayName" Type="string" Value="!(loc.Manufacturer)" KeyPath="yes" /> + <RegistryValue Name="SupportUrl" Type="string" Value="!(loc.ManufacturerSupportUrl)" KeyPath="no" /> + </RegistryKey> + </Component> + <Component Id="PythonRegistration" Directory="InstallDirectory" Guid="$(var.PythonRegComponentGuid)"> + <RegistryKey Root="HKMU" Key="[REGISTRYKEY]"> + <RegistryValue Name="DisplayName" Type="string" Value="!(loc.ShortcutName)" KeyPath="yes" /> + <RegistryValue Name="SupportUrl" Type="string" Value="!(loc.SupportUrl)" KeyPath="no" /> + <RegistryValue Name="Version" Type="string" Value="$(var.LongVersion)" KeyPath="no" /> + <RegistryValue Name="SysVersion" Type="string" Value="$(var.ShortVersion)" KeyPath="no" /> + <RegistryValue Name="SysArchitecture" Type="string" Value="$(var.PlatformArchitecture)" KeyPath="no" /> + </RegistryKey> + </Component> + </ComponentGroup> + </Fragment> +</Wix> |