author | Gregory Szorc <gregory.szorc@gmail.com> |
Thu, 14 Mar 2019 18:11:22 -0700 | |
changeset 41957 | 131d0b7c3940 |
parent 41955 | 9661a9c0695e |
permissions | -rw-r--r-- |
13041
79388a8325dc
wix: switch Mercurial Windows installer to use py2exe --bundle 3
Steve Borho <steve@borho.org>
parents:
diff
changeset
|
1 |
<?xml version="1.0" encoding="utf-8"?> |
79388a8325dc
wix: switch Mercurial Windows installer to use py2exe --bundle 3
Steve Borho <steve@borho.org>
parents:
diff
changeset
|
2 |
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> |
79388a8325dc
wix: switch Mercurial Windows installer to use py2exe --bundle 3
Steve Borho <steve@borho.org>
parents:
diff
changeset
|
3 |
|
79388a8325dc
wix: switch Mercurial Windows installer to use py2exe --bundle 3
Steve Borho <steve@borho.org>
parents:
diff
changeset
|
4 |
<?include guids.wxi ?> |
13042
bd9bc4123920
wix: add support for x64 native MSI packages
Steve Borho <steve@borho.org>
parents:
13041
diff
changeset
|
5 |
<?include defines.wxi ?> |
13041
79388a8325dc
wix: switch Mercurial Windows installer to use py2exe --bundle 3
Steve Borho <steve@borho.org>
parents:
diff
changeset
|
6 |
|
79388a8325dc
wix: switch Mercurial Windows installer to use py2exe --bundle 3
Steve Borho <steve@borho.org>
parents:
diff
changeset
|
7 |
<Fragment> |
79388a8325dc
wix: switch Mercurial Windows installer to use py2exe --bundle 3
Steve Borho <steve@borho.org>
parents:
diff
changeset
|
8 |
<DirectoryRef Id="INSTALLDIR" FileSource="$(var.SourceDir)"> |
13042
bd9bc4123920
wix: add support for x64 native MSI packages
Steve Borho <steve@borho.org>
parents:
13041
diff
changeset
|
9 |
<Component Id="distOutput" Guid="$(var.dist.guid)" Win64='$(var.IsX64)'> |
25409
95e042d77a5f
wix: move library.zip and all *.pyd into a lib/ folder
Steve Borho <steve@borho.org>
parents:
17389
diff
changeset
|
10 |
<File Name="python27.dll" KeyPath="yes" /> |
13041
79388a8325dc
wix: switch Mercurial Windows installer to use py2exe --bundle 3
Steve Borho <steve@borho.org>
parents:
diff
changeset
|
11 |
</Component> |
79388a8325dc
wix: switch Mercurial Windows installer to use py2exe --bundle 3
Steve Borho <steve@borho.org>
parents:
diff
changeset
|
12 |
</DirectoryRef> |
79388a8325dc
wix: switch Mercurial Windows installer to use py2exe --bundle 3
Steve Borho <steve@borho.org>
parents:
diff
changeset
|
13 |
</Fragment> |
79388a8325dc
wix: switch Mercurial Windows installer to use py2exe --bundle 3
Steve Borho <steve@borho.org>
parents:
diff
changeset
|
14 |
|
79388a8325dc
wix: switch Mercurial Windows installer to use py2exe --bundle 3
Steve Borho <steve@borho.org>
parents:
diff
changeset
|
15 |
</Wix> |