summaryrefslogtreecommitdiffstats
path: root/Tools/msi/dev/dev_d.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/dev/dev_d.wxs
parent17be514d0a9a391461fbbdb06332d7b2b8273374 (diff)
downloadcpython-cc115eea0c3399ee77b4576212bf29b7b018f1fd.zip
cpython-cc115eea0c3399ee77b4576212bf29b7b018f1fd.tar.gz
cpython-cc115eea0c3399ee77b4576212bf29b7b018f1fd.tar.bz2
Simplify MSI projects.
Diffstat (limited to 'Tools/msi/dev/dev_d.wxs')
-rw-r--r--Tools/msi/dev/dev_d.wxs13
1 files changed, 13 insertions, 0 deletions
diff --git a/Tools/msi/dev/dev_d.wxs b/Tools/msi/dev/dev_d.wxs
new file mode 100644
index 0000000..c3cb2ea
--- /dev/null
+++ b/Tools/msi/dev/dev_d.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="DebugBinaries" AllowAdvertise="no" Title="!(loc.Title_d)" Description="!(loc.Description_d)">
+ <ComponentGroupRef Id="dev_libs_d" />
+ </Feature>
+ </Product>
+</Wix>