diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-03-04 23:20:23 -0500 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-03-04 23:20:23 -0500 |
commit | 883a901eee10bb7a6baec6240b7392ea00fe70ef (patch) | |
tree | 062eeca7c35197c66b0ef7404cde43cdc08368ab /Tools/msi/tcltk/tcltk_d.wxs | |
parent | ca7f55b31aee3406d3c89399870e83df923008aa (diff) | |
parent | 7097636d319a0bee6f9578cde25d99d8961474c3 (diff) | |
download | cpython-883a901eee10bb7a6baec6240b7392ea00fe70ef.tar.gz |
merge 3.4
Diffstat (limited to 'Tools/msi/tcltk/tcltk_d.wxs')
-rw-r--r-- | Tools/msi/tcltk/tcltk_d.wxs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Tools/msi/tcltk/tcltk_d.wxs b/Tools/msi/tcltk/tcltk_d.wxs new file mode 100644 index 0000000000..7f5048f04a --- /dev/null +++ b/Tools/msi/tcltk/tcltk_d.wxs @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> + <Product Id="*" Language="!(loc.LCID)" Name="!(loc.Title)" Version="$(var.Version)" Manufacturer="!(loc.Manufacturer)" UpgradeCode="$(var.UpgradeCode)"> + <Package InstallerVersion="300" Compressed="yes" InstallScope="perUser" Platform="$(var.Platform)" /> + <MediaTemplate EmbedCab="yes" CompressionLevel="high" /> + + <PropertyRef Id="UpgradeTable" /> + + <Feature Id="DebugBinaries" AllowAdvertise="no" Title="!(loc.Title_d)" Description="!(loc.Description_d)"> + <ComponentGroupRef Id="tkinter_extension_d" /> + <ComponentGroupRef Id="tcltk_dlls_d" /> + </Feature> + </Product> +</Wix> |