##// END OF EJS Templates
wix: bump MSI based installers to use Python 2.7...
Steve Borho -
r17389:59581b66 stable
parent child Browse files
Show More
@@ -1,31 +1,31 b''
1 <?xml version="1.0" encoding="utf-8"?>
1 <?xml version="1.0" encoding="utf-8"?>
2 <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
2 <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
3
3
4 <?include guids.wxi ?>
4 <?include guids.wxi ?>
5 <?include defines.wxi ?>
5 <?include defines.wxi ?>
6
6
7 <Fragment>
7 <Fragment>
8 <DirectoryRef Id="INSTALLDIR" FileSource="$(var.SourceDir)">
8 <DirectoryRef Id="INSTALLDIR" FileSource="$(var.SourceDir)">
9 <Component Id="distOutput" Guid="$(var.dist.guid)" Win64='$(var.IsX64)'>
9 <Component Id="distOutput" Guid="$(var.dist.guid)" Win64='$(var.IsX64)'>
10 <File Name="library.zip" KeyPath="yes" />
10 <File Name="library.zip" KeyPath="yes" />
11 <File Name="mercurial.base85.pyd" />
11 <File Name="mercurial.base85.pyd" />
12 <File Name="mercurial.bdiff.pyd" />
12 <File Name="mercurial.bdiff.pyd" />
13 <File Name="mercurial.diffhelpers.pyd" />
13 <File Name="mercurial.diffhelpers.pyd" />
14 <File Name="mercurial.mpatch.pyd" />
14 <File Name="mercurial.mpatch.pyd" />
15 <File Name="mercurial.osutil.pyd" />
15 <File Name="mercurial.osutil.pyd" />
16 <File Name="mercurial.parsers.pyd" />
16 <File Name="mercurial.parsers.pyd" />
17 <File Name="pyexpat.pyd" />
17 <File Name="pyexpat.pyd" />
18 <File Name="python26.dll" />
18 <File Name="python27.dll" />
19 <File Name="bz2.pyd" />
19 <File Name="bz2.pyd" />
20 <File Name="select.pyd" />
20 <File Name="select.pyd" />
21 <File Name="unicodedata.pyd" />
21 <File Name="unicodedata.pyd" />
22 <File Name="_ctypes.pyd" />
22 <File Name="_ctypes.pyd" />
23 <File Name="_elementtree.pyd" />
23 <File Name="_elementtree.pyd" />
24 <File Name="_hashlib.pyd" />
24 <File Name="_hashlib.pyd" />
25 <File Name="_socket.pyd" />
25 <File Name="_socket.pyd" />
26 <File Name="_ssl.pyd" />
26 <File Name="_ssl.pyd" />
27 </Component>
27 </Component>
28 </DirectoryRef>
28 </DirectoryRef>
29 </Fragment>
29 </Fragment>
30
30
31 </Wix>
31 </Wix>
General Comments 0
You need to be logged in to leave comments. Login now