Skip to content

Commit

Permalink
bpo-47230: Silence compiler warnings on Windows from zlib 1.2.12 (GH-…
Browse files Browse the repository at this point in the history
  • Loading branch information
jkloth committed Apr 5, 2022
1 parent 050a8f9 commit 944f09a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions PCbuild/pythoncore.vcxproj
Expand Up @@ -534,13 +534,15 @@
<!-- BEGIN deepfreeze -->
<ClCompile Include="..\Python\deepfreeze\deepfreeze.c" />
<!-- END deepfreeze -->
</ItemGroup>
</ItemGroup>
<ItemGroup Condition="$(IncludeExternals)">
<ClCompile Include="..\Modules\zlibmodule.c" />
<ClCompile Include="$(zlibDir)\adler32.c" />
<ClCompile Include="$(zlibDir)\compress.c" />
<ClCompile Include="$(zlibDir)\crc32.c" />
<ClCompile Include="$(zlibDir)\deflate.c" />
<ClCompile Include="$(zlibDir)\deflate.c">
<DisableSpecificWarnings>4244</DisableSpecificWarnings>
</ClCompile>
<ClCompile Include="$(zlibDir)\infback.c" />
<ClCompile Include="$(zlibDir)\inffast.c" />
<ClCompile Include="$(zlibDir)\inflate.c" />
Expand Down

0 comments on commit 944f09a

Please sign in to comment.