cglm.vcxproj 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588
  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|ARM">
  5. <Configuration>Debug</Configuration>
  6. <Platform>ARM</Platform>
  7. </ProjectConfiguration>
  8. <ProjectConfiguration Include="Debug|ARM64">
  9. <Configuration>Debug</Configuration>
  10. <Platform>ARM64</Platform>
  11. </ProjectConfiguration>
  12. <ProjectConfiguration Include="Debug|ARM64EC">
  13. <Configuration>Debug</Configuration>
  14. <Platform>ARM64EC</Platform>
  15. </ProjectConfiguration>
  16. <ProjectConfiguration Include="Debug|Win32">
  17. <Configuration>Debug</Configuration>
  18. <Platform>Win32</Platform>
  19. </ProjectConfiguration>
  20. <ProjectConfiguration Include="Release|ARM">
  21. <Configuration>Release</Configuration>
  22. <Platform>ARM</Platform>
  23. </ProjectConfiguration>
  24. <ProjectConfiguration Include="Release|ARM64">
  25. <Configuration>Release</Configuration>
  26. <Platform>ARM64</Platform>
  27. </ProjectConfiguration>
  28. <ProjectConfiguration Include="Release|ARM64EC">
  29. <Configuration>Release</Configuration>
  30. <Platform>ARM64EC</Platform>
  31. </ProjectConfiguration>
  32. <ProjectConfiguration Include="Release|Win32">
  33. <Configuration>Release</Configuration>
  34. <Platform>Win32</Platform>
  35. </ProjectConfiguration>
  36. <ProjectConfiguration Include="Debug|x64">
  37. <Configuration>Debug</Configuration>
  38. <Platform>x64</Platform>
  39. </ProjectConfiguration>
  40. <ProjectConfiguration Include="Release|x64">
  41. <Configuration>Release</Configuration>
  42. <Platform>x64</Platform>
  43. </ProjectConfiguration>
  44. </ItemGroup>
  45. <ItemGroup>
  46. <ClCompile Include="..\src\affine.c" />
  47. <ClCompile Include="..\src\affine2d.c" />
  48. <ClCompile Include="..\src\bezier.c" />
  49. <ClCompile Include="..\src\box.c" />
  50. <ClCompile Include="..\src\cam.c" />
  51. <ClCompile Include="..\src\clipspace\ortho_lh_no.c" />
  52. <ClCompile Include="..\src\clipspace\ortho_lh_zo.c" />
  53. <ClCompile Include="..\src\clipspace\ortho_rh_no.c" />
  54. <ClCompile Include="..\src\clipspace\ortho_rh_zo.c" />
  55. <ClCompile Include="..\src\clipspace\persp_lh_no.c" />
  56. <ClCompile Include="..\src\clipspace\persp_lh_zo.c" />
  57. <ClCompile Include="..\src\clipspace\persp_rh_no.c" />
  58. <ClCompile Include="..\src\clipspace\persp_rh_zo.c" />
  59. <ClCompile Include="..\src\clipspace\project_no.c" />
  60. <ClCompile Include="..\src\clipspace\project_zo.c" />
  61. <ClCompile Include="..\src\clipspace\view_lh_no.c" />
  62. <ClCompile Include="..\src\clipspace\view_lh_zo.c" />
  63. <ClCompile Include="..\src\clipspace\view_rh_no.c" />
  64. <ClCompile Include="..\src\clipspace\view_rh_zo.c" />
  65. <ClCompile Include="..\src\curve.c" />
  66. <ClCompile Include="..\src\ease.c" />
  67. <ClCompile Include="..\src\euler.c" />
  68. <ClCompile Include="..\src\frustum.c" />
  69. <ClCompile Include="..\src\io.c" />
  70. <ClCompile Include="..\src\ivec2.c" />
  71. <ClCompile Include="..\src\ivec3.c" />
  72. <ClCompile Include="..\src\ivec4.c" />
  73. <ClCompile Include="..\src\mat2.c" />
  74. <ClCompile Include="..\src\mat3.c" />
  75. <ClCompile Include="..\src\mat4.c" />
  76. <ClCompile Include="..\src\plane.c" />
  77. <ClCompile Include="..\src\project.c" />
  78. <ClCompile Include="..\src\quat.c" />
  79. <ClCompile Include="..\src\ray.c" />
  80. <ClCompile Include="..\src\sphere.c" />
  81. <ClCompile Include="..\src\vec2.c" />
  82. <ClCompile Include="..\src\vec3.c" />
  83. <ClCompile Include="..\src\vec4.c" />
  84. </ItemGroup>
  85. <ItemGroup>
  86. <ClInclude Include="..\include\cglm\affine-mat.h" />
  87. <ClInclude Include="..\include\cglm\affine-post.h" />
  88. <ClInclude Include="..\include\cglm\affine-pre.h" />
  89. <ClInclude Include="..\include\cglm\affine.h" />
  90. <ClInclude Include="..\include\cglm\affine2d.h" />
  91. <ClInclude Include="..\include\cglm\applesimd.h" />
  92. <ClInclude Include="..\include\cglm\bezier.h" />
  93. <ClInclude Include="..\include\cglm\box.h" />
  94. <ClInclude Include="..\include\cglm\call.h" />
  95. <ClInclude Include="..\include\cglm\call\affine.h" />
  96. <ClInclude Include="..\include\cglm\call\affine2d.h" />
  97. <ClInclude Include="..\include\cglm\call\bezier.h" />
  98. <ClInclude Include="..\include\cglm\call\box.h" />
  99. <ClInclude Include="..\include\cglm\call\cam.h" />
  100. <ClInclude Include="..\include\cglm\call\clipspace\ortho_lh_no.h" />
  101. <ClInclude Include="..\include\cglm\call\clipspace\ortho_lh_zo.h" />
  102. <ClInclude Include="..\include\cglm\call\clipspace\ortho_rh_no.h" />
  103. <ClInclude Include="..\include\cglm\call\clipspace\ortho_rh_zo.h" />
  104. <ClInclude Include="..\include\cglm\call\clipspace\persp_lh_no.h" />
  105. <ClInclude Include="..\include\cglm\call\clipspace\persp_lh_zo.h" />
  106. <ClInclude Include="..\include\cglm\call\clipspace\persp_rh_no.h" />
  107. <ClInclude Include="..\include\cglm\call\clipspace\persp_rh_zo.h" />
  108. <ClInclude Include="..\include\cglm\call\clipspace\project_no.h" />
  109. <ClInclude Include="..\include\cglm\call\clipspace\project_zo.h" />
  110. <ClInclude Include="..\include\cglm\call\clipspace\view_lh_no.h" />
  111. <ClInclude Include="..\include\cglm\call\clipspace\view_lh_zo.h" />
  112. <ClInclude Include="..\include\cglm\call\clipspace\view_rh_no.h" />
  113. <ClInclude Include="..\include\cglm\call\clipspace\view_rh_zo.h" />
  114. <ClInclude Include="..\include\cglm\call\curve.h" />
  115. <ClInclude Include="..\include\cglm\call\ease.h" />
  116. <ClInclude Include="..\include\cglm\call\euler.h" />
  117. <ClInclude Include="..\include\cglm\call\frustum.h" />
  118. <ClInclude Include="..\include\cglm\call\io.h" />
  119. <ClInclude Include="..\include\cglm\call\ivec2.h" />
  120. <ClInclude Include="..\include\cglm\call\ivec3.h" />
  121. <ClInclude Include="..\include\cglm\call\ivec4.h" />
  122. <ClInclude Include="..\include\cglm\call\mat2.h" />
  123. <ClInclude Include="..\include\cglm\call\mat3.h" />
  124. <ClInclude Include="..\include\cglm\call\mat4.h" />
  125. <ClInclude Include="..\include\cglm\call\plane.h" />
  126. <ClInclude Include="..\include\cglm\call\project.h" />
  127. <ClInclude Include="..\include\cglm\call\quat.h" />
  128. <ClInclude Include="..\include\cglm\call\ray.h" />
  129. <ClInclude Include="..\include\cglm\call\sphere.h" />
  130. <ClInclude Include="..\include\cglm\call\vec2.h" />
  131. <ClInclude Include="..\include\cglm\call\vec3.h" />
  132. <ClInclude Include="..\include\cglm\call\vec4.h" />
  133. <ClInclude Include="..\include\cglm\cam.h" />
  134. <ClInclude Include="..\include\cglm\cglm.h" />
  135. <ClInclude Include="..\include\cglm\clipspace\ortho_lh_no.h" />
  136. <ClInclude Include="..\include\cglm\clipspace\ortho_lh_zo.h" />
  137. <ClInclude Include="..\include\cglm\clipspace\ortho_rh_no.h" />
  138. <ClInclude Include="..\include\cglm\clipspace\ortho_rh_zo.h" />
  139. <ClInclude Include="..\include\cglm\clipspace\persp.h" />
  140. <ClInclude Include="..\include\cglm\clipspace\persp_lh_no.h" />
  141. <ClInclude Include="..\include\cglm\clipspace\persp_lh_zo.h" />
  142. <ClInclude Include="..\include\cglm\clipspace\persp_rh_no.h" />
  143. <ClInclude Include="..\include\cglm\clipspace\persp_rh_zo.h" />
  144. <ClInclude Include="..\include\cglm\clipspace\project_no.h" />
  145. <ClInclude Include="..\include\cglm\clipspace\project_zo.h" />
  146. <ClInclude Include="..\include\cglm\clipspace\view_lh.h" />
  147. <ClInclude Include="..\include\cglm\clipspace\view_lh_no.h" />
  148. <ClInclude Include="..\include\cglm\clipspace\view_lh_zo.h" />
  149. <ClInclude Include="..\include\cglm\clipspace\view_rh.h" />
  150. <ClInclude Include="..\include\cglm\clipspace\view_rh_no.h" />
  151. <ClInclude Include="..\include\cglm\clipspace\view_rh_zo.h" />
  152. <ClInclude Include="..\include\cglm\color.h" />
  153. <ClInclude Include="..\include\cglm\common.h" />
  154. <ClInclude Include="..\include\cglm\curve.h" />
  155. <ClInclude Include="..\include\cglm\ease.h" />
  156. <ClInclude Include="..\include\cglm\euler.h" />
  157. <ClInclude Include="..\include\cglm\frustum.h" />
  158. <ClInclude Include="..\include\cglm\io.h" />
  159. <ClInclude Include="..\include\cglm\ivec2.h" />
  160. <ClInclude Include="..\include\cglm\ivec3.h" />
  161. <ClInclude Include="..\include\cglm\ivec4.h" />
  162. <ClInclude Include="..\include\cglm\mat2.h" />
  163. <ClInclude Include="..\include\cglm\mat3.h" />
  164. <ClInclude Include="..\include\cglm\mat4.h" />
  165. <ClInclude Include="..\include\cglm\plane.h" />
  166. <ClInclude Include="..\include\cglm\project.h" />
  167. <ClInclude Include="..\include\cglm\quat.h" />
  168. <ClInclude Include="..\include\cglm\ray.h" />
  169. <ClInclude Include="..\include\cglm\simd\arm.h" />
  170. <ClInclude Include="..\include\cglm\simd\avx\affine.h" />
  171. <ClInclude Include="..\include\cglm\simd\avx\mat4.h" />
  172. <ClInclude Include="..\include\cglm\simd\intrin.h" />
  173. <ClInclude Include="..\include\cglm\simd\neon\affine.h" />
  174. <ClInclude Include="..\include\cglm\simd\neon\mat2.h" />
  175. <ClInclude Include="..\include\cglm\simd\neon\mat4.h" />
  176. <ClInclude Include="..\include\cglm\simd\neon\quat.h" />
  177. <ClInclude Include="..\include\cglm\simd\sse2\affine.h" />
  178. <ClInclude Include="..\include\cglm\simd\sse2\mat2.h" />
  179. <ClInclude Include="..\include\cglm\simd\sse2\mat3.h" />
  180. <ClInclude Include="..\include\cglm\simd\sse2\mat4.h" />
  181. <ClInclude Include="..\include\cglm\simd\sse2\quat.h" />
  182. <ClInclude Include="..\include\cglm\simd\x86.h" />
  183. <ClInclude Include="..\include\cglm\sphere.h" />
  184. <ClInclude Include="..\include\cglm\struct.h" />
  185. <ClInclude Include="..\include\cglm\struct\affine-post.h" />
  186. <ClInclude Include="..\include\cglm\struct\affine-pre.h" />
  187. <ClInclude Include="..\include\cglm\struct\affine.h" />
  188. <ClInclude Include="..\include\cglm\struct\affine2d.h" />
  189. <ClInclude Include="..\include\cglm\struct\box.h" />
  190. <ClInclude Include="..\include\cglm\struct\cam.h" />
  191. <ClInclude Include="..\include\cglm\struct\clipspace\ortho_lh_no.h" />
  192. <ClInclude Include="..\include\cglm\struct\clipspace\ortho_lh_zo.h" />
  193. <ClInclude Include="..\include\cglm\struct\clipspace\ortho_rh_no.h" />
  194. <ClInclude Include="..\include\cglm\struct\clipspace\ortho_rh_zo.h" />
  195. <ClInclude Include="..\include\cglm\struct\clipspace\persp_lh_no.h" />
  196. <ClInclude Include="..\include\cglm\struct\clipspace\persp_lh_zo.h" />
  197. <ClInclude Include="..\include\cglm\struct\clipspace\persp_rh_no.h" />
  198. <ClInclude Include="..\include\cglm\struct\clipspace\persp_rh_zo.h" />
  199. <ClInclude Include="..\include\cglm\struct\clipspace\project_no.h" />
  200. <ClInclude Include="..\include\cglm\struct\clipspace\project_zo.h" />
  201. <ClInclude Include="..\include\cglm\struct\clipspace\view_lh_no.h" />
  202. <ClInclude Include="..\include\cglm\struct\clipspace\view_lh_zo.h" />
  203. <ClInclude Include="..\include\cglm\struct\clipspace\view_rh_no.h" />
  204. <ClInclude Include="..\include\cglm\struct\clipspace\view_rh_zo.h" />
  205. <ClInclude Include="..\include\cglm\struct\color.h" />
  206. <ClInclude Include="..\include\cglm\struct\curve.h" />
  207. <ClInclude Include="..\include\cglm\struct\euler.h" />
  208. <ClInclude Include="..\include\cglm\struct\frustum.h" />
  209. <ClInclude Include="..\include\cglm\struct\io.h" />
  210. <ClInclude Include="..\include\cglm\struct\mat2.h" />
  211. <ClInclude Include="..\include\cglm\struct\mat3.h" />
  212. <ClInclude Include="..\include\cglm\struct\mat4.h" />
  213. <ClInclude Include="..\include\cglm\struct\plane.h" />
  214. <ClInclude Include="..\include\cglm\struct\project.h" />
  215. <ClInclude Include="..\include\cglm\struct\quat.h" />
  216. <ClInclude Include="..\include\cglm\struct\sphere.h" />
  217. <ClInclude Include="..\include\cglm\struct\vec2-ext.h" />
  218. <ClInclude Include="..\include\cglm\struct\vec2.h" />
  219. <ClInclude Include="..\include\cglm\struct\vec3-ext.h" />
  220. <ClInclude Include="..\include\cglm\struct\vec3.h" />
  221. <ClInclude Include="..\include\cglm\struct\vec4-ext.h" />
  222. <ClInclude Include="..\include\cglm\struct\vec4.h" />
  223. <ClInclude Include="..\include\cglm\types-struct.h" />
  224. <ClInclude Include="..\include\cglm\types.h" />
  225. <ClInclude Include="..\include\cglm\util.h" />
  226. <ClInclude Include="..\include\cglm\vec2-ext.h" />
  227. <ClInclude Include="..\include\cglm\vec2.h" />
  228. <ClInclude Include="..\include\cglm\vec3-ext.h" />
  229. <ClInclude Include="..\include\cglm\vec3.h" />
  230. <ClInclude Include="..\include\cglm\vec4-ext.h" />
  231. <ClInclude Include="..\include\cglm\vec4.h" />
  232. <ClInclude Include="..\include\cglm\version.h" />
  233. <ClInclude Include="..\src\config.h" />
  234. </ItemGroup>
  235. <PropertyGroup Label="Globals">
  236. <VCProjectVersion>15.0</VCProjectVersion>
  237. <ProjectGuid>{CA8BCAF9-CD25-4133-8F62-3D1449B5D2FC}</ProjectGuid>
  238. <Keyword>Win32Proj</Keyword>
  239. <RootNamespace>cglm</RootNamespace>
  240. <WindowsTargetPlatformVersion>10.0.17763.0</WindowsTargetPlatformVersion>
  241. </PropertyGroup>
  242. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  243. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  244. <ConfigurationType>DynamicLibrary</ConfigurationType>
  245. <UseDebugLibraries>true</UseDebugLibraries>
  246. <PlatformToolset>v141</PlatformToolset>
  247. <CharacterSet>Unicode</CharacterSet>
  248. </PropertyGroup>
  249. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  250. <ConfigurationType>DynamicLibrary</ConfigurationType>
  251. <UseDebugLibraries>false</UseDebugLibraries>
  252. <PlatformToolset>v141</PlatformToolset>
  253. <WholeProgramOptimization>true</WholeProgramOptimization>
  254. <CharacterSet>Unicode</CharacterSet>
  255. </PropertyGroup>
  256. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  257. <ConfigurationType>DynamicLibrary</ConfigurationType>
  258. <UseDebugLibraries>true</UseDebugLibraries>
  259. <PlatformToolset>v141</PlatformToolset>
  260. <CharacterSet>Unicode</CharacterSet>
  261. </PropertyGroup>
  262. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration">
  263. <ConfigurationType>DynamicLibrary</ConfigurationType>
  264. <UseDebugLibraries>true</UseDebugLibraries>
  265. <PlatformToolset>v141</PlatformToolset>
  266. <CharacterSet>Unicode</CharacterSet>
  267. </PropertyGroup>
  268. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64EC'" Label="Configuration">
  269. <ConfigurationType>DynamicLibrary</ConfigurationType>
  270. <UseDebugLibraries>true</UseDebugLibraries>
  271. <PlatformToolset>v141</PlatformToolset>
  272. <CharacterSet>Unicode</CharacterSet>
  273. </PropertyGroup>
  274. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="Configuration">
  275. <ConfigurationType>DynamicLibrary</ConfigurationType>
  276. <UseDebugLibraries>true</UseDebugLibraries>
  277. <PlatformToolset>v141</PlatformToolset>
  278. <CharacterSet>Unicode</CharacterSet>
  279. </PropertyGroup>
  280. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  281. <ConfigurationType>DynamicLibrary</ConfigurationType>
  282. <UseDebugLibraries>false</UseDebugLibraries>
  283. <PlatformToolset>v141</PlatformToolset>
  284. <WholeProgramOptimization>true</WholeProgramOptimization>
  285. <CharacterSet>Unicode</CharacterSet>
  286. </PropertyGroup>
  287. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="Configuration">
  288. <ConfigurationType>DynamicLibrary</ConfigurationType>
  289. <UseDebugLibraries>false</UseDebugLibraries>
  290. <PlatformToolset>v141</PlatformToolset>
  291. <WholeProgramOptimization>true</WholeProgramOptimization>
  292. <CharacterSet>Unicode</CharacterSet>
  293. </PropertyGroup>
  294. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64EC'" Label="Configuration">
  295. <ConfigurationType>DynamicLibrary</ConfigurationType>
  296. <UseDebugLibraries>false</UseDebugLibraries>
  297. <PlatformToolset>v141</PlatformToolset>
  298. <WholeProgramOptimization>true</WholeProgramOptimization>
  299. <CharacterSet>Unicode</CharacterSet>
  300. </PropertyGroup>
  301. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" Label="Configuration">
  302. <ConfigurationType>DynamicLibrary</ConfigurationType>
  303. <UseDebugLibraries>false</UseDebugLibraries>
  304. <PlatformToolset>v141</PlatformToolset>
  305. <WholeProgramOptimization>true</WholeProgramOptimization>
  306. <CharacterSet>Unicode</CharacterSet>
  307. </PropertyGroup>
  308. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  309. <ImportGroup Label="ExtensionSettings">
  310. </ImportGroup>
  311. <ImportGroup Label="Shared">
  312. </ImportGroup>
  313. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  314. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  315. </ImportGroup>
  316. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  317. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  318. </ImportGroup>
  319. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  320. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  321. </ImportGroup>
  322. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="PropertySheets">
  323. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  324. </ImportGroup>
  325. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64EC'" Label="PropertySheets">
  326. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  327. </ImportGroup>
  328. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="PropertySheets">
  329. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  330. </ImportGroup>
  331. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  332. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  333. </ImportGroup>
  334. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="PropertySheets">
  335. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  336. </ImportGroup>
  337. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64EC'" Label="PropertySheets">
  338. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  339. </ImportGroup>
  340. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" Label="PropertySheets">
  341. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  342. </ImportGroup>
  343. <PropertyGroup Label="UserMacros" />
  344. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  345. <LinkIncremental>true</LinkIncremental>
  346. <CodeAnalysisRuleSet>NativeRecommendedRules.ruleset</CodeAnalysisRuleSet>
  347. <RunCodeAnalysis>true</RunCodeAnalysis>
  348. </PropertyGroup>
  349. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  350. <CodeAnalysisRuleSet>NativeRecommendedRules.ruleset</CodeAnalysisRuleSet>
  351. <RunCodeAnalysis>true</RunCodeAnalysis>
  352. </PropertyGroup>
  353. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
  354. <CodeAnalysisRuleSet>NativeRecommendedRules.ruleset</CodeAnalysisRuleSet>
  355. <RunCodeAnalysis>true</RunCodeAnalysis>
  356. </PropertyGroup>
  357. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64EC'">
  358. <CodeAnalysisRuleSet>NativeRecommendedRules.ruleset</CodeAnalysisRuleSet>
  359. <RunCodeAnalysis>true</RunCodeAnalysis>
  360. </PropertyGroup>
  361. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
  362. <CodeAnalysisRuleSet>NativeRecommendedRules.ruleset</CodeAnalysisRuleSet>
  363. <RunCodeAnalysis>true</RunCodeAnalysis>
  364. </PropertyGroup>
  365. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  366. <LinkIncremental>false</LinkIncremental>
  367. <CodeAnalysisRuleSet>NativeRecommendedRules.ruleset</CodeAnalysisRuleSet>
  368. <RunCodeAnalysis>true</RunCodeAnalysis>
  369. </PropertyGroup>
  370. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  371. <LinkIncremental>false</LinkIncremental>
  372. <CodeAnalysisRuleSet>NativeRecommendedRules.ruleset</CodeAnalysisRuleSet>
  373. <RunCodeAnalysis>true</RunCodeAnalysis>
  374. </PropertyGroup>
  375. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
  376. <LinkIncremental>false</LinkIncremental>
  377. <CodeAnalysisRuleSet>NativeRecommendedRules.ruleset</CodeAnalysisRuleSet>
  378. <RunCodeAnalysis>true</RunCodeAnalysis>
  379. </PropertyGroup>
  380. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64EC'">
  381. <LinkIncremental>false</LinkIncremental>
  382. <CodeAnalysisRuleSet>NativeRecommendedRules.ruleset</CodeAnalysisRuleSet>
  383. <RunCodeAnalysis>true</RunCodeAnalysis>
  384. </PropertyGroup>
  385. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
  386. <LinkIncremental>false</LinkIncremental>
  387. <CodeAnalysisRuleSet>NativeRecommendedRules.ruleset</CodeAnalysisRuleSet>
  388. <RunCodeAnalysis>true</RunCodeAnalysis>
  389. </PropertyGroup>
  390. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  391. <ClCompile>
  392. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  393. <WarningLevel>Level3</WarningLevel>
  394. <Optimization>MaxSpeed</Optimization>
  395. <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;CGLM_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  396. <DebugInformationFormat>None</DebugInformationFormat>
  397. <BasicRuntimeChecks>Default</BasicRuntimeChecks>
  398. <PrecompiledHeaderFile />
  399. <CompileAs>CompileAsC</CompileAs>
  400. <WholeProgramOptimization>true</WholeProgramOptimization>
  401. <EnablePREfast>true</EnablePREfast>
  402. </ClCompile>
  403. <Link>
  404. <SubSystem>Windows</SubSystem>
  405. </Link>
  406. </ItemDefinitionGroup>
  407. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  408. <ClCompile>
  409. <WarningLevel>Level3</WarningLevel>
  410. <Optimization>MaxSpeed</Optimization>
  411. <PreprocessorDefinitions>_DEBUG;_WINDOWS;_USRDLL;CGLM_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  412. <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
  413. <IntrinsicFunctions>true</IntrinsicFunctions>
  414. <WholeProgramOptimization>true</WholeProgramOptimization>
  415. <PrecompiledHeaderFile />
  416. <CompileAs>CompileAsC</CompileAs>
  417. <DebugInformationFormat>None</DebugInformationFormat>
  418. <BasicRuntimeChecks>Default</BasicRuntimeChecks>
  419. <EnablePREfast>true</EnablePREfast>
  420. </ClCompile>
  421. <Link>
  422. <SubSystem>Windows</SubSystem>
  423. </Link>
  424. </ItemDefinitionGroup>
  425. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
  426. <ClCompile>
  427. <WarningLevel>Level3</WarningLevel>
  428. <Optimization>MaxSpeed</Optimization>
  429. <PreprocessorDefinitions>_DEBUG;_WINDOWS;_USRDLL;CGLM_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  430. <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
  431. <IntrinsicFunctions>true</IntrinsicFunctions>
  432. <WholeProgramOptimization>true</WholeProgramOptimization>
  433. <PrecompiledHeaderFile>
  434. </PrecompiledHeaderFile>
  435. <CompileAs>CompileAsC</CompileAs>
  436. <DebugInformationFormat>None</DebugInformationFormat>
  437. <BasicRuntimeChecks>Default</BasicRuntimeChecks>
  438. <EnablePREfast>true</EnablePREfast>
  439. </ClCompile>
  440. <Link>
  441. <SubSystem>Windows</SubSystem>
  442. </Link>
  443. </ItemDefinitionGroup>
  444. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64EC'">
  445. <ClCompile>
  446. <WarningLevel>Level3</WarningLevel>
  447. <Optimization>MaxSpeed</Optimization>
  448. <PreprocessorDefinitions>_DEBUG;_WINDOWS;_USRDLL;CGLM_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  449. <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
  450. <IntrinsicFunctions>true</IntrinsicFunctions>
  451. <WholeProgramOptimization>true</WholeProgramOptimization>
  452. <PrecompiledHeaderFile>
  453. </PrecompiledHeaderFile>
  454. <CompileAs>CompileAsC</CompileAs>
  455. <DebugInformationFormat>None</DebugInformationFormat>
  456. <BasicRuntimeChecks>Default</BasicRuntimeChecks>
  457. <EnablePREfast>true</EnablePREfast>
  458. </ClCompile>
  459. <Link>
  460. <SubSystem>Windows</SubSystem>
  461. </Link>
  462. </ItemDefinitionGroup>
  463. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
  464. <ClCompile>
  465. <WarningLevel>Level3</WarningLevel>
  466. <Optimization>MaxSpeed</Optimization>
  467. <PreprocessorDefinitions>_DEBUG;_WINDOWS;_USRDLL;CGLM_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  468. <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
  469. <IntrinsicFunctions>true</IntrinsicFunctions>
  470. <WholeProgramOptimization>true</WholeProgramOptimization>
  471. <PrecompiledHeaderFile>
  472. </PrecompiledHeaderFile>
  473. <CompileAs>CompileAsC</CompileAs>
  474. <DebugInformationFormat>None</DebugInformationFormat>
  475. <BasicRuntimeChecks>Default</BasicRuntimeChecks>
  476. <EnablePREfast>true</EnablePREfast>
  477. </ClCompile>
  478. <Link>
  479. <SubSystem>Windows</SubSystem>
  480. </Link>
  481. </ItemDefinitionGroup>
  482. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  483. <ClCompile>
  484. <WarningLevel>Level3</WarningLevel>
  485. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  486. <Optimization>MaxSpeed</Optimization>
  487. <FunctionLevelLinking>true</FunctionLevelLinking>
  488. <IntrinsicFunctions>true</IntrinsicFunctions>
  489. <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;CGLM_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  490. <DebugInformationFormat>None</DebugInformationFormat>
  491. <PrecompiledHeaderFile />
  492. <CompileAs>CompileAsC</CompileAs>
  493. <EnablePREfast>true</EnablePREfast>
  494. <BasicRuntimeChecks>Default</BasicRuntimeChecks>
  495. </ClCompile>
  496. <Link>
  497. <SubSystem>Windows</SubSystem>
  498. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  499. <OptimizeReferences>true</OptimizeReferences>
  500. </Link>
  501. </ItemDefinitionGroup>
  502. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  503. <ClCompile>
  504. <WarningLevel>Level3</WarningLevel>
  505. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  506. <Optimization>MaxSpeed</Optimization>
  507. <FunctionLevelLinking>true</FunctionLevelLinking>
  508. <IntrinsicFunctions>true</IntrinsicFunctions>
  509. <PreprocessorDefinitions>NDEBUG;_WINDOWS;_USRDLL;CGLM_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  510. <DebugInformationFormat>None</DebugInformationFormat>
  511. <PrecompiledHeaderFile />
  512. <CompileAs>CompileAsC</CompileAs>
  513. <EnablePREfast>true</EnablePREfast>
  514. <BasicRuntimeChecks>Default</BasicRuntimeChecks>
  515. </ClCompile>
  516. <Link>
  517. <SubSystem>Windows</SubSystem>
  518. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  519. <OptimizeReferences>true</OptimizeReferences>
  520. </Link>
  521. </ItemDefinitionGroup>
  522. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
  523. <ClCompile>
  524. <WarningLevel>Level3</WarningLevel>
  525. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  526. <Optimization>MaxSpeed</Optimization>
  527. <FunctionLevelLinking>true</FunctionLevelLinking>
  528. <IntrinsicFunctions>true</IntrinsicFunctions>
  529. <PreprocessorDefinitions>NDEBUG;_WINDOWS;_USRDLL;CGLM_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  530. <DebugInformationFormat>None</DebugInformationFormat>
  531. <PrecompiledHeaderFile>
  532. </PrecompiledHeaderFile>
  533. <CompileAs>CompileAsC</CompileAs>
  534. <EnablePREfast>true</EnablePREfast>
  535. <BasicRuntimeChecks>Default</BasicRuntimeChecks>
  536. </ClCompile>
  537. <Link>
  538. <SubSystem>Windows</SubSystem>
  539. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  540. <OptimizeReferences>true</OptimizeReferences>
  541. </Link>
  542. </ItemDefinitionGroup>
  543. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64EC'">
  544. <ClCompile>
  545. <WarningLevel>Level3</WarningLevel>
  546. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  547. <Optimization>MaxSpeed</Optimization>
  548. <FunctionLevelLinking>true</FunctionLevelLinking>
  549. <IntrinsicFunctions>true</IntrinsicFunctions>
  550. <PreprocessorDefinitions>NDEBUG;_WINDOWS;_USRDLL;CGLM_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  551. <DebugInformationFormat>None</DebugInformationFormat>
  552. <PrecompiledHeaderFile>
  553. </PrecompiledHeaderFile>
  554. <CompileAs>CompileAsC</CompileAs>
  555. <EnablePREfast>true</EnablePREfast>
  556. <BasicRuntimeChecks>Default</BasicRuntimeChecks>
  557. </ClCompile>
  558. <Link>
  559. <SubSystem>Windows</SubSystem>
  560. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  561. <OptimizeReferences>true</OptimizeReferences>
  562. </Link>
  563. </ItemDefinitionGroup>
  564. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
  565. <ClCompile>
  566. <WarningLevel>Level3</WarningLevel>
  567. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  568. <Optimization>MaxSpeed</Optimization>
  569. <FunctionLevelLinking>true</FunctionLevelLinking>
  570. <IntrinsicFunctions>true</IntrinsicFunctions>
  571. <PreprocessorDefinitions>NDEBUG;_WINDOWS;_USRDLL;CGLM_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  572. <DebugInformationFormat>None</DebugInformationFormat>
  573. <PrecompiledHeaderFile>
  574. </PrecompiledHeaderFile>
  575. <CompileAs>CompileAsC</CompileAs>
  576. <EnablePREfast>true</EnablePREfast>
  577. <BasicRuntimeChecks>Default</BasicRuntimeChecks>
  578. </ClCompile>
  579. <Link>
  580. <SubSystem>Windows</SubSystem>
  581. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  582. <OptimizeReferences>true</OptimizeReferences>
  583. </Link>
  584. </ItemDefinitionGroup>
  585. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  586. <ImportGroup Label="ExtensionTargets">
  587. </ImportGroup>
  588. </Project>