• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="UTF-8"?>
2<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
3    <Fragment>
4        <PropertyRef Id="REGISTRYKEY" />
5
6        <ComponentGroup Id="doc">
7            <Component Id="python.chm" Directory="Doc" Guid="*">
8                <File Id="python.chm" Name="$(var.DocFilename)" KeyPath="yes" />
9                <RegistryKey Root="HKMU" Key="[REGISTRYKEY]">
10                    <RegistryValue Key="Help\Main Python Documentation" Type="string" Value="[#python.chm]" />
11                </RegistryKey>
12            </Component>
13        </ComponentGroup>
14    </Fragment>
15</Wix>
16