miniz.vcxproj 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="15.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="Debug|x64">
  9. <Configuration>Debug</Configuration>
  10. <Platform>x64</Platform>
  11. </ProjectConfiguration>
  12. <ProjectConfiguration Include="Release|Win32">
  13. <Configuration>Release</Configuration>
  14. <Platform>Win32</Platform>
  15. </ProjectConfiguration>
  16. <ProjectConfiguration Include="Release|x64">
  17. <Configuration>Release</Configuration>
  18. <Platform>x64</Platform>
  19. </ProjectConfiguration>
  20. <ProjectConfiguration Include="Checked|Win32">
  21. <Configuration>Checked</Configuration>
  22. <Platform>Win32</Platform>
  23. </ProjectConfiguration>
  24. <ProjectConfiguration Include="Checked|x64">
  25. <Configuration>Checked</Configuration>
  26. <Platform>x64</Platform>
  27. </ProjectConfiguration>
  28. <ProjectConfiguration Include="DebugShared|Win32">
  29. <Configuration>DebugShared</Configuration>
  30. <Platform>Win32</Platform>
  31. </ProjectConfiguration>
  32. <ProjectConfiguration Include="DebugShared|x64">
  33. <Configuration>DebugShared</Configuration>
  34. <Platform>x64</Platform>
  35. </ProjectConfiguration>
  36. <ProjectConfiguration Include="ReleaseShared|Win32">
  37. <Configuration>ReleaseShared</Configuration>
  38. <Platform>Win32</Platform>
  39. </ProjectConfiguration>
  40. <ProjectConfiguration Include="ReleaseShared|x64">
  41. <Configuration>ReleaseShared</Configuration>
  42. <Platform>x64</Platform>
  43. </ProjectConfiguration>
  44. <ProjectConfiguration Include="CheckedShared|Win32">
  45. <Configuration>CheckedShared</Configuration>
  46. <Platform>Win32</Platform>
  47. </ProjectConfiguration>
  48. <ProjectConfiguration Include="CheckedShared|x64">
  49. <Configuration>CheckedShared</Configuration>
  50. <Platform>x64</Platform>
  51. </ProjectConfiguration>
  52. </ItemGroup>
  53. <PropertyGroup Label="Globals">
  54. <ProjectGuid>{B5E0C06B-8121-426A-8FFB-4293ECAAE29C}</ProjectGuid>
  55. <IgnoreWarnCompileDuplicatedFilename>true</IgnoreWarnCompileDuplicatedFilename>
  56. <Keyword>Win32Proj</Keyword>
  57. <RootNamespace>miniz</RootNamespace>
  58. <PreferredToolArchitecture>x64</PreferredToolArchitecture>
  59. <LatestTargetPlatformVersion>$([Microsoft.Build.Utilities.ToolLocationHelper]::GetLatestSDKTargetPlatformVersion('Windows', '10.0'))</LatestTargetPlatformVersion>
  60. <WindowsTargetPlatformVersion>10.0.17763.0</WindowsTargetPlatformVersion>
  61. </PropertyGroup>
  62. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  63. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  64. <ConfigurationType>StaticLibrary</ConfigurationType>
  65. <UseDebugLibraries>true</UseDebugLibraries>
  66. <CharacterSet>Unicode</CharacterSet>
  67. <PlatformToolset>v141</PlatformToolset>
  68. <SpectreMitigation>Spectre</SpectreMitigation>
  69. </PropertyGroup>
  70. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  71. <ConfigurationType>StaticLibrary</ConfigurationType>
  72. <UseDebugLibraries>true</UseDebugLibraries>
  73. <CharacterSet>Unicode</CharacterSet>
  74. <PlatformToolset>v141</PlatformToolset>
  75. <SpectreMitigation>Spectre</SpectreMitigation>
  76. </PropertyGroup>
  77. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  78. <ConfigurationType>StaticLibrary</ConfigurationType>
  79. <UseDebugLibraries>false</UseDebugLibraries>
  80. <CharacterSet>Unicode</CharacterSet>
  81. <PlatformToolset>v141</PlatformToolset>
  82. <WholeProgramOptimization>true</WholeProgramOptimization>
  83. <SpectreMitigation>Spectre</SpectreMitigation>
  84. </PropertyGroup>
  85. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  86. <ConfigurationType>StaticLibrary</ConfigurationType>
  87. <UseDebugLibraries>false</UseDebugLibraries>
  88. <CharacterSet>Unicode</CharacterSet>
  89. <PlatformToolset>v141</PlatformToolset>
  90. <WholeProgramOptimization>true</WholeProgramOptimization>
  91. <SpectreMitigation>Spectre</SpectreMitigation>
  92. </PropertyGroup>
  93. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Checked|Win32'" Label="Configuration">
  94. <ConfigurationType>StaticLibrary</ConfigurationType>
  95. <UseDebugLibraries>false</UseDebugLibraries>
  96. <CharacterSet>Unicode</CharacterSet>
  97. <PlatformToolset>v141</PlatformToolset>
  98. <SpectreMitigation>Spectre</SpectreMitigation>
  99. </PropertyGroup>
  100. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Checked|x64'" Label="Configuration">
  101. <ConfigurationType>StaticLibrary</ConfigurationType>
  102. <UseDebugLibraries>false</UseDebugLibraries>
  103. <CharacterSet>Unicode</CharacterSet>
  104. <PlatformToolset>v141</PlatformToolset>
  105. <SpectreMitigation>Spectre</SpectreMitigation>
  106. </PropertyGroup>
  107. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugShared|Win32'" Label="Configuration">
  108. <ConfigurationType>DynamicLibrary</ConfigurationType>
  109. <UseDebugLibraries>true</UseDebugLibraries>
  110. <CharacterSet>Unicode</CharacterSet>
  111. <PlatformToolset>v141</PlatformToolset>
  112. <SpectreMitigation>Spectre</SpectreMitigation>
  113. </PropertyGroup>
  114. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugShared|x64'" Label="Configuration">
  115. <ConfigurationType>DynamicLibrary</ConfigurationType>
  116. <UseDebugLibraries>true</UseDebugLibraries>
  117. <CharacterSet>Unicode</CharacterSet>
  118. <PlatformToolset>v141</PlatformToolset>
  119. <SpectreMitigation>Spectre</SpectreMitigation>
  120. </PropertyGroup>
  121. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseShared|Win32'" Label="Configuration">
  122. <ConfigurationType>DynamicLibrary</ConfigurationType>
  123. <UseDebugLibraries>false</UseDebugLibraries>
  124. <CharacterSet>Unicode</CharacterSet>
  125. <PlatformToolset>v141</PlatformToolset>
  126. <WholeProgramOptimization>true</WholeProgramOptimization>
  127. <SpectreMitigation>Spectre</SpectreMitigation>
  128. </PropertyGroup>
  129. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseShared|x64'" Label="Configuration">
  130. <ConfigurationType>DynamicLibrary</ConfigurationType>
  131. <UseDebugLibraries>false</UseDebugLibraries>
  132. <CharacterSet>Unicode</CharacterSet>
  133. <PlatformToolset>v141</PlatformToolset>
  134. <WholeProgramOptimization>true</WholeProgramOptimization>
  135. <SpectreMitigation>Spectre</SpectreMitigation>
  136. </PropertyGroup>
  137. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='CheckedShared|Win32'" Label="Configuration">
  138. <ConfigurationType>DynamicLibrary</ConfigurationType>
  139. <UseDebugLibraries>false</UseDebugLibraries>
  140. <CharacterSet>Unicode</CharacterSet>
  141. <PlatformToolset>v141</PlatformToolset>
  142. <SpectreMitigation>Spectre</SpectreMitigation>
  143. </PropertyGroup>
  144. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='CheckedShared|x64'" Label="Configuration">
  145. <ConfigurationType>DynamicLibrary</ConfigurationType>
  146. <UseDebugLibraries>false</UseDebugLibraries>
  147. <CharacterSet>Unicode</CharacterSet>
  148. <PlatformToolset>v141</PlatformToolset>
  149. <SpectreMitigation>Spectre</SpectreMitigation>
  150. </PropertyGroup>
  151. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  152. <ImportGroup Label="ExtensionSettings">
  153. </ImportGroup>
  154. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  155. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  156. </ImportGroup>
  157. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  158. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  159. </ImportGroup>
  160. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  161. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  162. </ImportGroup>
  163. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  164. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  165. </ImportGroup>
  166. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Checked|Win32'">
  167. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  168. </ImportGroup>
  169. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Checked|x64'">
  170. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  171. </ImportGroup>
  172. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='DebugShared|Win32'">
  173. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  174. </ImportGroup>
  175. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='DebugShared|x64'">
  176. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  177. </ImportGroup>
  178. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='ReleaseShared|Win32'">
  179. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  180. </ImportGroup>
  181. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='ReleaseShared|x64'">
  182. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  183. </ImportGroup>
  184. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='CheckedShared|Win32'">
  185. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  186. </ImportGroup>
  187. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='CheckedShared|x64'">
  188. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  189. </ImportGroup>
  190. <PropertyGroup Label="UserMacros" />
  191. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  192. <OutDir>..\..\lib\vs2017win7\x86\Debug\</OutDir>
  193. <IntDir>..\..\obj\vs2017win7\miniz\x86\Debug\</IntDir>
  194. <TargetName>openmpt-miniz</TargetName>
  195. <TargetExt>.lib</TargetExt>
  196. </PropertyGroup>
  197. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  198. <OutDir>..\..\lib\vs2017win7\x86_64\Debug\</OutDir>
  199. <IntDir>..\..\obj\vs2017win7\miniz\x86_64\Debug\</IntDir>
  200. <TargetName>openmpt-miniz</TargetName>
  201. <TargetExt>.lib</TargetExt>
  202. </PropertyGroup>
  203. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  204. <OutDir>..\..\lib\vs2017win7\x86\Release\</OutDir>
  205. <IntDir>..\..\obj\vs2017win7\miniz\x86\Release\</IntDir>
  206. <TargetName>openmpt-miniz</TargetName>
  207. <TargetExt>.lib</TargetExt>
  208. </PropertyGroup>
  209. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  210. <OutDir>..\..\lib\vs2017win7\x86_64\Release\</OutDir>
  211. <IntDir>..\..\obj\vs2017win7\miniz\x86_64\Release\</IntDir>
  212. <TargetName>openmpt-miniz</TargetName>
  213. <TargetExt>.lib</TargetExt>
  214. </PropertyGroup>
  215. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Checked|Win32'">
  216. <OutDir>..\..\lib\vs2017win7\x86\Checked\</OutDir>
  217. <IntDir>..\..\obj\vs2017win7\miniz\x86\Checked\</IntDir>
  218. <TargetName>openmpt-miniz</TargetName>
  219. <TargetExt>.lib</TargetExt>
  220. </PropertyGroup>
  221. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Checked|x64'">
  222. <OutDir>..\..\lib\vs2017win7\x86_64\Checked\</OutDir>
  223. <IntDir>..\..\obj\vs2017win7\miniz\x86_64\Checked\</IntDir>
  224. <TargetName>openmpt-miniz</TargetName>
  225. <TargetExt>.lib</TargetExt>
  226. </PropertyGroup>
  227. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugShared|Win32'">
  228. <LinkIncremental>true</LinkIncremental>
  229. <OutDir>..\..\..\bin\debug\vs2017-win7-shared\x86\</OutDir>
  230. <IntDir>..\..\obj\vs2017win7\miniz\x86\DebugShared\</IntDir>
  231. <TargetName>openmpt-miniz</TargetName>
  232. <TargetExt>.dll</TargetExt>
  233. </PropertyGroup>
  234. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugShared|x64'">
  235. <LinkIncremental>true</LinkIncremental>
  236. <OutDir>..\..\..\bin\debug\vs2017-win7-shared\amd64\</OutDir>
  237. <IntDir>..\..\obj\vs2017win7\miniz\x86_64\DebugShared\</IntDir>
  238. <TargetName>openmpt-miniz</TargetName>
  239. <TargetExt>.dll</TargetExt>
  240. </PropertyGroup>
  241. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseShared|Win32'">
  242. <LinkIncremental>false</LinkIncremental>
  243. <OutDir>..\..\..\bin\release\vs2017-win7-shared\x86\</OutDir>
  244. <IntDir>..\..\obj\vs2017win7\miniz\x86\ReleaseShared\</IntDir>
  245. <TargetName>openmpt-miniz</TargetName>
  246. <TargetExt>.dll</TargetExt>
  247. </PropertyGroup>
  248. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseShared|x64'">
  249. <LinkIncremental>false</LinkIncremental>
  250. <OutDir>..\..\..\bin\release\vs2017-win7-shared\amd64\</OutDir>
  251. <IntDir>..\..\obj\vs2017win7\miniz\x86_64\ReleaseShared\</IntDir>
  252. <TargetName>openmpt-miniz</TargetName>
  253. <TargetExt>.dll</TargetExt>
  254. </PropertyGroup>
  255. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='CheckedShared|Win32'">
  256. <LinkIncremental>false</LinkIncremental>
  257. <OutDir>..\..\..\bin\checked\vs2017-win7-shared\x86\</OutDir>
  258. <IntDir>..\..\obj\vs2017win7\miniz\x86\CheckedShared\</IntDir>
  259. <TargetName>openmpt-miniz</TargetName>
  260. <TargetExt>.dll</TargetExt>
  261. </PropertyGroup>
  262. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='CheckedShared|x64'">
  263. <LinkIncremental>false</LinkIncremental>
  264. <OutDir>..\..\..\bin\checked\vs2017-win7-shared\amd64\</OutDir>
  265. <IntDir>..\..\obj\vs2017win7\miniz\x86_64\CheckedShared\</IntDir>
  266. <TargetName>openmpt-miniz</TargetName>
  267. <TargetExt>.dll</TargetExt>
  268. </PropertyGroup>
  269. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  270. <ClCompile>
  271. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  272. <WarningLevel>Level3</WarningLevel>
  273. <PreprocessorDefinitions>DEBUG;MPT_BUILD_DEBUG;MPT_BUILD_MSVC_STATIC;MPT_BUILD_MSVC;WIN32;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES=1;_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES_COUNT=1;_WIN32_WINNT=0x0601;NTDDI_VERSION=0x06010000;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  274. <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
  275. <Optimization>Disabled</Optimization>
  276. <MinimalRebuild>false</MinimalRebuild>
  277. <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
  278. <MultiProcessorCompilation>true</MultiProcessorCompilation>
  279. <AdditionalOptions>/wd4244 %(AdditionalOptions)</AdditionalOptions>
  280. </ClCompile>
  281. <Link>
  282. <SubSystem>Windows</SubSystem>
  283. <FullProgramDatabaseFile>true</FullProgramDatabaseFile>
  284. <GenerateDebugInformation>DebugFastLink</GenerateDebugInformation>
  285. </Link>
  286. </ItemDefinitionGroup>
  287. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  288. <ClCompile>
  289. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  290. <WarningLevel>Level3</WarningLevel>
  291. <PreprocessorDefinitions>DEBUG;MPT_BUILD_DEBUG;MPT_BUILD_MSVC_STATIC;MPT_BUILD_MSVC;WIN32;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES=1;_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES_COUNT=1;_WIN32_WINNT=0x0601;NTDDI_VERSION=0x06010000;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  292. <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
  293. <Optimization>Disabled</Optimization>
  294. <MinimalRebuild>false</MinimalRebuild>
  295. <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
  296. <MultiProcessorCompilation>true</MultiProcessorCompilation>
  297. <AdditionalOptions>/wd4244 %(AdditionalOptions)</AdditionalOptions>
  298. </ClCompile>
  299. <Link>
  300. <SubSystem>Windows</SubSystem>
  301. <FullProgramDatabaseFile>true</FullProgramDatabaseFile>
  302. <GenerateDebugInformation>DebugFastLink</GenerateDebugInformation>
  303. </Link>
  304. </ItemDefinitionGroup>
  305. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  306. <ClCompile>
  307. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  308. <WarningLevel>Level3</WarningLevel>
  309. <PreprocessorDefinitions>NDEBUG;MPT_BUILD_MSVC_STATIC;MPT_BUILD_MSVC;WIN32;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES=1;_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES_COUNT=1;_WIN32_WINNT=0x0601;NTDDI_VERSION=0x06010000;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  310. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  311. <Optimization>MaxSpeed</Optimization>
  312. <FunctionLevelLinking>true</FunctionLevelLinking>
  313. <IntrinsicFunctions>true</IntrinsicFunctions>
  314. <MinimalRebuild>false</MinimalRebuild>
  315. <StringPooling>true</StringPooling>
  316. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  317. <EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
  318. <MultiProcessorCompilation>true</MultiProcessorCompilation>
  319. <AdditionalOptions>/wd4244 %(AdditionalOptions)</AdditionalOptions>
  320. </ClCompile>
  321. <Link>
  322. <SubSystem>Windows</SubSystem>
  323. <GenerateDebugInformation>true</GenerateDebugInformation>
  324. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  325. <OptimizeReferences>true</OptimizeReferences>
  326. </Link>
  327. </ItemDefinitionGroup>
  328. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  329. <ClCompile>
  330. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  331. <WarningLevel>Level3</WarningLevel>
  332. <PreprocessorDefinitions>NDEBUG;MPT_BUILD_MSVC_STATIC;MPT_BUILD_MSVC;WIN32;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES=1;_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES_COUNT=1;_WIN32_WINNT=0x0601;NTDDI_VERSION=0x06010000;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  333. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  334. <Optimization>MaxSpeed</Optimization>
  335. <FunctionLevelLinking>true</FunctionLevelLinking>
  336. <IntrinsicFunctions>true</IntrinsicFunctions>
  337. <MinimalRebuild>false</MinimalRebuild>
  338. <StringPooling>true</StringPooling>
  339. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  340. <MultiProcessorCompilation>true</MultiProcessorCompilation>
  341. <AdditionalOptions>/wd4244 %(AdditionalOptions)</AdditionalOptions>
  342. </ClCompile>
  343. <Link>
  344. <SubSystem>Windows</SubSystem>
  345. <GenerateDebugInformation>true</GenerateDebugInformation>
  346. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  347. <OptimizeReferences>true</OptimizeReferences>
  348. </Link>
  349. </ItemDefinitionGroup>
  350. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Checked|Win32'">
  351. <ClCompile>
  352. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  353. <WarningLevel>Level3</WarningLevel>
  354. <PreprocessorDefinitions>DEBUG;MPT_BUILD_MSVC_STATIC;MPT_BUILD_CHECKED;MPT_BUILD_MSVC;WIN32;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES=1;_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES_COUNT=1;_WIN32_WINNT=0x0601;NTDDI_VERSION=0x06010000;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  355. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  356. <Optimization>Full</Optimization>
  357. <FunctionLevelLinking>true</FunctionLevelLinking>
  358. <IntrinsicFunctions>true</IntrinsicFunctions>
  359. <MinimalRebuild>false</MinimalRebuild>
  360. <OmitFramePointers>false</OmitFramePointers>
  361. <StringPooling>true</StringPooling>
  362. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  363. <EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
  364. <MultiProcessorCompilation>true</MultiProcessorCompilation>
  365. <AdditionalOptions>/wd4244 %(AdditionalOptions)</AdditionalOptions>
  366. </ClCompile>
  367. <Link>
  368. <SubSystem>Windows</SubSystem>
  369. <GenerateDebugInformation>true</GenerateDebugInformation>
  370. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  371. <OptimizeReferences>true</OptimizeReferences>
  372. </Link>
  373. </ItemDefinitionGroup>
  374. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Checked|x64'">
  375. <ClCompile>
  376. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  377. <WarningLevel>Level3</WarningLevel>
  378. <PreprocessorDefinitions>DEBUG;MPT_BUILD_MSVC_STATIC;MPT_BUILD_CHECKED;MPT_BUILD_MSVC;WIN32;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES=1;_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES_COUNT=1;_WIN32_WINNT=0x0601;NTDDI_VERSION=0x06010000;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  379. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  380. <Optimization>Full</Optimization>
  381. <FunctionLevelLinking>true</FunctionLevelLinking>
  382. <IntrinsicFunctions>true</IntrinsicFunctions>
  383. <MinimalRebuild>false</MinimalRebuild>
  384. <OmitFramePointers>false</OmitFramePointers>
  385. <StringPooling>true</StringPooling>
  386. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  387. <MultiProcessorCompilation>true</MultiProcessorCompilation>
  388. <AdditionalOptions>/wd4244 %(AdditionalOptions)</AdditionalOptions>
  389. </ClCompile>
  390. <Link>
  391. <SubSystem>Windows</SubSystem>
  392. <GenerateDebugInformation>true</GenerateDebugInformation>
  393. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  394. <OptimizeReferences>true</OptimizeReferences>
  395. </Link>
  396. </ItemDefinitionGroup>
  397. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DebugShared|Win32'">
  398. <ClCompile>
  399. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  400. <WarningLevel>Level3</WarningLevel>
  401. <PreprocessorDefinitions>DEBUG;MPT_BUILD_DEBUG;MPT_BUILD_MSVC_SHARED;MPT_BUILD_MSVC;WIN32;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES=1;_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES_COUNT=1;_WIN32_WINNT=0x0601;NTDDI_VERSION=0x06010000;MINIZ_EXPORT=__declspec(dllexport);%(PreprocessorDefinitions)</PreprocessorDefinitions>
  402. <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
  403. <Optimization>Disabled</Optimization>
  404. <MinimalRebuild>false</MinimalRebuild>
  405. <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
  406. <MultiProcessorCompilation>true</MultiProcessorCompilation>
  407. <AdditionalOptions>/wd4244 %(AdditionalOptions)</AdditionalOptions>
  408. </ClCompile>
  409. <Link>
  410. <SubSystem>Windows</SubSystem>
  411. <GenerateDebugInformation>true</GenerateDebugInformation>
  412. <ImportLibrary>..\..\..\bin\debug\vs2017-win7-shared\x86\openmpt-miniz.lib</ImportLibrary>
  413. </Link>
  414. </ItemDefinitionGroup>
  415. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DebugShared|x64'">
  416. <ClCompile>
  417. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  418. <WarningLevel>Level3</WarningLevel>
  419. <PreprocessorDefinitions>DEBUG;MPT_BUILD_DEBUG;MPT_BUILD_MSVC_SHARED;MPT_BUILD_MSVC;WIN32;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES=1;_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES_COUNT=1;_WIN32_WINNT=0x0601;NTDDI_VERSION=0x06010000;MINIZ_EXPORT=__declspec(dllexport);%(PreprocessorDefinitions)</PreprocessorDefinitions>
  420. <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
  421. <Optimization>Disabled</Optimization>
  422. <MinimalRebuild>false</MinimalRebuild>
  423. <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
  424. <MultiProcessorCompilation>true</MultiProcessorCompilation>
  425. <AdditionalOptions>/wd4244 %(AdditionalOptions)</AdditionalOptions>
  426. </ClCompile>
  427. <Link>
  428. <SubSystem>Windows</SubSystem>
  429. <GenerateDebugInformation>true</GenerateDebugInformation>
  430. <ImportLibrary>..\..\..\bin\debug\vs2017-win7-shared\amd64\openmpt-miniz.lib</ImportLibrary>
  431. </Link>
  432. </ItemDefinitionGroup>
  433. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseShared|Win32'">
  434. <ClCompile>
  435. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  436. <WarningLevel>Level3</WarningLevel>
  437. <PreprocessorDefinitions>NDEBUG;MPT_BUILD_MSVC_SHARED;MPT_BUILD_MSVC;WIN32;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES=1;_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES_COUNT=1;_WIN32_WINNT=0x0601;NTDDI_VERSION=0x06010000;MINIZ_EXPORT=__declspec(dllexport);%(PreprocessorDefinitions)</PreprocessorDefinitions>
  438. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  439. <Optimization>MaxSpeed</Optimization>
  440. <FunctionLevelLinking>true</FunctionLevelLinking>
  441. <IntrinsicFunctions>true</IntrinsicFunctions>
  442. <MinimalRebuild>false</MinimalRebuild>
  443. <StringPooling>true</StringPooling>
  444. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  445. <EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
  446. <MultiProcessorCompilation>true</MultiProcessorCompilation>
  447. <AdditionalOptions>/wd4244 %(AdditionalOptions)</AdditionalOptions>
  448. </ClCompile>
  449. <Link>
  450. <SubSystem>Windows</SubSystem>
  451. <GenerateDebugInformation>true</GenerateDebugInformation>
  452. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  453. <OptimizeReferences>true</OptimizeReferences>
  454. <ImportLibrary>..\..\..\bin\release\vs2017-win7-shared\x86\openmpt-miniz.lib</ImportLibrary>
  455. </Link>
  456. </ItemDefinitionGroup>
  457. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseShared|x64'">
  458. <ClCompile>
  459. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  460. <WarningLevel>Level3</WarningLevel>
  461. <PreprocessorDefinitions>NDEBUG;MPT_BUILD_MSVC_SHARED;MPT_BUILD_MSVC;WIN32;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES=1;_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES_COUNT=1;_WIN32_WINNT=0x0601;NTDDI_VERSION=0x06010000;MINIZ_EXPORT=__declspec(dllexport);%(PreprocessorDefinitions)</PreprocessorDefinitions>
  462. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  463. <Optimization>MaxSpeed</Optimization>
  464. <FunctionLevelLinking>true</FunctionLevelLinking>
  465. <IntrinsicFunctions>true</IntrinsicFunctions>
  466. <MinimalRebuild>false</MinimalRebuild>
  467. <StringPooling>true</StringPooling>
  468. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  469. <MultiProcessorCompilation>true</MultiProcessorCompilation>
  470. <AdditionalOptions>/wd4244 %(AdditionalOptions)</AdditionalOptions>
  471. </ClCompile>
  472. <Link>
  473. <SubSystem>Windows</SubSystem>
  474. <GenerateDebugInformation>true</GenerateDebugInformation>
  475. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  476. <OptimizeReferences>true</OptimizeReferences>
  477. <ImportLibrary>..\..\..\bin\release\vs2017-win7-shared\amd64\openmpt-miniz.lib</ImportLibrary>
  478. </Link>
  479. </ItemDefinitionGroup>
  480. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='CheckedShared|Win32'">
  481. <ClCompile>
  482. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  483. <WarningLevel>Level3</WarningLevel>
  484. <PreprocessorDefinitions>DEBUG;MPT_BUILD_MSVC_SHARED;MPT_BUILD_CHECKED;MPT_BUILD_MSVC;WIN32;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES=1;_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES_COUNT=1;_WIN32_WINNT=0x0601;NTDDI_VERSION=0x06010000;MINIZ_EXPORT=__declspec(dllexport);%(PreprocessorDefinitions)</PreprocessorDefinitions>
  485. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  486. <Optimization>Full</Optimization>
  487. <FunctionLevelLinking>true</FunctionLevelLinking>
  488. <IntrinsicFunctions>true</IntrinsicFunctions>
  489. <MinimalRebuild>false</MinimalRebuild>
  490. <OmitFramePointers>false</OmitFramePointers>
  491. <StringPooling>true</StringPooling>
  492. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  493. <EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
  494. <MultiProcessorCompilation>true</MultiProcessorCompilation>
  495. <AdditionalOptions>/wd4244 %(AdditionalOptions)</AdditionalOptions>
  496. </ClCompile>
  497. <Link>
  498. <SubSystem>Windows</SubSystem>
  499. <GenerateDebugInformation>true</GenerateDebugInformation>
  500. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  501. <OptimizeReferences>true</OptimizeReferences>
  502. <ImportLibrary>..\..\..\bin\checked\vs2017-win7-shared\x86\openmpt-miniz.lib</ImportLibrary>
  503. </Link>
  504. </ItemDefinitionGroup>
  505. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='CheckedShared|x64'">
  506. <ClCompile>
  507. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  508. <WarningLevel>Level3</WarningLevel>
  509. <PreprocessorDefinitions>DEBUG;MPT_BUILD_MSVC_SHARED;MPT_BUILD_CHECKED;MPT_BUILD_MSVC;WIN32;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES=1;_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES_COUNT=1;_WIN32_WINNT=0x0601;NTDDI_VERSION=0x06010000;MINIZ_EXPORT=__declspec(dllexport);%(PreprocessorDefinitions)</PreprocessorDefinitions>
  510. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  511. <Optimization>Full</Optimization>
  512. <FunctionLevelLinking>true</FunctionLevelLinking>
  513. <IntrinsicFunctions>true</IntrinsicFunctions>
  514. <MinimalRebuild>false</MinimalRebuild>
  515. <OmitFramePointers>false</OmitFramePointers>
  516. <StringPooling>true</StringPooling>
  517. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  518. <MultiProcessorCompilation>true</MultiProcessorCompilation>
  519. <AdditionalOptions>/wd4244 %(AdditionalOptions)</AdditionalOptions>
  520. </ClCompile>
  521. <Link>
  522. <SubSystem>Windows</SubSystem>
  523. <GenerateDebugInformation>true</GenerateDebugInformation>
  524. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  525. <OptimizeReferences>true</OptimizeReferences>
  526. <ImportLibrary>..\..\..\bin\checked\vs2017-win7-shared\amd64\openmpt-miniz.lib</ImportLibrary>
  527. </Link>
  528. </ItemDefinitionGroup>
  529. <ItemGroup>
  530. <ClInclude Include="..\..\..\include\miniz\miniz.h" />
  531. </ItemGroup>
  532. <ItemGroup>
  533. <ClCompile Include="..\..\..\include\miniz\miniz.c" />
  534. </ItemGroup>
  535. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  536. <ImportGroup Label="ExtensionTargets">
  537. </ImportGroup>
  538. </Project>