summaryrefslogtreecommitdiffstats
path: root/Tools/msi/exe/exe_pdb.wxs
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2015-02-14 18:30:54 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2015-02-14 18:30:54 (GMT)
commitcc115eea0c3399ee77b4576212bf29b7b018f1fd (patch)
treea03ef6b5982f4bfc68c086bf77c54f448088aa78 /Tools/msi/exe/exe_pdb.wxs
parent17be514d0a9a391461fbbdb06332d7b2b8273374 (diff)
downloadcpython-cc115eea0c3399ee77b4576212bf29b7b018f1fd.zip
cpython-cc115eea0c3399ee77b4576212bf29b7b018f1fd.tar.gz
cpython-cc115eea0c3399ee77b4576212bf29b7b018f1fd.tar.bz2
Simplify MSI projects.
Diffstat (limited to 'Tools/msi/exe/exe_pdb.wxs')
-rw-r--r--Tools/msi/exe/exe_pdb.wxs13
1 files changed, 13 insertions, 0 deletions
diff --git a/Tools/msi/exe/exe_pdb.wxs b/Tools/msi/exe/exe_pdb.wxs
new file mode 100644
index 0000000..5129ec0
--- /dev/null
+++ b/Tools/msi/exe/exe_pdb.wxs
@@ -0,0 +1,13 @@
+<?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="Symbols" AllowAdvertise="no" Title="!(loc.TitlePdb)" Description="!(loc.DescriptionPdb)">
+ <ComponentGroupRef Id="exe_python_symbols" />
+ </Feature>
+ </Product>
+</Wix>