blob: 306fb11dc661953243720e2010114e0dd718ca08 [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 Dowerfb4a96a2016-09-22 17:07:56 -070010 <Property Id="HHExe" Value="C:\Windows\hh.exe" />
11 <CustomAction Id="SetHHExe" Property="HHCExe" Value='[WindowsFolder]\hh.exe' Execute="immediate" />
12 <InstallExecuteSequence>
13 <Custom Action="SetHHExe" Before="CostFinalize">1</Custom>
14 </InstallExecuteSequence>
15
Steve Dowerbb240872015-02-05 22:08:48 -080016 <Feature Id="DefaultFeature" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)">
Steve Dower1d4880d2015-05-03 14:54:32 -070017 <ComponentGroupRef Id="doc" Primary="yes" />
Steve Dower49437492015-07-08 20:18:44 -070018 <ComponentRef Id="OptionalFeature" />
Steve Dower1d4880d2015-05-03 14:54:32 -070019 </Feature>
20 <Feature Id="Shortcuts" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)">
Steve Dowerbb240872015-02-05 22:08:48 -080021 <ComponentGroupRef Id="doc" />
22
Steve Dowerdb80aec2015-02-11 17:49:01 -080023 <?ifdef DocFilename ?>
Steve Dowerbb240872015-02-05 22:08:48 -080024 <Component Id="doc_shortcut" Directory="MenuDir" Guid="*">
Steve Dower49437492015-07-08 20:18:44 -070025 <RegistryKey Root="HKMU" Key="[OPTIONALFEATURESREGISTRYKEY]">
26 <RegistryValue Name="$(var.OptionalFeatureName)_shortcut" Type="string" Value="$(var.Version)" KeyPath="yes" />
27 </RegistryKey>
Steve Dowerbb240872015-02-05 22:08:48 -080028 <Shortcut Id="python.chm"
Steve Dowerfb4a96a2016-09-22 17:07:56 -070029 Target="[HHExe]"
30 Arguments="[#python.chm]"
Steve Dowerbb240872015-02-05 22:08:48 -080031 Name="!(loc.ShortcutName)"
Steve Dower04a43162015-10-31 12:41:46 -070032 Description="!(loc.ShortcutDescription)"
Steve Dowerfb4a96a2016-09-22 17:07:56 -070033 WorkingDirectory="InstallDirectory"
34 Show="maximized" />
Steve Dowerbb240872015-02-05 22:08:48 -080035 <RemoveFolder Id="Remove_MenuDir" On="uninstall" />
36 </Component>
Steve Dowerdb80aec2015-02-11 17:49:01 -080037 <?endif ?>
Steve Dowerbb240872015-02-05 22:08:48 -080038
39 </Feature>
40 </Product>
41</Wix>