LZHAM.vcxproj 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440
  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|ARM">
  5. <Configuration>Debug</Configuration>
  6. <Platform>ARM</Platform>
  7. </ProjectConfiguration>
  8. <ProjectConfiguration Include="Debug|Emscripten">
  9. <Configuration>Debug</Configuration>
  10. <Platform>Emscripten</Platform>
  11. </ProjectConfiguration>
  12. <ProjectConfiguration Include="Debug|Win32">
  13. <Configuration>Debug</Configuration>
  14. <Platform>Win32</Platform>
  15. </ProjectConfiguration>
  16. <ProjectConfiguration Include="Debug|x64">
  17. <Configuration>Debug</Configuration>
  18. <Platform>x64</Platform>
  19. </ProjectConfiguration>
  20. <ProjectConfiguration Include="Release Universal|ARM">
  21. <Configuration>Release Universal</Configuration>
  22. <Platform>ARM</Platform>
  23. </ProjectConfiguration>
  24. <ProjectConfiguration Include="Release Universal|Emscripten">
  25. <Configuration>Release Universal</Configuration>
  26. <Platform>Emscripten</Platform>
  27. </ProjectConfiguration>
  28. <ProjectConfiguration Include="Release Universal|Win32">
  29. <Configuration>Release Universal</Configuration>
  30. <Platform>Win32</Platform>
  31. </ProjectConfiguration>
  32. <ProjectConfiguration Include="Release Universal|x64">
  33. <Configuration>Release Universal</Configuration>
  34. <Platform>x64</Platform>
  35. </ProjectConfiguration>
  36. <ProjectConfiguration Include="Release|ARM">
  37. <Configuration>Release</Configuration>
  38. <Platform>ARM</Platform>
  39. </ProjectConfiguration>
  40. <ProjectConfiguration Include="Release|Emscripten">
  41. <Configuration>Release</Configuration>
  42. <Platform>Emscripten</Platform>
  43. </ProjectConfiguration>
  44. <ProjectConfiguration Include="Release|Win32">
  45. <Configuration>Release</Configuration>
  46. <Platform>Win32</Platform>
  47. </ProjectConfiguration>
  48. <ProjectConfiguration Include="Release|x64">
  49. <Configuration>Release</Configuration>
  50. <Platform>x64</Platform>
  51. </ProjectConfiguration>
  52. </ItemGroup>
  53. <ItemGroup>
  54. <ClCompile Include="..\Source\lzham_assert.cpp" />
  55. <ClCompile Include="..\Source\lzham_checksum.cpp" />
  56. <ClCompile Include="..\Source\lzham_huffman_codes.cpp" />
  57. <ClCompile Include="..\Source\lzham_lzbase.cpp" />
  58. <ClCompile Include="..\Source\lzham_lzcomp.cpp" />
  59. <ClCompile Include="..\Source\lzham_lzcomp_internal.cpp" />
  60. <ClCompile Include="..\Source\lzham_lzcomp_state.cpp" />
  61. <ClCompile Include="..\Source\lzham_lzdecomp.cpp" />
  62. <ClCompile Include="..\Source\lzham_lzdecompbase.cpp" />
  63. <ClCompile Include="..\Source\lzham_match_accel.cpp" />
  64. <ClCompile Include="..\Source\lzham_mem.cpp" />
  65. <ClCompile Include="..\Source\lzham_platform.cpp" />
  66. <ClCompile Include="..\Source\lzham_prefix_coding.cpp" />
  67. <ClCompile Include="..\Source\lzham_pthreads_threading.cpp" />
  68. <ClCompile Include="..\Source\lzham_symbol_codec.cpp" />
  69. <ClCompile Include="..\Source\lzham_timer.cpp" />
  70. <ClCompile Include="..\Source\lzham_vector.cpp" />
  71. <ClCompile Include="..\Source\lzham_win32_threading.cpp" />
  72. </ItemGroup>
  73. <PropertyGroup Label="Globals">
  74. <ProjectGuid>{EDE355DB-F1F0-4596-8400-E14A9ABAA33D}</ProjectGuid>
  75. <RootNamespace>LZHAM</RootNamespace>
  76. <Keyword>Win32Proj</Keyword>
  77. <WindowsTargetPlatformVersion>10.0.10240.0</WindowsTargetPlatformVersion>
  78. </PropertyGroup>
  79. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  80. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  81. <ConfigurationType>StaticLibrary</ConfigurationType>
  82. <PlatformToolset>v140_xp</PlatformToolset>
  83. <CharacterSet>Unicode</CharacterSet>
  84. <WholeProgramOptimization>true</WholeProgramOptimization>
  85. </PropertyGroup>
  86. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="Configuration">
  87. <ConfigurationType>StaticLibrary</ConfigurationType>
  88. <PlatformToolset>v140</PlatformToolset>
  89. <CharacterSet>Unicode</CharacterSet>
  90. <WholeProgramOptimization>true</WholeProgramOptimization>
  91. </PropertyGroup>
  92. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Universal|Win32'" Label="Configuration">
  93. <ConfigurationType>StaticLibrary</ConfigurationType>
  94. <PlatformToolset>v140_xp</PlatformToolset>
  95. <CharacterSet>Unicode</CharacterSet>
  96. <WholeProgramOptimization>true</WholeProgramOptimization>
  97. </PropertyGroup>
  98. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Universal|ARM'" Label="Configuration">
  99. <ConfigurationType>StaticLibrary</ConfigurationType>
  100. <PlatformToolset>v140</PlatformToolset>
  101. <CharacterSet>Unicode</CharacterSet>
  102. <WholeProgramOptimization>true</WholeProgramOptimization>
  103. </PropertyGroup>
  104. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  105. <ConfigurationType>StaticLibrary</ConfigurationType>
  106. <PlatformToolset>v140_xp</PlatformToolset>
  107. <CharacterSet>Unicode</CharacterSet>
  108. </PropertyGroup>
  109. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration">
  110. <ConfigurationType>StaticLibrary</ConfigurationType>
  111. <PlatformToolset>v140</PlatformToolset>
  112. <CharacterSet>Unicode</CharacterSet>
  113. </PropertyGroup>
  114. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  115. <ConfigurationType>StaticLibrary</ConfigurationType>
  116. <PlatformToolset>v140_xp</PlatformToolset>
  117. <CharacterSet>Unicode</CharacterSet>
  118. <WholeProgramOptimization>true</WholeProgramOptimization>
  119. </PropertyGroup>
  120. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Universal|x64'" Label="Configuration">
  121. <ConfigurationType>StaticLibrary</ConfigurationType>
  122. <PlatformToolset>v140_xp</PlatformToolset>
  123. <CharacterSet>Unicode</CharacterSet>
  124. <WholeProgramOptimization>true</WholeProgramOptimization>
  125. </PropertyGroup>
  126. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Emscripten'" Label="Configuration">
  127. <ConfigurationType>StaticLibrary</ConfigurationType>
  128. <PlatformToolset>emcc</PlatformToolset>
  129. <CharacterSet>Unicode</CharacterSet>
  130. <WholeProgramOptimization>true</WholeProgramOptimization>
  131. </PropertyGroup>
  132. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Universal|Emscripten'" Label="Configuration">
  133. <ConfigurationType>StaticLibrary</ConfigurationType>
  134. <PlatformToolset>emcc</PlatformToolset>
  135. <CharacterSet>Unicode</CharacterSet>
  136. <WholeProgramOptimization>true</WholeProgramOptimization>
  137. </PropertyGroup>
  138. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  139. <ConfigurationType>StaticLibrary</ConfigurationType>
  140. <PlatformToolset>v140_xp</PlatformToolset>
  141. <CharacterSet>Unicode</CharacterSet>
  142. </PropertyGroup>
  143. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Emscripten'" Label="Configuration">
  144. <ConfigurationType>StaticLibrary</ConfigurationType>
  145. <PlatformToolset>v120</PlatformToolset>
  146. <CharacterSet>Unicode</CharacterSet>
  147. </PropertyGroup>
  148. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  149. <ImportGroup Label="ExtensionSettings">
  150. </ImportGroup>
  151. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
  152. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  153. </ImportGroup>
  154. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="PropertySheets">
  155. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  156. </ImportGroup>
  157. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Universal|Win32'" Label="PropertySheets">
  158. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  159. </ImportGroup>
  160. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Universal|ARM'" Label="PropertySheets">
  161. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  162. </ImportGroup>
  163. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
  164. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  165. </ImportGroup>
  166. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="PropertySheets">
  167. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  168. </ImportGroup>
  169. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
  170. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  171. </ImportGroup>
  172. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Universal|x64'" Label="PropertySheets">
  173. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  174. </ImportGroup>
  175. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Emscripten'" Label="PropertySheets">
  176. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  177. </ImportGroup>
  178. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Universal|Emscripten'" Label="PropertySheets">
  179. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  180. </ImportGroup>
  181. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
  182. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  183. </ImportGroup>
  184. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Emscripten'" Label="PropertySheets">
  185. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  186. </ImportGroup>
  187. <PropertyGroup Label="UserMacros" />
  188. <PropertyGroup>
  189. <_ProjectFileVersion>12.0.21005.1</_ProjectFileVersion>
  190. </PropertyGroup>
  191. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  192. <ClCompile>
  193. <Optimization>Disabled</Optimization>
  194. <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  195. <MinimalRebuild>true</MinimalRebuild>
  196. <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
  197. <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
  198. <PrecompiledHeader />
  199. <WarningLevel>Level3</WarningLevel>
  200. <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
  201. </ClCompile>
  202. </ItemDefinitionGroup>
  203. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
  204. <ClCompile>
  205. <Optimization>Disabled</Optimization>
  206. <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  207. <MinimalRebuild>true</MinimalRebuild>
  208. <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
  209. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  210. <PrecompiledHeader>
  211. </PrecompiledHeader>
  212. <WarningLevel>Level3</WarningLevel>
  213. <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
  214. </ClCompile>
  215. </ItemDefinitionGroup>
  216. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  217. <Midl>
  218. <TargetEnvironment>X64</TargetEnvironment>
  219. </Midl>
  220. <ClCompile>
  221. <Optimization>Disabled</Optimization>
  222. <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  223. <MinimalRebuild>true</MinimalRebuild>
  224. <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
  225. <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
  226. <PrecompiledHeader />
  227. <WarningLevel>Level3</WarningLevel>
  228. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  229. </ClCompile>
  230. </ItemDefinitionGroup>
  231. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Emscripten'">
  232. <Midl />
  233. <ClCompile>
  234. <Optimization>Disabled</Optimization>
  235. <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  236. <MinimalRebuild>true</MinimalRebuild>
  237. <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
  238. <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
  239. <PrecompiledHeader>
  240. </PrecompiledHeader>
  241. <WarningLevel>Level3</WarningLevel>
  242. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  243. </ClCompile>
  244. </ItemDefinitionGroup>
  245. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  246. <ClCompile>
  247. <Optimization>Full</Optimization>
  248. <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
  249. <IntrinsicFunctions>true</IntrinsicFunctions>
  250. <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
  251. <OmitFramePointers>true</OmitFramePointers>
  252. <EnableFiberSafeOptimizations>true</EnableFiberSafeOptimizations>
  253. <WholeProgramOptimization>false</WholeProgramOptimization>
  254. <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  255. <StringPooling>true</StringPooling>
  256. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  257. <BufferSecurityCheck>false</BufferSecurityCheck>
  258. <FunctionLevelLinking>true</FunctionLevelLinking>
  259. <EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
  260. <PrecompiledHeader />
  261. <WarningLevel>Level3</WarningLevel>
  262. <DebugInformationFormat />
  263. <EnableParallelCodeGeneration>true</EnableParallelCodeGeneration>
  264. <FloatingPointModel>Fast</FloatingPointModel>
  265. </ClCompile>
  266. </ItemDefinitionGroup>
  267. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
  268. <ClCompile>
  269. <Optimization>Full</Optimization>
  270. <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
  271. <IntrinsicFunctions>true</IntrinsicFunctions>
  272. <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
  273. <OmitFramePointers>true</OmitFramePointers>
  274. <EnableFiberSafeOptimizations>true</EnableFiberSafeOptimizations>
  275. <WholeProgramOptimization>false</WholeProgramOptimization>
  276. <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  277. <StringPooling>true</StringPooling>
  278. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  279. <BufferSecurityCheck>false</BufferSecurityCheck>
  280. <FunctionLevelLinking>true</FunctionLevelLinking>
  281. <EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
  282. <PrecompiledHeader>
  283. </PrecompiledHeader>
  284. <WarningLevel>Level3</WarningLevel>
  285. <DebugInformationFormat>
  286. </DebugInformationFormat>
  287. <EnableParallelCodeGeneration>true</EnableParallelCodeGeneration>
  288. <FloatingPointModel>Fast</FloatingPointModel>
  289. </ClCompile>
  290. </ItemDefinitionGroup>
  291. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Universal|Win32'">
  292. <ClCompile>
  293. <Optimization>Full</Optimization>
  294. <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
  295. <IntrinsicFunctions>true</IntrinsicFunctions>
  296. <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
  297. <OmitFramePointers>true</OmitFramePointers>
  298. <EnableFiberSafeOptimizations>true</EnableFiberSafeOptimizations>
  299. <WholeProgramOptimization>false</WholeProgramOptimization>
  300. <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  301. <StringPooling>true</StringPooling>
  302. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  303. <BufferSecurityCheck>false</BufferSecurityCheck>
  304. <FunctionLevelLinking>true</FunctionLevelLinking>
  305. <EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
  306. <PrecompiledHeader>
  307. </PrecompiledHeader>
  308. <WarningLevel>Level3</WarningLevel>
  309. <DebugInformationFormat>
  310. </DebugInformationFormat>
  311. <EnableParallelCodeGeneration>true</EnableParallelCodeGeneration>
  312. <FloatingPointModel>Fast</FloatingPointModel>
  313. </ClCompile>
  314. </ItemDefinitionGroup>
  315. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Universal|ARM'">
  316. <ClCompile>
  317. <Optimization>Full</Optimization>
  318. <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
  319. <IntrinsicFunctions>true</IntrinsicFunctions>
  320. <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
  321. <OmitFramePointers>true</OmitFramePointers>
  322. <EnableFiberSafeOptimizations>true</EnableFiberSafeOptimizations>
  323. <WholeProgramOptimization>false</WholeProgramOptimization>
  324. <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  325. <StringPooling>true</StringPooling>
  326. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  327. <BufferSecurityCheck>false</BufferSecurityCheck>
  328. <FunctionLevelLinking>true</FunctionLevelLinking>
  329. <EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
  330. <PrecompiledHeader>
  331. </PrecompiledHeader>
  332. <WarningLevel>Level3</WarningLevel>
  333. <DebugInformationFormat>
  334. </DebugInformationFormat>
  335. <EnableParallelCodeGeneration>true</EnableParallelCodeGeneration>
  336. <FloatingPointModel>Fast</FloatingPointModel>
  337. </ClCompile>
  338. </ItemDefinitionGroup>
  339. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  340. <Midl>
  341. <TargetEnvironment>X64</TargetEnvironment>
  342. </Midl>
  343. <ClCompile>
  344. <Optimization>Full</Optimization>
  345. <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
  346. <IntrinsicFunctions>true</IntrinsicFunctions>
  347. <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
  348. <OmitFramePointers>true</OmitFramePointers>
  349. <EnableFiberSafeOptimizations>true</EnableFiberSafeOptimizations>
  350. <WholeProgramOptimization>false</WholeProgramOptimization>
  351. <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  352. <StringPooling>true</StringPooling>
  353. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  354. <BufferSecurityCheck>false</BufferSecurityCheck>
  355. <FunctionLevelLinking>true</FunctionLevelLinking>
  356. <EnableEnhancedInstructionSet>NotSet</EnableEnhancedInstructionSet>
  357. <PrecompiledHeader />
  358. <WarningLevel>Level3</WarningLevel>
  359. <DebugInformationFormat />
  360. <EnableParallelCodeGeneration>true</EnableParallelCodeGeneration>
  361. <FloatingPointModel>Fast</FloatingPointModel>
  362. </ClCompile>
  363. </ItemDefinitionGroup>
  364. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Universal|x64'">
  365. <Midl>
  366. <TargetEnvironment>X64</TargetEnvironment>
  367. </Midl>
  368. <ClCompile>
  369. <Optimization>Full</Optimization>
  370. <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
  371. <IntrinsicFunctions>true</IntrinsicFunctions>
  372. <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
  373. <OmitFramePointers>true</OmitFramePointers>
  374. <EnableFiberSafeOptimizations>true</EnableFiberSafeOptimizations>
  375. <WholeProgramOptimization>false</WholeProgramOptimization>
  376. <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  377. <StringPooling>true</StringPooling>
  378. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  379. <BufferSecurityCheck>false</BufferSecurityCheck>
  380. <FunctionLevelLinking>true</FunctionLevelLinking>
  381. <EnableEnhancedInstructionSet>NotSet</EnableEnhancedInstructionSet>
  382. <PrecompiledHeader>
  383. </PrecompiledHeader>
  384. <WarningLevel>Level3</WarningLevel>
  385. <DebugInformationFormat>
  386. </DebugInformationFormat>
  387. <EnableParallelCodeGeneration>true</EnableParallelCodeGeneration>
  388. <FloatingPointModel>Fast</FloatingPointModel>
  389. </ClCompile>
  390. </ItemDefinitionGroup>
  391. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Emscripten'">
  392. <Midl />
  393. <ClCompile>
  394. <Optimization>MaxSpeed</Optimization>
  395. <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
  396. <IntrinsicFunctions>true</IntrinsicFunctions>
  397. <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
  398. <OmitFramePointers>true</OmitFramePointers>
  399. <EnableFiberSafeOptimizations>true</EnableFiberSafeOptimizations>
  400. <WholeProgramOptimization>false</WholeProgramOptimization>
  401. <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  402. <StringPooling>true</StringPooling>
  403. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  404. <BufferSecurityCheck>false</BufferSecurityCheck>
  405. <FunctionLevelLinking>true</FunctionLevelLinking>
  406. <EnableEnhancedInstructionSet>NotSet</EnableEnhancedInstructionSet>
  407. <PrecompiledHeader>
  408. </PrecompiledHeader>
  409. <WarningLevel>Level3</WarningLevel>
  410. <DebugInformationFormat>
  411. </DebugInformationFormat>
  412. </ClCompile>
  413. </ItemDefinitionGroup>
  414. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Universal|Emscripten'">
  415. <Midl />
  416. <ClCompile>
  417. <Optimization>MaxSpeed</Optimization>
  418. <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
  419. <IntrinsicFunctions>true</IntrinsicFunctions>
  420. <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
  421. <OmitFramePointers>true</OmitFramePointers>
  422. <EnableFiberSafeOptimizations>true</EnableFiberSafeOptimizations>
  423. <WholeProgramOptimization>false</WholeProgramOptimization>
  424. <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  425. <StringPooling>true</StringPooling>
  426. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  427. <BufferSecurityCheck>false</BufferSecurityCheck>
  428. <FunctionLevelLinking>true</FunctionLevelLinking>
  429. <EnableEnhancedInstructionSet>NotSet</EnableEnhancedInstructionSet>
  430. <PrecompiledHeader>
  431. </PrecompiledHeader>
  432. <WarningLevel>Level3</WarningLevel>
  433. <DebugInformationFormat>
  434. </DebugInformationFormat>
  435. </ClCompile>
  436. </ItemDefinitionGroup>
  437. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  438. <ImportGroup Label="ExtensionTargets">
  439. </ImportGroup>
  440. </Project>