blob: d8b05e0f584eac85231367f4b2003d1d8bf1dfb7 [file] [log] [blame]
Steve Dowerbb240872015-02-05 22:08:48 -08001<?xml version="1.0" encoding="UTF-8"?>
2<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
3 <Product Id="*" Language="!(loc.LCID)" Name="!(loc.Title)" Version="$(var.Version)" Manufacturer="!(loc.Manufacturer)" UpgradeCode="$(var.UpgradeCode)">
4 <Package InstallerVersion="300" Compressed="yes" InstallScope="perUser" Platform="$(var.Platform)" />
5 <MediaTemplate EmbedCab="yes" CompressionLevel="high" />
6
7 <PropertyRef Id="UpgradeTable" />
8 <PropertyRef Id="REGISTRYKEY" />
9
Steve Dowerbb240872015-02-05 22:08:48 -080010 <Feature Id="DefaultFeature" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)">
Steve Dower1d4880d2015-05-03 14:54:32 -070011 <ComponentGroupRef Id="exe_python" Primary="yes" />
Steve Dowerbb240872015-02-05 22:08:48 -080012 <ComponentGroupRef Id="exe_txt" />
13 <ComponentGroupRef Id="exe_icons" />
Steve Dower1d4880d2015-05-03 14:54:32 -070014 </Feature>
Steve Dowerbb240872015-02-05 22:08:48 -080015
Steve Dower1d4880d2015-05-03 14:54:32 -070016 <Feature Id="Shortcuts" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)">
17 <ComponentGroupRef Id="exe_python" />
Steve Dowerbb240872015-02-05 22:08:48 -080018 <Component Id="exe_shortcut" Directory="MenuDir" Guid="*">
19 <Shortcut Id="python.exe"
20 Target="[#python.exe]"
21 Name="!(loc.ShortcutName)"
22 Description="!(loc.ShortcutDescription)" />
23 <RemoveFolder Id="Remove_MenuDir" Directory="MenuDir" On="uninstall" />
24 <RegistryKey Root="HKMU" Key="[REGISTRYKEY]">
Steve Dower1d4880d2015-05-03 14:54:32 -070025 <RegistryValue Key="InstallPath\InstallGroup" Type="string" Value="!(loc.ProductName)" KeyPath="yes" />
Steve Dowerbb240872015-02-05 22:08:48 -080026 </RegistryKey>
27 </Component>
28 </Feature>
Steve Dowerbb240872015-02-05 22:08:48 -080029 </Product>
30</Wix>