summaryrefslogtreecommitdiff
path: root/Tools/msi/tcltk/tcltk_files.wxs
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-10-10 10:15:21 +0000
committerMartin Panter <vadmium+py@gmail.com>2015-10-10 10:15:21 +0000
commitb4c49a7b40ae96dbdc079b40b6c317bd2cbdeb55 (patch)
tree450aeb71ba9d9118732554bb4a7a4a22edc3734d /Tools/msi/tcltk/tcltk_files.wxs
parente013b9445b6f9caab1eb30b7785e3690d1bab4df (diff)
parentb98a5f90775e5f59662e452b3b31e0c07efa3d2c (diff)
downloadcpython-b4c49a7b40ae96dbdc079b40b6c317bd2cbdeb55.tar.gz
Issue #22413: Merge StringIO doc from 3.4 into 3.5
Diffstat (limited to 'Tools/msi/tcltk/tcltk_files.wxs')
-rw-r--r--Tools/msi/tcltk/tcltk_files.wxs35
1 files changed, 35 insertions, 0 deletions
diff --git a/Tools/msi/tcltk/tcltk_files.wxs b/Tools/msi/tcltk/tcltk_files.wxs
new file mode 100644
index 0000000000..0d1b4a93a3
--- /dev/null
+++ b/Tools/msi/tcltk/tcltk_files.wxs
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
+ <Fragment>
+ <ComponentGroup Id="tkinter_extension">
+ <Component Id="_tkinter.pyd" Directory="DLLs" Guid="*">
+ <File Name="_tkinter.pyd" KeyPath="yes" />
+ </Component>
+ <Component Id="_tkinter.lib" Directory="libs" Guid="*">
+ <File Name="_tkinter.lib" KeyPath="yes" />
+ </Component>
+ </ComponentGroup>
+ </Fragment>
+
+ <Fragment>
+ <ComponentGroup Id="tkinter_extension_symbols">
+ <Component Id="_tkinter.pdb" Directory="DLLs" Guid="*">
+ <File Name="_tkinter.pdb" />
+ </Component>
+ </ComponentGroup>
+ </Fragment>
+
+ <Fragment>
+ <ComponentGroup Id="tkinter_extension_d">
+ <Component Id="_tkinter_d.pyd" Directory="DLLs" Guid="*">
+ <File Name="_tkinter_d.pyd" />
+ </Component>
+ <Component Id="_tkinter_d.lib" Directory="DLLs" Guid="*">
+ <File Name="_tkinter_d.lib" />
+ </Component>
+ <Component Id="_tkinter_d.pdb" Directory="DLLs" Guid="*">
+ <File Name="_tkinter_d.pdb" />
+ </Component>
+ </ComponentGroup>
+ </Fragment>
+</Wix>