Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 4893861ab58544091feab2946648245ac1271e2f authored by Ned Deily on 13 October 2018, 07:01:32 UTC
3.6.7rc2
Tip revision: 4893861
dev.wxs
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
    <Product Id="*" Language="!(loc.LCID)" Name="!(loc.Title)" Version="$(var.Version)" Manufacturer="!(loc.Manufacturer)" UpgradeCode="$(var.UpgradeCode)">
        <Package InstallerVersion="300" Compressed="yes" InstallScope="perUser" Platform="$(var.Platform)" />
        <MediaTemplate EmbedCab="yes" CompressionLevel="high" />
        
        <PropertyRef Id="UpgradeTable" />
        
        <Feature Id="DefaultFeature" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)">
            <ComponentGroupRef Id="dev_include" />
            <ComponentGroupRef Id="dev_pyconfig" />
            <ComponentGroupRef Id="dev_libs" />
<?ifdef IncludeMinGWLib ?>
            <ComponentGroupRef Id="dev_mingw" />
<?endif ?>
            <ComponentRef Id="OptionalFeature" />
        </Feature>
    </Product>
</Wix>
back to top