118 lines
5.4 KiB
XML
118 lines
5.4 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||
|
<ItemGroup Label="ProjectConfigurations">
|
||
|
<ProjectConfiguration Include="Debug|x64">
|
||
|
<Configuration>Debug</Configuration>
|
||
|
<Platform>x64</Platform>
|
||
|
</ProjectConfiguration>
|
||
|
<ProjectConfiguration Include="Release|x64">
|
||
|
<Configuration>Release</Configuration>
|
||
|
<Platform>x64</Platform>
|
||
|
</ProjectConfiguration>
|
||
|
</ItemGroup>
|
||
|
<PropertyGroup Label="Globals">
|
||
|
<VCProjectVersion>15.0</VCProjectVersion>
|
||
|
<ProjectGuid>{164A9D43-345C-407B-BF59-527386DED788}</ProjectGuid>
|
||
|
<RootNamespace>zlib</RootNamespace>
|
||
|
<WindowsTargetPlatformVersion>10.0.17763.0</WindowsTargetPlatformVersion>
|
||
|
</PropertyGroup>
|
||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||
|
<PlatformToolset>v141</PlatformToolset>
|
||
|
<CharacterSet>MultiByte</CharacterSet>
|
||
|
</PropertyGroup>
|
||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||
|
<PlatformToolset>v141</PlatformToolset>
|
||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||
|
<CharacterSet>MultiByte</CharacterSet>
|
||
|
</PropertyGroup>
|
||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||
|
<ImportGroup Label="ExtensionSettings">
|
||
|
</ImportGroup>
|
||
|
<ImportGroup Label="Shared">
|
||
|
</ImportGroup>
|
||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||
|
</ImportGroup>
|
||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||
|
</ImportGroup>
|
||
|
<PropertyGroup Label="UserMacros" />
|
||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||
|
<OutDir>$(ProjectDir)bin\$(Platform)-$(Configuration)\</OutDir>
|
||
|
<IntDir>$(ProjectDir)bin-int\$(Platform)-$(Configuration)\</IntDir>
|
||
|
</PropertyGroup>
|
||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||
|
<OutDir>$(ProjectDir)bin\$(Platform)-$(Configuration)\</OutDir>
|
||
|
<IntDir>$(ProjectDir)bin-int\$(Platform)-$(Configuration)\</IntDir>
|
||
|
</PropertyGroup>
|
||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||
|
<ClCompile>
|
||
|
<WarningLevel>Level3</WarningLevel>
|
||
|
<Optimization>Disabled</Optimization>
|
||
|
<SDLCheck>true</SDLCheck>
|
||
|
<ConformanceMode>true</ConformanceMode>
|
||
|
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||
|
<AdditionalIncludeDirectories>$(ProjectDir)src;$(ProjectDir)include</AdditionalIncludeDirectories>
|
||
|
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;_MBCS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||
|
</ClCompile>
|
||
|
<Link>
|
||
|
<SubSystem>Console</SubSystem>
|
||
|
</Link>
|
||
|
</ItemDefinitionGroup>
|
||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||
|
<ClCompile>
|
||
|
<WarningLevel>Level3</WarningLevel>
|
||
|
<Optimization>MaxSpeed</Optimization>
|
||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||
|
<SDLCheck>true</SDLCheck>
|
||
|
<ConformanceMode>true</ConformanceMode>
|
||
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||
|
<AdditionalIncludeDirectories>$(ProjectDir)src;$(ProjectDir)include</AdditionalIncludeDirectories>
|
||
|
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;_MBCS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||
|
</ClCompile>
|
||
|
<Link>
|
||
|
<SubSystem>Console</SubSystem>
|
||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||
|
<OptimizeReferences>true</OptimizeReferences>
|
||
|
</Link>
|
||
|
</ItemDefinitionGroup>
|
||
|
<ItemGroup>
|
||
|
<ClCompile Include="src\adler32.c" />
|
||
|
<ClCompile Include="src\compress.c" />
|
||
|
<ClCompile Include="src\crc32.c" />
|
||
|
<ClCompile Include="src\deflate.c" />
|
||
|
<ClCompile Include="src\gzclose.c" />
|
||
|
<ClCompile Include="src\gzlib.c" />
|
||
|
<ClCompile Include="src\gzread.c" />
|
||
|
<ClCompile Include="src\gzwrite.c" />
|
||
|
<ClCompile Include="src\infback.c" />
|
||
|
<ClCompile Include="src\inffast.c" />
|
||
|
<ClCompile Include="src\inflate.c" />
|
||
|
<ClCompile Include="src\inftrees.c" />
|
||
|
<ClCompile Include="src\trees.c" />
|
||
|
<ClCompile Include="src\uncompr.c" />
|
||
|
<ClCompile Include="src\zutil.c" />
|
||
|
</ItemGroup>
|
||
|
<ItemGroup>
|
||
|
<ClInclude Include="include\zconf.h" />
|
||
|
<ClInclude Include="include\zlib.h" />
|
||
|
<ClInclude Include="src\crc32.h" />
|
||
|
<ClInclude Include="src\deflate.h" />
|
||
|
<ClInclude Include="src\gzguts.h" />
|
||
|
<ClInclude Include="src\inffast.h" />
|
||
|
<ClInclude Include="src\inffixed.h" />
|
||
|
<ClInclude Include="src\inflate.h" />
|
||
|
<ClInclude Include="src\inftrees.h" />
|
||
|
<ClInclude Include="src\trees.h" />
|
||
|
<ClInclude Include="src\zutil.h" />
|
||
|
</ItemGroup>
|
||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||
|
<ImportGroup Label="ExtensionTargets">
|
||
|
</ImportGroup>
|
||
|
</Project>
|