contrib/wix/dist.wxs
author Adrian Buehlmann <adrian@cadifra.com>
Mon, 14 Feb 2011 11:12:22 +0100
changeset 13374 1c613c1ae43d
parent 13042 bd9bc4123920
child 13375 f1fa8f481c7c
permissions -rw-r--r--
win32: optimize parameters for the CreateFile call in _getfileinfo Set dwDesiredAccess to 0 instead of GENERIC_READ. Zero is enough for querying the file metadata. We don't even need to access the -contents- of the file. Set dwShareMode to FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE instead of the overly restrictive FILE_SHARE_READ. There is no need to cause write or delete accesses by other processes to fail while we are querying file metadata. See http://msdn.microsoft.com/en-us/library/aa363858(v=vs.85).aspx

<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">

  <?include guids.wxi ?>
  <?include defines.wxi ?>

  <Fragment>
    <DirectoryRef Id="INSTALLDIR" FileSource="$(var.SourceDir)">
      <Component Id="distOutput" Guid="$(var.dist.guid)" Win64='$(var.IsX64)'>
        <File Name="library.zip" KeyPath="yes" />
        <File Name="mercurial.base85.pyd" />
        <File Name="mercurial.bdiff.pyd" />
        <File Name="mercurial.diffhelpers.pyd" />
        <File Name="mercurial.mpatch.pyd" />
        <File Name="mercurial.osutil.pyd" />
        <File Name="mercurial.parsers.pyd" />
        <File Name="pyexpat.pyd" />
        <File Name="python26.dll" />
        <File Name="pythoncom26.dll" />
        <File Name="pywintypes26.dll" />
        <File Name="bz2.pyd" />
        <File Name="select.pyd" />
        <File Name="unicodedata.pyd" />
        <File Name="win32api.pyd" />
        <File Name="win32com.shell.shell.pyd" />
        <File Name="win32console.pyd" />
        <File Name="win32file.pyd" />
        <File Name="win32gui.pyd" />
        <File Name="win32pipe.pyd" />
        <File Name="win32process.pyd" />
        <File Name="_elementtree.pyd" />
        <File Name="_hashlib.pyd" />
        <File Name="_socket.pyd" />
        <File Name="_ssl.pyd" />
        <File Name="_win32sysloader.pyd" />
      </Component>
    </DirectoryRef>
  </Fragment>

</Wix>