Steve Dower | bb24087 | 2015-02-05 22:08:48 -0800 | [diff] [blame^] | 1 | <?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 | |
| 18 | <?ifdef IncludeDefaultFeature ?> |
| 19 | <Feature Id="DefaultFeature" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)"> |
| 20 | <ComponentGroupRef Id="tkinter_extension" /> |
| 21 | <ComponentGroupRef Id="tcltk_dlls" /> |
| 22 | <ComponentGroupRef Id="tcltk_lib" /> |
| 23 | <ComponentGroupRef Id="tkinter_lib" /> |
| 24 | |
| 25 | <Component Id="idle_shortcut" Directory="MenuDir"> |
| 26 | <RegistryValue KeyPath="yes" Root="HKMU" Key="[REGISTRYKEY]\Idle" Type="string" Value="[#Lib_idlelib_idle.pyw]" /> |
| 27 | <RemoveFolder Id="Remove_MenuDir" On="uninstall" /> |
| 28 | |
| 29 | <Shortcut Id="IDLE" |
| 30 | Directory="MenuDir" |
| 31 | Name="!(loc.ShortcutName)" |
| 32 | Description="!(loc.ShortcutDescription)" |
| 33 | Target="[PYTHON_EXE]" |
| 34 | Arguments='"[#Lib_idlelib_idle.pyw]"' |
| 35 | Icon="idle.exe"> |
| 36 | <Icon Id="idle.exe" SourceFile="!(bindpath.src)Lib\idlelib\Icons\idle.ico" /> |
| 37 | </Shortcut> |
| 38 | </Component> |
| 39 | </Feature> |
| 40 | <?endif ?> |
| 41 | <?ifdef IncludeSymbols ?> |
| 42 | <Feature Id="Symbols" AllowAdvertise="no" Title="!(loc.TitlePdb)" Description="!(loc.DescriptionPdb)"> |
| 43 | <ComponentGroupRef Id="tkinter_extension_symbols" /> |
| 44 | </Feature> |
| 45 | <?endif ?> |
| 46 | <?ifdef IncludeDebugBinaries ?> |
| 47 | <Feature Id="DebugBinaries" AllowAdvertise="no" Title="!(loc.Title_d)" Description="!(loc.Description_d)"> |
| 48 | <ComponentGroupRef Id="tkinter_extension_d" /> |
| 49 | <ComponentGroupRef Id="tcltk_dlls_d" /> |
| 50 | </Feature> |
| 51 | <?endif ?> |
| 52 | </Product> |
| 53 | </Wix> |