blob: ddab83b5ea5ad400fd2a673e3e0e0a691e58d2b8 [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
10 <Feature Id="DefaultFeature" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)">
11 <ComponentGroupRef Id="doc" />
12
Steve Dowerdb80aec2015-02-11 17:49:01 -080013 <?ifdef DocFilename ?>
Steve Dowerbb240872015-02-05 22:08:48 -080014 <Component Id="doc_shortcut" Directory="MenuDir" Guid="*">
15 <RegistryKey Root="HKMU" Key="[REGISTRYKEY]">
16 <RegistryValue Key="Help\Main Python Documentation" Type="string" Value="[#python.chm]" KeyPath="yes" />
17 </RegistryKey>
18 <Shortcut Id="python.chm"
19 Target="[#python.chm]"
20 Name="!(loc.ShortcutName)"
21 Description="!(loc.ShortcutDescription)" />
22 <RemoveFolder Id="Remove_MenuDir" On="uninstall" />
23 </Component>
Steve Dowerdb80aec2015-02-11 17:49:01 -080024 <?endif ?>
Steve Dowerbb240872015-02-05 22:08:48 -080025
26 </Feature>
27 </Product>
28</Wix>