Staging
v0.5.1
https://github.com/python/cpython
Revision 7592c0a686a80b9fbe2e6d519a486aca58b3260b authored by Miss Islington (bot) on 07 March 2018, 05:46:10 UTC, committed by GitHub on 07 March 2018, 05:46:10 UTC
(cherry picked from commit bc3f2289b9007396bfb7f986bee477b6176c1822)

Co-authored-by: Xiang Zhang <angwerzx@126.com>
1 parent 387a055
Raw File
Tip revision: 7592c0a686a80b9fbe2e6d519a486aca58b3260b authored by Miss Islington (bot) on 07 March 2018, 05:46:10 UTC
bpo-32969: Expose some missing constants in zlib and fix the doc (GH-5988)
Tip revision: 7592c0a
doc.wixproj
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    <PropertyGroup>
        <ProjectGuid>{0D62A2BB-5F71-4447-8C8C-9708407B3674}</ProjectGuid>
        <SchemaVersion>2.0</SchemaVersion>
        <OutputName>doc</OutputName>
        <OutputType>Package</OutputType>
        <!-- Shortcut validation is not necessary -->
        <SuppressICEs>ICE43</SuppressICEs>
    </PropertyGroup>
    <Import Project="..\msi.props" />
    <PropertyGroup>
        <DocFilename>python$(MajorVersionNumber)$(MinorVersionNumber)$(MicroVersionNumber)$(ReleaseLevelName).chm</DocFilename>
        <IncludeDocFile>false</IncludeDocFile>
        <IncludeDocFile Condition="$(BuildForRelease) or Exists('$(PySourcePath)Doc\build\htmlhelp\$(DocFilename)')">true</IncludeDocFile>
    </PropertyGroup>
    <PropertyGroup Condition="$(IncludeDocFile)">
        <DefineConstants>$(DefineConstants);DocFilename=$(DocFilename);</DefineConstants>
    </PropertyGroup>
    <ItemGroup>
        <Compile Include="doc.wxs" />
        <Compile Include="doc_files.wxs" Condition="$(IncludeDocFile)" />
        <Compile Include="doc_no_files.wxs" Condition="!$(IncludeDocFile)" />
    </ItemGroup>
    <ItemGroup>
        <WxlTemplate Include="*.wxl_template" />
    </ItemGroup>
    
    <Import Project="..\msi.targets" />
</Project>
back to top