• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="UTF-8"?>
2<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
3    <Fragment>
4        <ComponentGroup Id="tkinter_extension">
5            <Component Id="_tkinter.pyd" Directory="DLLs" Guid="*">
6                <File Name="_tkinter.pyd" KeyPath="yes" />
7            </Component>
8        </ComponentGroup>
9        <ComponentGroup Id="tcltk_dlls">
10            <Component Id="_tkinter.lib" Directory="libs" Guid="*">
11                <File Name="_tkinter.lib" KeyPath="yes" />
12            </Component>
13            <Component Id="tcl86t.dll" Directory="DLLs" Guid="*">
14                <File Name="tcl86t.dll" KeyPath="yes" />
15            </Component>
16            <Component Id="tk86t.dll" Directory="DLLs" Guid="*">
17                <File Name="tk86t.dll" KeyPath="yes" />
18            </Component>
19            <Component Id="zlib1.dll" Directory="DLLs" Guid="*">
20                <File Name="zlib1.dll" KeyPath="yes" />
21            </Component>
22        </ComponentGroup>
23    </Fragment>
24
25    <Fragment>
26        <ComponentGroup Id="tkinter_extension_symbols">
27            <Component Id="_tkinter.pdb" Directory="DLLs" Guid="*">
28                <File Name="_tkinter.pdb" />
29            </Component>
30        </ComponentGroup>
31    </Fragment>
32
33    <Fragment>
34        <ComponentGroup Id="tkinter_extension_d">
35            <Component Id="_tkinter_d.pyd" Directory="DLLs" Guid="*">
36                <File Name="_tkinter_d.pyd" />
37            </Component>
38            <Component Id="_tkinter_d.lib" Directory="DLLs" Guid="*">
39                <File Name="_tkinter_d.lib" />
40            </Component>
41            <Component Id="_tkinter_d.pdb" Directory="DLLs" Guid="*">
42                <File Name="_tkinter_d.pdb" />
43            </Component>
44        </ComponentGroup>
45    </Fragment>
46</Wix>
47