zlib.vcxproj 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <ItemGroup Label="ProjectConfigurations">
  4. <ProjectConfiguration Include="Debug|Win32">
  5. <Configuration>Debug</Configuration>
  6. <Platform>Win32</Platform>
  7. </ProjectConfiguration>
  8. <ProjectConfiguration Include="Release|Win32">
  9. <Configuration>Release</Configuration>
  10. <Platform>Win32</Platform>
  11. </ProjectConfiguration>
  12. </ItemGroup>
  13. <PropertyGroup Label="Globals">
  14. <ProjectGuid>{04762AF6-DDB1-4D44-9B24-E6A5B4CC7C71}</ProjectGuid>
  15. <Keyword>Win32Proj</Keyword>
  16. <RootNamespace>zlib</RootNamespace>
  17. </PropertyGroup>
  18. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  19. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  20. <ConfigurationType>StaticLibrary</ConfigurationType>
  21. <UseDebugLibraries>true</UseDebugLibraries>
  22. <CharacterSet>Unicode</CharacterSet>
  23. <PlatformToolset>v120</PlatformToolset>
  24. </PropertyGroup>
  25. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  26. <ConfigurationType>StaticLibrary</ConfigurationType>
  27. <UseDebugLibraries>false</UseDebugLibraries>
  28. <WholeProgramOptimization>true</WholeProgramOptimization>
  29. <CharacterSet>Unicode</CharacterSet>
  30. <PlatformToolset>v120</PlatformToolset>
  31. </PropertyGroup>
  32. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  33. <ImportGroup Label="ExtensionSettings">
  34. </ImportGroup>
  35. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  36. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  37. </ImportGroup>
  38. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  39. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  40. </ImportGroup>
  41. <PropertyGroup Label="UserMacros" />
  42. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  43. <OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
  44. </PropertyGroup>
  45. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  46. <ClCompile>
  47. <PrecompiledHeader>
  48. </PrecompiledHeader>
  49. <WarningLevel>Level3</WarningLevel>
  50. <Optimization>Disabled</Optimization>
  51. <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  52. </ClCompile>
  53. <Link>
  54. <SubSystem>Windows</SubSystem>
  55. <GenerateDebugInformation>true</GenerateDebugInformation>
  56. </Link>
  57. </ItemDefinitionGroup>
  58. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  59. <ClCompile>
  60. <WarningLevel>Level3</WarningLevel>
  61. <PrecompiledHeader>
  62. </PrecompiledHeader>
  63. <Optimization>MaxSpeed</Optimization>
  64. <FunctionLevelLinking>true</FunctionLevelLinking>
  65. <IntrinsicFunctions>true</IntrinsicFunctions>
  66. <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  67. </ClCompile>
  68. <Link>
  69. <SubSystem>Windows</SubSystem>
  70. <GenerateDebugInformation>true</GenerateDebugInformation>
  71. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  72. <OptimizeReferences>true</OptimizeReferences>
  73. </Link>
  74. </ItemDefinitionGroup>
  75. <ItemGroup>
  76. <None Include="ReadMe.txt" />
  77. </ItemGroup>
  78. <ItemGroup>
  79. <ClCompile Include="IOBase.cpp" />
  80. <ClCompile Include="UZipFile.cpp" />
  81. <ClCompile Include="ZipFile.cpp" />
  82. <ClCompile Include="ZLib\adler32.c" />
  83. <ClCompile Include="ZLib\compress.c" />
  84. <ClCompile Include="ZLib\crc32.c" />
  85. <ClCompile Include="ZLib\deflate.c" />
  86. <ClCompile Include="ZLib\gzclose.c" />
  87. <ClCompile Include="ZLib\gzlib.c" />
  88. <ClCompile Include="ZLib\gzread.c" />
  89. <ClCompile Include="ZLib\gzwrite.c" />
  90. <ClCompile Include="ZLib\infback.c" />
  91. <ClCompile Include="ZLib\inffast.c" />
  92. <ClCompile Include="ZLib\inflate.c" />
  93. <ClCompile Include="ZLib\inftrees.c" />
  94. <ClCompile Include="ZLib\ioapi.c" />
  95. <ClCompile Include="ZLib\iowin32.c" />
  96. <ClCompile Include="ZLib\mztools.c" />
  97. <ClCompile Include="ZLib\trees.c" />
  98. <ClCompile Include="ZLib\uncompr.c" />
  99. <ClCompile Include="ZLib\unzip.c" />
  100. <ClCompile Include="ZLib\zip.c" />
  101. <ClCompile Include="ZLib\zutil.c" />
  102. </ItemGroup>
  103. <ItemGroup>
  104. <ClInclude Include="IOBase.h" />
  105. <ClInclude Include="UZipFile.h" />
  106. <ClInclude Include="ZipFile.h" />
  107. <ClInclude Include="ZLib\crc32.h" />
  108. <ClInclude Include="ZLib\crypt.h" />
  109. <ClInclude Include="ZLib\deflate.h" />
  110. <ClInclude Include="ZLib\gzguts.h" />
  111. <ClInclude Include="ZLib\inffast.h" />
  112. <ClInclude Include="ZLib\inffixed.h" />
  113. <ClInclude Include="ZLib\inflate.h" />
  114. <ClInclude Include="ZLib\inftrees.h" />
  115. <ClInclude Include="ZLib\ioapi.h" />
  116. <ClInclude Include="ZLib\iowin32.h" />
  117. <ClInclude Include="ZLib\mztools.h" />
  118. <ClInclude Include="ZLib\trees.h" />
  119. <ClInclude Include="ZLib\unzip.h" />
  120. <ClInclude Include="ZLib\zconf.h" />
  121. <ClInclude Include="ZLib\zip.h" />
  122. <ClInclude Include="ZLib\zlib.h" />
  123. <ClInclude Include="ZLib\zutil.h" />
  124. </ItemGroup>
  125. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  126. <ImportGroup Label="ExtensionTargets">
  127. </ImportGroup>
  128. </Project>