blob: 819fccb9c32a3cf0ebde814b54b18c3c7f35ebd9 [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 <Property Id="PYTHON_EXE" Secure="yes">
11 <ComponentSearch Id="PythonExe" Guid="$(var.PythonwExeComponentGuid)">
12 <FileSearch Name="pythonw.exe" />
13 </ComponentSearch>
14 </Property>
15
16 <Condition Message="!(loc.NoPython)">PYTHON_EXE</Condition>
17
Steve Dowerbb240872015-02-05 22:08:48 -080018 <Feature Id="DefaultFeature" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)">
19 <ComponentGroupRef Id="tkinter_extension" />
20 <ComponentGroupRef Id="tcltk_dlls" />
21 <ComponentGroupRef Id="tcltk_lib" />
22 <ComponentGroupRef Id="tkinter_lib" />
23
24 <Component Id="idle_shortcut" Directory="MenuDir">
25 <RegistryValue KeyPath="yes" Root="HKMU" Key="[REGISTRYKEY]\Idle" Type="string" Value="[#Lib_idlelib_idle.pyw]" />
26 <RemoveFolder Id="Remove_MenuDir" On="uninstall" />
27
28 <Shortcut Id="IDLE"
29 Directory="MenuDir"
30 Name="!(loc.ShortcutName)"
31 Description="!(loc.ShortcutDescription)"
32 Target="[PYTHON_EXE]"
33 Arguments='"[#Lib_idlelib_idle.pyw]"'
34 Icon="idle.exe">
35 <Icon Id="idle.exe" SourceFile="!(bindpath.src)Lib\idlelib\Icons\idle.ico" />
36 </Shortcut>
37 </Component>
38 </Feature>
Steve Dowerbb240872015-02-05 22:08:48 -080039 </Product>
40</Wix>