ZLibWrapLib.vcxproj 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  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>{5165F5BD-8224-4145-8D45-324968D4F2B0}</ProjectGuid>
  15. <SccProjectName>
  16. </SccProjectName>
  17. <SccAuxPath>
  18. </SccAuxPath>
  19. <SccLocalPath>
  20. </SccLocalPath>
  21. <SccProvider>
  22. </SccProvider>
  23. <Keyword>Win32Proj</Keyword>
  24. <RootNamespace>ZLibWrapLib</RootNamespace>
  25. </PropertyGroup>
  26. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  27. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  28. <ConfigurationType>StaticLibrary</ConfigurationType>
  29. <UseDebugLibraries>true</UseDebugLibraries>
  30. <CharacterSet>Unicode</CharacterSet>
  31. <PlatformToolset>v120</PlatformToolset>
  32. </PropertyGroup>
  33. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  34. <ConfigurationType>StaticLibrary</ConfigurationType>
  35. <UseDebugLibraries>false</UseDebugLibraries>
  36. <WholeProgramOptimization>true</WholeProgramOptimization>
  37. <CharacterSet>Unicode</CharacterSet>
  38. <PlatformToolset>v120</PlatformToolset>
  39. </PropertyGroup>
  40. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  41. <ImportGroup Label="ExtensionSettings">
  42. </ImportGroup>
  43. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  44. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  45. </ImportGroup>
  46. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  47. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  48. </ImportGroup>
  49. <PropertyGroup Label="UserMacros" />
  50. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  51. <OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
  52. </PropertyGroup>
  53. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  54. <OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
  55. </PropertyGroup>
  56. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  57. <ClCompile>
  58. <PrecompiledHeader>Use</PrecompiledHeader>
  59. <WarningLevel>Level3</WarningLevel>
  60. <Optimization>Disabled</Optimization>
  61. <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  62. <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
  63. <TreatWarningAsError>false</TreatWarningAsError>
  64. </ClCompile>
  65. <Link>
  66. <SubSystem>Windows</SubSystem>
  67. <GenerateDebugInformation>true</GenerateDebugInformation>
  68. </Link>
  69. </ItemDefinitionGroup>
  70. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  71. <ClCompile>
  72. <WarningLevel>Level3</WarningLevel>
  73. <PrecompiledHeader>Use</PrecompiledHeader>
  74. <Optimization>MaxSpeed</Optimization>
  75. <FunctionLevelLinking>true</FunctionLevelLinking>
  76. <IntrinsicFunctions>true</IntrinsicFunctions>
  77. <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  78. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  79. <TreatWarningAsError>false</TreatWarningAsError>
  80. </ClCompile>
  81. <Link>
  82. <SubSystem>Windows</SubSystem>
  83. <GenerateDebugInformation>true</GenerateDebugInformation>
  84. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  85. <OptimizeReferences>true</OptimizeReferences>
  86. </Link>
  87. </ItemDefinitionGroup>
  88. <ItemGroup>
  89. <ClInclude Include="Encoding.h" />
  90. <ClInclude Include="Loki\RefToValue.h" />
  91. <ClInclude Include="Loki\ScopeGuard.h" />
  92. <ClInclude Include="stdafx.h" />
  93. <ClInclude Include="targetver.h" />
  94. <ClInclude Include="ZLibWrapLib.h" />
  95. <ClInclude Include="ZLib\crc32.h" />
  96. <ClInclude Include="ZLib\crypt.h" />
  97. <ClInclude Include="ZLib\deflate.h" />
  98. <ClInclude Include="ZLib\gzguts.h" />
  99. <ClInclude Include="ZLib\inffast.h" />
  100. <ClInclude Include="ZLib\inffixed.h" />
  101. <ClInclude Include="ZLib\inflate.h" />
  102. <ClInclude Include="ZLib\inftrees.h" />
  103. <ClInclude Include="ZLib\ioapi.h" />
  104. <ClInclude Include="ZLib\iowin32.h" />
  105. <ClInclude Include="ZLib\mztools.h" />
  106. <ClInclude Include="ZLib\trees.h" />
  107. <ClInclude Include="ZLib\unzip.h" />
  108. <ClInclude Include="ZLib\zconf.h" />
  109. <ClInclude Include="ZLib\zip.h" />
  110. <ClInclude Include="ZLib\zlib.h" />
  111. <ClInclude Include="ZLib\zutil.h" />
  112. </ItemGroup>
  113. <ItemGroup>
  114. <ClCompile Include="Encoding.cpp" />
  115. <ClCompile Include="stdafx.cpp">
  116. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
  117. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
  118. </ClCompile>
  119. <ClCompile Include="ZLibWrapLib.cpp" />
  120. <ClCompile Include="ZLib\adler32.c">
  121. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
  122. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">NotUsing</PrecompiledHeader>
  123. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Level2</WarningLevel>
  124. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Level2</WarningLevel>
  125. </ClCompile>
  126. <ClCompile Include="ZLib\compress.c">
  127. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
  128. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">NotUsing</PrecompiledHeader>
  129. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Level2</WarningLevel>
  130. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Level2</WarningLevel>
  131. </ClCompile>
  132. <ClCompile Include="ZLib\crc32.c">
  133. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
  134. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">NotUsing</PrecompiledHeader>
  135. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Level2</WarningLevel>
  136. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Level2</WarningLevel>
  137. </ClCompile>
  138. <ClCompile Include="ZLib\deflate.c">
  139. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
  140. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">NotUsing</PrecompiledHeader>
  141. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Level2</WarningLevel>
  142. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Level2</WarningLevel>
  143. </ClCompile>
  144. <ClCompile Include="ZLib\gzclose.c">
  145. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
  146. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">NotUsing</PrecompiledHeader>
  147. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Level2</WarningLevel>
  148. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Level2</WarningLevel>
  149. </ClCompile>
  150. <ClCompile Include="ZLib\gzlib.c">
  151. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
  152. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">NotUsing</PrecompiledHeader>
  153. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Level2</WarningLevel>
  154. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Level2</WarningLevel>
  155. </ClCompile>
  156. <ClCompile Include="ZLib\gzread.c">
  157. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
  158. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">NotUsing</PrecompiledHeader>
  159. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Level2</WarningLevel>
  160. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Level2</WarningLevel>
  161. </ClCompile>
  162. <ClCompile Include="ZLib\gzwrite.c">
  163. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
  164. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">NotUsing</PrecompiledHeader>
  165. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Level2</WarningLevel>
  166. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Level2</WarningLevel>
  167. </ClCompile>
  168. <ClCompile Include="ZLib\infback.c">
  169. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
  170. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">NotUsing</PrecompiledHeader>
  171. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Level2</WarningLevel>
  172. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Level2</WarningLevel>
  173. </ClCompile>
  174. <ClCompile Include="ZLib\inffast.c">
  175. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
  176. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">NotUsing</PrecompiledHeader>
  177. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Level2</WarningLevel>
  178. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Level2</WarningLevel>
  179. </ClCompile>
  180. <ClCompile Include="ZLib\inflate.c">
  181. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
  182. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">NotUsing</PrecompiledHeader>
  183. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Level2</WarningLevel>
  184. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Level2</WarningLevel>
  185. </ClCompile>
  186. <ClCompile Include="ZLib\inftrees.c">
  187. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
  188. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">NotUsing</PrecompiledHeader>
  189. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Level2</WarningLevel>
  190. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Level2</WarningLevel>
  191. </ClCompile>
  192. <ClCompile Include="ZLib\ioapi.c">
  193. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
  194. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">NotUsing</PrecompiledHeader>
  195. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Level2</WarningLevel>
  196. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Level2</WarningLevel>
  197. </ClCompile>
  198. <ClCompile Include="ZLib\iowin32.c">
  199. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
  200. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">NotUsing</PrecompiledHeader>
  201. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Level2</WarningLevel>
  202. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Level2</WarningLevel>
  203. </ClCompile>
  204. <ClCompile Include="ZLib\mztools.c">
  205. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
  206. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">NotUsing</PrecompiledHeader>
  207. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Level2</WarningLevel>
  208. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Level2</WarningLevel>
  209. </ClCompile>
  210. <ClCompile Include="ZLib\trees.c">
  211. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
  212. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">NotUsing</PrecompiledHeader>
  213. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Level2</WarningLevel>
  214. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Level2</WarningLevel>
  215. </ClCompile>
  216. <ClCompile Include="ZLib\uncompr.c">
  217. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
  218. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">NotUsing</PrecompiledHeader>
  219. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Level2</WarningLevel>
  220. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Level2</WarningLevel>
  221. </ClCompile>
  222. <ClCompile Include="ZLib\unzip.c">
  223. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
  224. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">NotUsing</PrecompiledHeader>
  225. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Level2</WarningLevel>
  226. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Level2</WarningLevel>
  227. </ClCompile>
  228. <ClCompile Include="ZLib\zip.c">
  229. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
  230. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">NotUsing</PrecompiledHeader>
  231. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Level2</WarningLevel>
  232. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Level2</WarningLevel>
  233. </ClCompile>
  234. <ClCompile Include="ZLib\zutil.c">
  235. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
  236. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">NotUsing</PrecompiledHeader>
  237. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Level2</WarningLevel>
  238. <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Level2</WarningLevel>
  239. </ClCompile>
  240. </ItemGroup>
  241. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  242. <ImportGroup Label="ExtensionTargets">
  243. </ImportGroup>
  244. </Project>