Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: d200e0c07208df0fec02b25279e4ca1ba3153947 authored by Larry Hastings on 31 May 2015, 00:00:48 UTC
Version bump for Python 3.5.0b2.
Tip revision: d200e0c
lib.wxs
<?xml version="1.0"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
    <Fragment>
        <PackageGroup Id="lib">
            <MsiPackage Id="lib_AllUsers"
                        SourceFile="lib.msi"
                        Compressed="$(var.CompressMSI)"
                        DownloadUrl="$(var.DownloadUrl)"
                        ForcePerMachine="yes"
                        InstallCondition="InstallAllUsers and Include_lib">
                <MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
            </MsiPackage>
            <MsiPackage Id="lib_AllUsers_pdb"
                        SourceFile="lib_pdb.msi"
                        Compressed="$(var.CompressPDB)"
                        DownloadUrl="$(var.DownloadUrl)"
                        ForcePerMachine="yes"
                        InstallCondition="InstallAllUsers and Include_lib and Include_symbols">
                <MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
            </MsiPackage>
            <MsiPackage Id="lib_AllUsers_d"
                        SourceFile="lib_d.msi"
                        Compressed="$(var.CompressMSI_D)"
                        DownloadUrl="$(var.DownloadUrl)"
                        ForcePerMachine="yes"
                        InstallCondition="InstallAllUsers and Include_lib and Include_debug">
                <MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
            </MsiPackage>

            <MsiPackage Id="lib_JustForMe"
                        SourceFile="lib.msi"
                        Compressed="$(var.CompressMSI)"
                        DownloadUrl="$(var.DownloadUrl)"
                        ForcePerMachine="no"
                        InstallCondition="not InstallAllUsers and Include_lib">
                <MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
            </MsiPackage>
            <MsiPackage Id="lib_JustForMe_pdb"
                        SourceFile="lib_pdb.msi"
                        Compressed="$(var.CompressPDB)"
                        DownloadUrl="$(var.DownloadUrl)"
                        ForcePerMachine="no"
                        InstallCondition="not InstallAllUsers and Include_lib and Include_symbols">
                <MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
            </MsiPackage>
            <MsiPackage Id="lib_JustForMe_d"
                        SourceFile="lib_d.msi"
                        Compressed="$(var.CompressMSI_D)"
                        DownloadUrl="$(var.DownloadUrl)"
                        ForcePerMachine="no"
                        InstallCondition="not InstallAllUsers and Include_lib and Include_debug">
                <MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
            </MsiPackage>
        </PackageGroup>
    </Fragment>
</Wix>
back to top