opusenc.vcxproj 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" 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="Debug|ARM">
  13. <Configuration>Debug</Configuration>
  14. <Platform>ARM</Platform>
  15. </ProjectConfiguration>
  16. <ProjectConfiguration Include="Debug|ARM64">
  17. <Configuration>Debug</Configuration>
  18. <Platform>ARM64</Platform>
  19. </ProjectConfiguration>
  20. <ProjectConfiguration Include="Release|Win32">
  21. <Configuration>Release</Configuration>
  22. <Platform>Win32</Platform>
  23. </ProjectConfiguration>
  24. <ProjectConfiguration Include="Release|x64">
  25. <Configuration>Release</Configuration>
  26. <Platform>x64</Platform>
  27. </ProjectConfiguration>
  28. <ProjectConfiguration Include="Release|ARM">
  29. <Configuration>Release</Configuration>
  30. <Platform>ARM</Platform>
  31. </ProjectConfiguration>
  32. <ProjectConfiguration Include="Release|ARM64">
  33. <Configuration>Release</Configuration>
  34. <Platform>ARM64</Platform>
  35. </ProjectConfiguration>
  36. <ProjectConfiguration Include="Checked|Win32">
  37. <Configuration>Checked</Configuration>
  38. <Platform>Win32</Platform>
  39. </ProjectConfiguration>
  40. <ProjectConfiguration Include="Checked|x64">
  41. <Configuration>Checked</Configuration>
  42. <Platform>x64</Platform>
  43. </ProjectConfiguration>
  44. <ProjectConfiguration Include="Checked|ARM">
  45. <Configuration>Checked</Configuration>
  46. <Platform>ARM</Platform>
  47. </ProjectConfiguration>
  48. <ProjectConfiguration Include="Checked|ARM64">
  49. <Configuration>Checked</Configuration>
  50. <Platform>ARM64</Platform>
  51. </ProjectConfiguration>
  52. <ProjectConfiguration Include="DebugShared|Win32">
  53. <Configuration>DebugShared</Configuration>
  54. <Platform>Win32</Platform>
  55. </ProjectConfiguration>
  56. <ProjectConfiguration Include="DebugShared|x64">
  57. <Configuration>DebugShared</Configuration>
  58. <Platform>x64</Platform>
  59. </ProjectConfiguration>
  60. <ProjectConfiguration Include="DebugShared|ARM">
  61. <Configuration>DebugShared</Configuration>
  62. <Platform>ARM</Platform>
  63. </ProjectConfiguration>
  64. <ProjectConfiguration Include="DebugShared|ARM64">
  65. <Configuration>DebugShared</Configuration>
  66. <Platform>ARM64</Platform>
  67. </ProjectConfiguration>
  68. <ProjectConfiguration Include="ReleaseShared|Win32">
  69. <Configuration>ReleaseShared</Configuration>
  70. <Platform>Win32</Platform>
  71. </ProjectConfiguration>
  72. <ProjectConfiguration Include="ReleaseShared|x64">
  73. <Configuration>ReleaseShared</Configuration>
  74. <Platform>x64</Platform>
  75. </ProjectConfiguration>
  76. <ProjectConfiguration Include="ReleaseShared|ARM">
  77. <Configuration>ReleaseShared</Configuration>
  78. <Platform>ARM</Platform>
  79. </ProjectConfiguration>
  80. <ProjectConfiguration Include="ReleaseShared|ARM64">
  81. <Configuration>ReleaseShared</Configuration>
  82. <Platform>ARM64</Platform>
  83. </ProjectConfiguration>
  84. <ProjectConfiguration Include="CheckedShared|Win32">
  85. <Configuration>CheckedShared</Configuration>
  86. <Platform>Win32</Platform>
  87. </ProjectConfiguration>
  88. <ProjectConfiguration Include="CheckedShared|x64">
  89. <Configuration>CheckedShared</Configuration>
  90. <Platform>x64</Platform>
  91. </ProjectConfiguration>
  92. <ProjectConfiguration Include="CheckedShared|ARM">
  93. <Configuration>CheckedShared</Configuration>
  94. <Platform>ARM</Platform>
  95. </ProjectConfiguration>
  96. <ProjectConfiguration Include="CheckedShared|ARM64">
  97. <Configuration>CheckedShared</Configuration>
  98. <Platform>ARM64</Platform>
  99. </ProjectConfiguration>
  100. </ItemGroup>
  101. <PropertyGroup Label="Globals">
  102. <ProjectGuid>{290BBF89-2572-4291-9D9C-FF021D4FD313}</ProjectGuid>
  103. <IgnoreWarnCompileDuplicatedFilename>true</IgnoreWarnCompileDuplicatedFilename>
  104. <Keyword>Win32Proj</Keyword>
  105. <RootNamespace>opusenc</RootNamespace>
  106. <PreferredToolArchitecture>x64</PreferredToolArchitecture>
  107. <WindowsTargetPlatformVersion>10.0.19041.0</WindowsTargetPlatformVersion>
  108. </PropertyGroup>
  109. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  110. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  111. <ConfigurationType>StaticLibrary</ConfigurationType>
  112. <UseDebugLibraries>true</UseDebugLibraries>
  113. <CharacterSet>Unicode</CharacterSet>
  114. <PlatformToolset>ClangCL</PlatformToolset>
  115. </PropertyGroup>
  116. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  117. <ConfigurationType>StaticLibrary</ConfigurationType>
  118. <UseDebugLibraries>true</UseDebugLibraries>
  119. <CharacterSet>Unicode</CharacterSet>
  120. <PlatformToolset>ClangCL</PlatformToolset>
  121. </PropertyGroup>
  122. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration">
  123. <ConfigurationType>StaticLibrary</ConfigurationType>
  124. <UseDebugLibraries>true</UseDebugLibraries>
  125. <CharacterSet>Unicode</CharacterSet>
  126. <PlatformToolset>ClangCL</PlatformToolset>
  127. <WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport>
  128. </PropertyGroup>
  129. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="Configuration">
  130. <ConfigurationType>StaticLibrary</ConfigurationType>
  131. <UseDebugLibraries>true</UseDebugLibraries>
  132. <CharacterSet>Unicode</CharacterSet>
  133. <PlatformToolset>ClangCL</PlatformToolset>
  134. <WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support>
  135. </PropertyGroup>
  136. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  137. <ConfigurationType>StaticLibrary</ConfigurationType>
  138. <UseDebugLibraries>false</UseDebugLibraries>
  139. <CharacterSet>Unicode</CharacterSet>
  140. <PlatformToolset>ClangCL</PlatformToolset>
  141. </PropertyGroup>
  142. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  143. <ConfigurationType>StaticLibrary</ConfigurationType>
  144. <UseDebugLibraries>false</UseDebugLibraries>
  145. <CharacterSet>Unicode</CharacterSet>
  146. <PlatformToolset>ClangCL</PlatformToolset>
  147. </PropertyGroup>
  148. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="Configuration">
  149. <ConfigurationType>StaticLibrary</ConfigurationType>
  150. <UseDebugLibraries>false</UseDebugLibraries>
  151. <CharacterSet>Unicode</CharacterSet>
  152. <PlatformToolset>ClangCL</PlatformToolset>
  153. <WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport>
  154. </PropertyGroup>
  155. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" Label="Configuration">
  156. <ConfigurationType>StaticLibrary</ConfigurationType>
  157. <UseDebugLibraries>false</UseDebugLibraries>
  158. <CharacterSet>Unicode</CharacterSet>
  159. <PlatformToolset>ClangCL</PlatformToolset>
  160. <WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support>
  161. </PropertyGroup>
  162. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Checked|Win32'" Label="Configuration">
  163. <ConfigurationType>StaticLibrary</ConfigurationType>
  164. <UseDebugLibraries>false</UseDebugLibraries>
  165. <CharacterSet>Unicode</CharacterSet>
  166. <PlatformToolset>ClangCL</PlatformToolset>
  167. </PropertyGroup>
  168. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Checked|x64'" Label="Configuration">
  169. <ConfigurationType>StaticLibrary</ConfigurationType>
  170. <UseDebugLibraries>false</UseDebugLibraries>
  171. <CharacterSet>Unicode</CharacterSet>
  172. <PlatformToolset>ClangCL</PlatformToolset>
  173. </PropertyGroup>
  174. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Checked|ARM'" Label="Configuration">
  175. <ConfigurationType>StaticLibrary</ConfigurationType>
  176. <UseDebugLibraries>false</UseDebugLibraries>
  177. <CharacterSet>Unicode</CharacterSet>
  178. <PlatformToolset>ClangCL</PlatformToolset>
  179. <WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport>
  180. </PropertyGroup>
  181. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Checked|ARM64'" Label="Configuration">
  182. <ConfigurationType>StaticLibrary</ConfigurationType>
  183. <UseDebugLibraries>false</UseDebugLibraries>
  184. <CharacterSet>Unicode</CharacterSet>
  185. <PlatformToolset>ClangCL</PlatformToolset>
  186. <WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support>
  187. </PropertyGroup>
  188. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugShared|Win32'" Label="Configuration">
  189. <ConfigurationType>DynamicLibrary</ConfigurationType>
  190. <UseDebugLibraries>true</UseDebugLibraries>
  191. <CharacterSet>Unicode</CharacterSet>
  192. <PlatformToolset>ClangCL</PlatformToolset>
  193. </PropertyGroup>
  194. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugShared|x64'" Label="Configuration">
  195. <ConfigurationType>DynamicLibrary</ConfigurationType>
  196. <UseDebugLibraries>true</UseDebugLibraries>
  197. <CharacterSet>Unicode</CharacterSet>
  198. <PlatformToolset>ClangCL</PlatformToolset>
  199. </PropertyGroup>
  200. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugShared|ARM'" Label="Configuration">
  201. <ConfigurationType>DynamicLibrary</ConfigurationType>
  202. <UseDebugLibraries>true</UseDebugLibraries>
  203. <CharacterSet>Unicode</CharacterSet>
  204. <PlatformToolset>ClangCL</PlatformToolset>
  205. <WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport>
  206. </PropertyGroup>
  207. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugShared|ARM64'" Label="Configuration">
  208. <ConfigurationType>DynamicLibrary</ConfigurationType>
  209. <UseDebugLibraries>true</UseDebugLibraries>
  210. <CharacterSet>Unicode</CharacterSet>
  211. <PlatformToolset>ClangCL</PlatformToolset>
  212. <WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support>
  213. </PropertyGroup>
  214. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseShared|Win32'" Label="Configuration">
  215. <ConfigurationType>DynamicLibrary</ConfigurationType>
  216. <UseDebugLibraries>false</UseDebugLibraries>
  217. <CharacterSet>Unicode</CharacterSet>
  218. <PlatformToolset>ClangCL</PlatformToolset>
  219. </PropertyGroup>
  220. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseShared|x64'" Label="Configuration">
  221. <ConfigurationType>DynamicLibrary</ConfigurationType>
  222. <UseDebugLibraries>false</UseDebugLibraries>
  223. <CharacterSet>Unicode</CharacterSet>
  224. <PlatformToolset>ClangCL</PlatformToolset>
  225. </PropertyGroup>
  226. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseShared|ARM'" Label="Configuration">
  227. <ConfigurationType>DynamicLibrary</ConfigurationType>
  228. <UseDebugLibraries>false</UseDebugLibraries>
  229. <CharacterSet>Unicode</CharacterSet>
  230. <PlatformToolset>ClangCL</PlatformToolset>
  231. <WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport>
  232. </PropertyGroup>
  233. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseShared|ARM64'" Label="Configuration">
  234. <ConfigurationType>DynamicLibrary</ConfigurationType>
  235. <UseDebugLibraries>false</UseDebugLibraries>
  236. <CharacterSet>Unicode</CharacterSet>
  237. <PlatformToolset>ClangCL</PlatformToolset>
  238. <WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support>
  239. </PropertyGroup>
  240. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='CheckedShared|Win32'" Label="Configuration">
  241. <ConfigurationType>DynamicLibrary</ConfigurationType>
  242. <UseDebugLibraries>false</UseDebugLibraries>
  243. <CharacterSet>Unicode</CharacterSet>
  244. <PlatformToolset>ClangCL</PlatformToolset>
  245. </PropertyGroup>
  246. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='CheckedShared|x64'" Label="Configuration">
  247. <ConfigurationType>DynamicLibrary</ConfigurationType>
  248. <UseDebugLibraries>false</UseDebugLibraries>
  249. <CharacterSet>Unicode</CharacterSet>
  250. <PlatformToolset>ClangCL</PlatformToolset>
  251. </PropertyGroup>
  252. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='CheckedShared|ARM'" Label="Configuration">
  253. <ConfigurationType>DynamicLibrary</ConfigurationType>
  254. <UseDebugLibraries>false</UseDebugLibraries>
  255. <CharacterSet>Unicode</CharacterSet>
  256. <PlatformToolset>ClangCL</PlatformToolset>
  257. <WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport>
  258. </PropertyGroup>
  259. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='CheckedShared|ARM64'" Label="Configuration">
  260. <ConfigurationType>DynamicLibrary</ConfigurationType>
  261. <UseDebugLibraries>false</UseDebugLibraries>
  262. <CharacterSet>Unicode</CharacterSet>
  263. <PlatformToolset>ClangCL</PlatformToolset>
  264. <WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support>
  265. </PropertyGroup>
  266. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  267. <ImportGroup Label="ExtensionSettings">
  268. </ImportGroup>
  269. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  270. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  271. </ImportGroup>
  272. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  273. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  274. </ImportGroup>
  275. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
  276. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  277. </ImportGroup>
  278. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
  279. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  280. </ImportGroup>
  281. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  282. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  283. </ImportGroup>
  284. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  285. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  286. </ImportGroup>
  287. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
  288. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  289. </ImportGroup>
  290. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
  291. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  292. </ImportGroup>
  293. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Checked|Win32'">
  294. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  295. </ImportGroup>
  296. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Checked|x64'">
  297. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  298. </ImportGroup>
  299. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Checked|ARM'">
  300. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  301. </ImportGroup>
  302. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Checked|ARM64'">
  303. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  304. </ImportGroup>
  305. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='DebugShared|Win32'">
  306. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  307. </ImportGroup>
  308. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='DebugShared|x64'">
  309. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  310. </ImportGroup>
  311. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='DebugShared|ARM'">
  312. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  313. </ImportGroup>
  314. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='DebugShared|ARM64'">
  315. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  316. </ImportGroup>
  317. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='ReleaseShared|Win32'">
  318. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  319. </ImportGroup>
  320. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='ReleaseShared|x64'">
  321. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  322. </ImportGroup>
  323. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='ReleaseShared|ARM'">
  324. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  325. </ImportGroup>
  326. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='ReleaseShared|ARM64'">
  327. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  328. </ImportGroup>
  329. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='CheckedShared|Win32'">
  330. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  331. </ImportGroup>
  332. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='CheckedShared|x64'">
  333. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  334. </ImportGroup>
  335. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='CheckedShared|ARM'">
  336. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  337. </ImportGroup>
  338. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='CheckedShared|ARM64'">
  339. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  340. </ImportGroup>
  341. <PropertyGroup Label="UserMacros" />
  342. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  343. <OutDir>..\..\lib\vs2022win10clang\x86\Debug\</OutDir>
  344. <IntDir>..\..\obj\vs2022win10clang\opusenc\x86\Debug\</IntDir>
  345. <TargetName>openmpt-opusenc</TargetName>
  346. <TargetExt>.lib</TargetExt>
  347. </PropertyGroup>
  348. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  349. <OutDir>..\..\lib\vs2022win10clang\x86_64\Debug\</OutDir>
  350. <IntDir>..\..\obj\vs2022win10clang\opusenc\x86_64\Debug\</IntDir>
  351. <TargetName>openmpt-opusenc</TargetName>
  352. <TargetExt>.lib</TargetExt>
  353. </PropertyGroup>
  354. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
  355. <OutDir>..\..\lib\vs2022win10clang\arm\Debug\</OutDir>
  356. <IntDir>..\..\obj\vs2022win10clang\opusenc\arm\Debug\</IntDir>
  357. <TargetName>openmpt-opusenc</TargetName>
  358. <TargetExt>.lib</TargetExt>
  359. </PropertyGroup>
  360. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
  361. <OutDir>..\..\lib\vs2022win10clang\arm64\Debug\</OutDir>
  362. <IntDir>..\..\obj\vs2022win10clang\opusenc\arm64\Debug\</IntDir>
  363. <TargetName>openmpt-opusenc</TargetName>
  364. <TargetExt>.lib</TargetExt>
  365. </PropertyGroup>
  366. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  367. <OutDir>..\..\lib\vs2022win10clang\x86\Release\</OutDir>
  368. <IntDir>..\..\obj\vs2022win10clang\opusenc\x86\Release\</IntDir>
  369. <TargetName>openmpt-opusenc</TargetName>
  370. <TargetExt>.lib</TargetExt>
  371. </PropertyGroup>
  372. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  373. <OutDir>..\..\lib\vs2022win10clang\x86_64\Release\</OutDir>
  374. <IntDir>..\..\obj\vs2022win10clang\opusenc\x86_64\Release\</IntDir>
  375. <TargetName>openmpt-opusenc</TargetName>
  376. <TargetExt>.lib</TargetExt>
  377. </PropertyGroup>
  378. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
  379. <OutDir>..\..\lib\vs2022win10clang\arm\Release\</OutDir>
  380. <IntDir>..\..\obj\vs2022win10clang\opusenc\arm\Release\</IntDir>
  381. <TargetName>openmpt-opusenc</TargetName>
  382. <TargetExt>.lib</TargetExt>
  383. </PropertyGroup>
  384. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
  385. <OutDir>..\..\lib\vs2022win10clang\arm64\Release\</OutDir>
  386. <IntDir>..\..\obj\vs2022win10clang\opusenc\arm64\Release\</IntDir>
  387. <TargetName>openmpt-opusenc</TargetName>
  388. <TargetExt>.lib</TargetExt>
  389. </PropertyGroup>
  390. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Checked|Win32'">
  391. <OutDir>..\..\lib\vs2022win10clang\x86\Checked\</OutDir>
  392. <IntDir>..\..\obj\vs2022win10clang\opusenc\x86\Checked\</IntDir>
  393. <TargetName>openmpt-opusenc</TargetName>
  394. <TargetExt>.lib</TargetExt>
  395. </PropertyGroup>
  396. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Checked|x64'">
  397. <OutDir>..\..\lib\vs2022win10clang\x86_64\Checked\</OutDir>
  398. <IntDir>..\..\obj\vs2022win10clang\opusenc\x86_64\Checked\</IntDir>
  399. <TargetName>openmpt-opusenc</TargetName>
  400. <TargetExt>.lib</TargetExt>
  401. </PropertyGroup>
  402. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Checked|ARM'">
  403. <OutDir>..\..\lib\vs2022win10clang\arm\Checked\</OutDir>
  404. <IntDir>..\..\obj\vs2022win10clang\opusenc\arm\Checked\</IntDir>
  405. <TargetName>openmpt-opusenc</TargetName>
  406. <TargetExt>.lib</TargetExt>
  407. </PropertyGroup>
  408. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Checked|ARM64'">
  409. <OutDir>..\..\lib\vs2022win10clang\arm64\Checked\</OutDir>
  410. <IntDir>..\..\obj\vs2022win10clang\opusenc\arm64\Checked\</IntDir>
  411. <TargetName>openmpt-opusenc</TargetName>
  412. <TargetExt>.lib</TargetExt>
  413. </PropertyGroup>
  414. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugShared|Win32'">
  415. <LinkIncremental>true</LinkIncremental>
  416. <OutDir>..\..\..\bin\debug\vs2022-win10clang-shared\x86\</OutDir>
  417. <IntDir>..\..\obj\vs2022win10clang\opusenc\x86\DebugShared\</IntDir>
  418. <TargetName>openmpt-opusenc</TargetName>
  419. <TargetExt>.dll</TargetExt>
  420. </PropertyGroup>
  421. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugShared|x64'">
  422. <LinkIncremental>true</LinkIncremental>
  423. <OutDir>..\..\..\bin\debug\vs2022-win10clang-shared\amd64\</OutDir>
  424. <IntDir>..\..\obj\vs2022win10clang\opusenc\x86_64\DebugShared\</IntDir>
  425. <TargetName>openmpt-opusenc</TargetName>
  426. <TargetExt>.dll</TargetExt>
  427. </PropertyGroup>
  428. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugShared|ARM'">
  429. <LinkIncremental>true</LinkIncremental>
  430. <OutDir>..\..\..\bin\debug\vs2022-win10clang-shared\arm\</OutDir>
  431. <IntDir>..\..\obj\vs2022win10clang\opusenc\arm\DebugShared\</IntDir>
  432. <TargetName>openmpt-opusenc</TargetName>
  433. <TargetExt>.dll</TargetExt>
  434. </PropertyGroup>
  435. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugShared|ARM64'">
  436. <LinkIncremental>true</LinkIncremental>
  437. <OutDir>..\..\..\bin\debug\vs2022-win10clang-shared\arm64\</OutDir>
  438. <IntDir>..\..\obj\vs2022win10clang\opusenc\arm64\DebugShared\</IntDir>
  439. <TargetName>openmpt-opusenc</TargetName>
  440. <TargetExt>.dll</TargetExt>
  441. </PropertyGroup>
  442. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseShared|Win32'">
  443. <LinkIncremental>false</LinkIncremental>
  444. <OutDir>..\..\..\bin\release\vs2022-win10clang-shared\x86\</OutDir>
  445. <IntDir>..\..\obj\vs2022win10clang\opusenc\x86\ReleaseShared\</IntDir>
  446. <TargetName>openmpt-opusenc</TargetName>
  447. <TargetExt>.dll</TargetExt>
  448. </PropertyGroup>
  449. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseShared|x64'">
  450. <LinkIncremental>false</LinkIncremental>
  451. <OutDir>..\..\..\bin\release\vs2022-win10clang-shared\amd64\</OutDir>
  452. <IntDir>..\..\obj\vs2022win10clang\opusenc\x86_64\ReleaseShared\</IntDir>
  453. <TargetName>openmpt-opusenc</TargetName>
  454. <TargetExt>.dll</TargetExt>
  455. </PropertyGroup>
  456. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseShared|ARM'">
  457. <LinkIncremental>false</LinkIncremental>
  458. <OutDir>..\..\..\bin\release\vs2022-win10clang-shared\arm\</OutDir>
  459. <IntDir>..\..\obj\vs2022win10clang\opusenc\arm\ReleaseShared\</IntDir>
  460. <TargetName>openmpt-opusenc</TargetName>
  461. <TargetExt>.dll</TargetExt>
  462. </PropertyGroup>
  463. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseShared|ARM64'">
  464. <LinkIncremental>false</LinkIncremental>
  465. <OutDir>..\..\..\bin\release\vs2022-win10clang-shared\arm64\</OutDir>
  466. <IntDir>..\..\obj\vs2022win10clang\opusenc\arm64\ReleaseShared\</IntDir>
  467. <TargetName>openmpt-opusenc</TargetName>
  468. <TargetExt>.dll</TargetExt>
  469. </PropertyGroup>
  470. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='CheckedShared|Win32'">
  471. <LinkIncremental>false</LinkIncremental>
  472. <OutDir>..\..\..\bin\checked\vs2022-win10clang-shared\x86\</OutDir>
  473. <IntDir>..\..\obj\vs2022win10clang\opusenc\x86\CheckedShared\</IntDir>
  474. <TargetName>openmpt-opusenc</TargetName>
  475. <TargetExt>.dll</TargetExt>
  476. </PropertyGroup>
  477. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='CheckedShared|x64'">
  478. <LinkIncremental>false</LinkIncremental>
  479. <OutDir>..\..\..\bin\checked\vs2022-win10clang-shared\amd64\</OutDir>
  480. <IntDir>..\..\obj\vs2022win10clang\opusenc\x86_64\CheckedShared\</IntDir>
  481. <TargetName>openmpt-opusenc</TargetName>
  482. <TargetExt>.dll</TargetExt>
  483. </PropertyGroup>
  484. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='CheckedShared|ARM'">
  485. <LinkIncremental>false</LinkIncremental>
  486. <OutDir>..\..\..\bin\checked\vs2022-win10clang-shared\arm\</OutDir>
  487. <IntDir>..\..\obj\vs2022win10clang\opusenc\arm\CheckedShared\</IntDir>
  488. <TargetName>openmpt-opusenc</TargetName>
  489. <TargetExt>.dll</TargetExt>
  490. </PropertyGroup>
  491. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='CheckedShared|ARM64'">
  492. <LinkIncremental>false</LinkIncremental>
  493. <OutDir>..\..\..\bin\checked\vs2022-win10clang-shared\arm64\</OutDir>
  494. <IntDir>..\..\obj\vs2022win10clang\opusenc\arm64\CheckedShared\</IntDir>
  495. <TargetName>openmpt-opusenc</TargetName>
  496. <TargetExt>.dll</TargetExt>
  497. </PropertyGroup>
  498. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  499. <ClCompile>
  500. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  501. <WarningLevel>Level3</WarningLevel>
  502. <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=0x0A00;NTDDI_VERSION=0x0A000000;HAVE_CONFIG_H;OUTSIDE_SPEEX;RANDOM_PREFIX=libopusenc;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  503. <AdditionalIncludeDirectories>..\..\..\include\ogg\include;..\..\..\include\opus\include;..\..\..\include\opusenc\include;..\..\..\include\opusenc\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  504. <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
  505. <Optimization>Disabled</Optimization>
  506. <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
  507. <AdditionalOptions>/wd4018 /wd4100 /wd4101 /wd4127 /wd4244 /wd4267 /wd4456 /wd4706 /wd6262 %(AdditionalOptions)</AdditionalOptions>
  508. <ConformanceMode>true</ConformanceMode>
  509. </ClCompile>
  510. <Link>
  511. <SubSystem>Windows</SubSystem>
  512. <FullProgramDatabaseFile>true</FullProgramDatabaseFile>
  513. <GenerateDebugInformation>DebugFastLink</GenerateDebugInformation>
  514. </Link>
  515. </ItemDefinitionGroup>
  516. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  517. <ClCompile>
  518. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  519. <WarningLevel>Level3</WarningLevel>
  520. <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=0x0A00;NTDDI_VERSION=0x0A000000;HAVE_CONFIG_H;OUTSIDE_SPEEX;RANDOM_PREFIX=libopusenc;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  521. <AdditionalIncludeDirectories>..\..\..\include\ogg\include;..\..\..\include\opus\include;..\..\..\include\opusenc\include;..\..\..\include\opusenc\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  522. <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
  523. <Optimization>Disabled</Optimization>
  524. <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
  525. <AdditionalOptions>/wd4018 /wd4100 /wd4101 /wd4127 /wd4244 /wd4267 /wd4456 /wd4706 /wd6262 %(AdditionalOptions)</AdditionalOptions>
  526. <ConformanceMode>true</ConformanceMode>
  527. </ClCompile>
  528. <Link>
  529. <SubSystem>Windows</SubSystem>
  530. <FullProgramDatabaseFile>true</FullProgramDatabaseFile>
  531. <GenerateDebugInformation>DebugFastLink</GenerateDebugInformation>
  532. </Link>
  533. </ItemDefinitionGroup>
  534. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
  535. <ClCompile>
  536. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  537. <WarningLevel>Level3</WarningLevel>
  538. <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=0x0A00;NTDDI_VERSION=0x0A000004;HAVE_CONFIG_H;OUTSIDE_SPEEX;RANDOM_PREFIX=libopusenc;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  539. <AdditionalIncludeDirectories>..\..\..\include\ogg\include;..\..\..\include\opus\include;..\..\..\include\opusenc\include;..\..\..\include\opusenc\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  540. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  541. <Optimization>Disabled</Optimization>
  542. <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
  543. <AdditionalOptions>/wd4018 /wd4100 /wd4101 /wd4127 /wd4244 /wd4267 /wd4456 /wd4706 /wd6262 %(AdditionalOptions)</AdditionalOptions>
  544. <ConformanceMode>true</ConformanceMode>
  545. </ClCompile>
  546. <Link>
  547. <SubSystem>Windows</SubSystem>
  548. <GenerateDebugInformation>true</GenerateDebugInformation>
  549. </Link>
  550. </ItemDefinitionGroup>
  551. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
  552. <ClCompile>
  553. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  554. <WarningLevel>Level3</WarningLevel>
  555. <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=0x0A00;NTDDI_VERSION=0x0A000004;HAVE_CONFIG_H;OUTSIDE_SPEEX;RANDOM_PREFIX=libopusenc;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  556. <AdditionalIncludeDirectories>..\..\..\include\ogg\include;..\..\..\include\opus\include;..\..\..\include\opusenc\include;..\..\..\include\opusenc\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  557. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  558. <Optimization>Disabled</Optimization>
  559. <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
  560. <AdditionalOptions>/wd4018 /wd4100 /wd4101 /wd4127 /wd4244 /wd4267 /wd4456 /wd4706 /wd6262 %(AdditionalOptions)</AdditionalOptions>
  561. <ConformanceMode>true</ConformanceMode>
  562. </ClCompile>
  563. <Link>
  564. <SubSystem>Windows</SubSystem>
  565. <GenerateDebugInformation>true</GenerateDebugInformation>
  566. </Link>
  567. </ItemDefinitionGroup>
  568. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  569. <ClCompile>
  570. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  571. <WarningLevel>Level3</WarningLevel>
  572. <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=0x0A00;NTDDI_VERSION=0x0A000000;HAVE_CONFIG_H;OUTSIDE_SPEEX;RANDOM_PREFIX=libopusenc;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  573. <AdditionalIncludeDirectories>..\..\..\include\ogg\include;..\..\..\include\opus\include;..\..\..\include\opusenc\include;..\..\..\include\opusenc\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  574. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  575. <Optimization>MaxSpeed</Optimization>
  576. <FunctionLevelLinking>true</FunctionLevelLinking>
  577. <IntrinsicFunctions>true</IntrinsicFunctions>
  578. <MinimalRebuild>false</MinimalRebuild>
  579. <StringPooling>true</StringPooling>
  580. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  581. <EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
  582. <AdditionalOptions>/wd4018 /wd4100 /wd4101 /wd4127 /wd4244 /wd4267 /wd4456 /wd4706 /wd6262 %(AdditionalOptions)</AdditionalOptions>
  583. <ConformanceMode>true</ConformanceMode>
  584. </ClCompile>
  585. <Link>
  586. <SubSystem>Windows</SubSystem>
  587. <GenerateDebugInformation>true</GenerateDebugInformation>
  588. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  589. <OptimizeReferences>true</OptimizeReferences>
  590. </Link>
  591. </ItemDefinitionGroup>
  592. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  593. <ClCompile>
  594. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  595. <WarningLevel>Level3</WarningLevel>
  596. <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=0x0A00;NTDDI_VERSION=0x0A000000;HAVE_CONFIG_H;OUTSIDE_SPEEX;RANDOM_PREFIX=libopusenc;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  597. <AdditionalIncludeDirectories>..\..\..\include\ogg\include;..\..\..\include\opus\include;..\..\..\include\opusenc\include;..\..\..\include\opusenc\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  598. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  599. <Optimization>MaxSpeed</Optimization>
  600. <FunctionLevelLinking>true</FunctionLevelLinking>
  601. <IntrinsicFunctions>true</IntrinsicFunctions>
  602. <MinimalRebuild>false</MinimalRebuild>
  603. <StringPooling>true</StringPooling>
  604. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  605. <AdditionalOptions>/wd4018 /wd4100 /wd4101 /wd4127 /wd4244 /wd4267 /wd4456 /wd4706 /wd6262 %(AdditionalOptions)</AdditionalOptions>
  606. <ConformanceMode>true</ConformanceMode>
  607. </ClCompile>
  608. <Link>
  609. <SubSystem>Windows</SubSystem>
  610. <GenerateDebugInformation>true</GenerateDebugInformation>
  611. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  612. <OptimizeReferences>true</OptimizeReferences>
  613. </Link>
  614. </ItemDefinitionGroup>
  615. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
  616. <ClCompile>
  617. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  618. <WarningLevel>Level3</WarningLevel>
  619. <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=0x0A00;NTDDI_VERSION=0x0A000004;HAVE_CONFIG_H;OUTSIDE_SPEEX;RANDOM_PREFIX=libopusenc;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  620. <AdditionalIncludeDirectories>..\..\..\include\ogg\include;..\..\..\include\opus\include;..\..\..\include\opusenc\include;..\..\..\include\opusenc\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  621. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  622. <Optimization>MaxSpeed</Optimization>
  623. <FunctionLevelLinking>true</FunctionLevelLinking>
  624. <IntrinsicFunctions>true</IntrinsicFunctions>
  625. <MinimalRebuild>false</MinimalRebuild>
  626. <StringPooling>true</StringPooling>
  627. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  628. <AdditionalOptions>/wd4018 /wd4100 /wd4101 /wd4127 /wd4244 /wd4267 /wd4456 /wd4706 /wd6262 %(AdditionalOptions)</AdditionalOptions>
  629. <ConformanceMode>true</ConformanceMode>
  630. </ClCompile>
  631. <Link>
  632. <SubSystem>Windows</SubSystem>
  633. <GenerateDebugInformation>true</GenerateDebugInformation>
  634. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  635. <OptimizeReferences>true</OptimizeReferences>
  636. </Link>
  637. </ItemDefinitionGroup>
  638. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
  639. <ClCompile>
  640. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  641. <WarningLevel>Level3</WarningLevel>
  642. <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=0x0A00;NTDDI_VERSION=0x0A000004;HAVE_CONFIG_H;OUTSIDE_SPEEX;RANDOM_PREFIX=libopusenc;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  643. <AdditionalIncludeDirectories>..\..\..\include\ogg\include;..\..\..\include\opus\include;..\..\..\include\opusenc\include;..\..\..\include\opusenc\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  644. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  645. <Optimization>MaxSpeed</Optimization>
  646. <FunctionLevelLinking>true</FunctionLevelLinking>
  647. <IntrinsicFunctions>true</IntrinsicFunctions>
  648. <MinimalRebuild>false</MinimalRebuild>
  649. <StringPooling>true</StringPooling>
  650. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  651. <AdditionalOptions>/wd4018 /wd4100 /wd4101 /wd4127 /wd4244 /wd4267 /wd4456 /wd4706 /wd6262 %(AdditionalOptions)</AdditionalOptions>
  652. <ConformanceMode>true</ConformanceMode>
  653. </ClCompile>
  654. <Link>
  655. <SubSystem>Windows</SubSystem>
  656. <GenerateDebugInformation>true</GenerateDebugInformation>
  657. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  658. <OptimizeReferences>true</OptimizeReferences>
  659. </Link>
  660. </ItemDefinitionGroup>
  661. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Checked|Win32'">
  662. <ClCompile>
  663. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  664. <WarningLevel>Level3</WarningLevel>
  665. <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=0x0A00;NTDDI_VERSION=0x0A000000;HAVE_CONFIG_H;OUTSIDE_SPEEX;RANDOM_PREFIX=libopusenc;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  666. <AdditionalIncludeDirectories>..\..\..\include\ogg\include;..\..\..\include\opus\include;..\..\..\include\opusenc\include;..\..\..\include\opusenc\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  667. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  668. <Optimization>Full</Optimization>
  669. <FunctionLevelLinking>true</FunctionLevelLinking>
  670. <IntrinsicFunctions>true</IntrinsicFunctions>
  671. <MinimalRebuild>false</MinimalRebuild>
  672. <OmitFramePointers>false</OmitFramePointers>
  673. <StringPooling>true</StringPooling>
  674. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  675. <EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
  676. <AdditionalOptions>/wd4018 /wd4100 /wd4101 /wd4127 /wd4244 /wd4267 /wd4456 /wd4706 /wd6262 %(AdditionalOptions)</AdditionalOptions>
  677. <ConformanceMode>true</ConformanceMode>
  678. </ClCompile>
  679. <Link>
  680. <SubSystem>Windows</SubSystem>
  681. <GenerateDebugInformation>true</GenerateDebugInformation>
  682. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  683. <OptimizeReferences>true</OptimizeReferences>
  684. </Link>
  685. </ItemDefinitionGroup>
  686. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Checked|x64'">
  687. <ClCompile>
  688. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  689. <WarningLevel>Level3</WarningLevel>
  690. <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=0x0A00;NTDDI_VERSION=0x0A000000;HAVE_CONFIG_H;OUTSIDE_SPEEX;RANDOM_PREFIX=libopusenc;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  691. <AdditionalIncludeDirectories>..\..\..\include\ogg\include;..\..\..\include\opus\include;..\..\..\include\opusenc\include;..\..\..\include\opusenc\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  692. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  693. <Optimization>Full</Optimization>
  694. <FunctionLevelLinking>true</FunctionLevelLinking>
  695. <IntrinsicFunctions>true</IntrinsicFunctions>
  696. <MinimalRebuild>false</MinimalRebuild>
  697. <OmitFramePointers>false</OmitFramePointers>
  698. <StringPooling>true</StringPooling>
  699. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  700. <AdditionalOptions>/wd4018 /wd4100 /wd4101 /wd4127 /wd4244 /wd4267 /wd4456 /wd4706 /wd6262 %(AdditionalOptions)</AdditionalOptions>
  701. <ConformanceMode>true</ConformanceMode>
  702. </ClCompile>
  703. <Link>
  704. <SubSystem>Windows</SubSystem>
  705. <GenerateDebugInformation>true</GenerateDebugInformation>
  706. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  707. <OptimizeReferences>true</OptimizeReferences>
  708. </Link>
  709. </ItemDefinitionGroup>
  710. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Checked|ARM'">
  711. <ClCompile>
  712. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  713. <WarningLevel>Level3</WarningLevel>
  714. <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=0x0A00;NTDDI_VERSION=0x0A000004;HAVE_CONFIG_H;OUTSIDE_SPEEX;RANDOM_PREFIX=libopusenc;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  715. <AdditionalIncludeDirectories>..\..\..\include\ogg\include;..\..\..\include\opus\include;..\..\..\include\opusenc\include;..\..\..\include\opusenc\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  716. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  717. <Optimization>Full</Optimization>
  718. <FunctionLevelLinking>true</FunctionLevelLinking>
  719. <IntrinsicFunctions>true</IntrinsicFunctions>
  720. <MinimalRebuild>false</MinimalRebuild>
  721. <OmitFramePointers>false</OmitFramePointers>
  722. <StringPooling>true</StringPooling>
  723. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  724. <AdditionalOptions>/wd4018 /wd4100 /wd4101 /wd4127 /wd4244 /wd4267 /wd4456 /wd4706 /wd6262 %(AdditionalOptions)</AdditionalOptions>
  725. <ConformanceMode>true</ConformanceMode>
  726. </ClCompile>
  727. <Link>
  728. <SubSystem>Windows</SubSystem>
  729. <GenerateDebugInformation>true</GenerateDebugInformation>
  730. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  731. <OptimizeReferences>true</OptimizeReferences>
  732. </Link>
  733. </ItemDefinitionGroup>
  734. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Checked|ARM64'">
  735. <ClCompile>
  736. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  737. <WarningLevel>Level3</WarningLevel>
  738. <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=0x0A00;NTDDI_VERSION=0x0A000004;HAVE_CONFIG_H;OUTSIDE_SPEEX;RANDOM_PREFIX=libopusenc;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  739. <AdditionalIncludeDirectories>..\..\..\include\ogg\include;..\..\..\include\opus\include;..\..\..\include\opusenc\include;..\..\..\include\opusenc\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  740. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  741. <Optimization>Full</Optimization>
  742. <FunctionLevelLinking>true</FunctionLevelLinking>
  743. <IntrinsicFunctions>true</IntrinsicFunctions>
  744. <MinimalRebuild>false</MinimalRebuild>
  745. <OmitFramePointers>false</OmitFramePointers>
  746. <StringPooling>true</StringPooling>
  747. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  748. <AdditionalOptions>/wd4018 /wd4100 /wd4101 /wd4127 /wd4244 /wd4267 /wd4456 /wd4706 /wd6262 %(AdditionalOptions)</AdditionalOptions>
  749. <ConformanceMode>true</ConformanceMode>
  750. </ClCompile>
  751. <Link>
  752. <SubSystem>Windows</SubSystem>
  753. <GenerateDebugInformation>true</GenerateDebugInformation>
  754. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  755. <OptimizeReferences>true</OptimizeReferences>
  756. </Link>
  757. </ItemDefinitionGroup>
  758. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DebugShared|Win32'">
  759. <ClCompile>
  760. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  761. <WarningLevel>Level3</WarningLevel>
  762. <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=0x0A00;NTDDI_VERSION=0x0A000000;HAVE_CONFIG_H;OUTSIDE_SPEEX;RANDOM_PREFIX=libopusenc;DLL_EXPORT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  763. <AdditionalIncludeDirectories>..\..\..\include\ogg\include;..\..\..\include\opus\include;..\..\..\include\opusenc\include;..\..\..\include\opusenc\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  764. <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
  765. <Optimization>Disabled</Optimization>
  766. <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
  767. <AdditionalOptions>/wd4018 /wd4100 /wd4101 /wd4127 /wd4244 /wd4267 /wd4456 /wd4706 /wd6262 %(AdditionalOptions)</AdditionalOptions>
  768. <ConformanceMode>true</ConformanceMode>
  769. </ClCompile>
  770. <Link>
  771. <SubSystem>Windows</SubSystem>
  772. <GenerateDebugInformation>true</GenerateDebugInformation>
  773. <ImportLibrary>..\..\..\bin\debug\vs2022-win10clang-shared\x86\openmpt-opusenc.lib</ImportLibrary>
  774. </Link>
  775. </ItemDefinitionGroup>
  776. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DebugShared|x64'">
  777. <ClCompile>
  778. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  779. <WarningLevel>Level3</WarningLevel>
  780. <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=0x0A00;NTDDI_VERSION=0x0A000000;HAVE_CONFIG_H;OUTSIDE_SPEEX;RANDOM_PREFIX=libopusenc;DLL_EXPORT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  781. <AdditionalIncludeDirectories>..\..\..\include\ogg\include;..\..\..\include\opus\include;..\..\..\include\opusenc\include;..\..\..\include\opusenc\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  782. <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
  783. <Optimization>Disabled</Optimization>
  784. <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
  785. <AdditionalOptions>/wd4018 /wd4100 /wd4101 /wd4127 /wd4244 /wd4267 /wd4456 /wd4706 /wd6262 %(AdditionalOptions)</AdditionalOptions>
  786. <ConformanceMode>true</ConformanceMode>
  787. </ClCompile>
  788. <Link>
  789. <SubSystem>Windows</SubSystem>
  790. <GenerateDebugInformation>true</GenerateDebugInformation>
  791. <ImportLibrary>..\..\..\bin\debug\vs2022-win10clang-shared\amd64\openmpt-opusenc.lib</ImportLibrary>
  792. </Link>
  793. </ItemDefinitionGroup>
  794. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DebugShared|ARM'">
  795. <ClCompile>
  796. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  797. <WarningLevel>Level3</WarningLevel>
  798. <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=0x0A00;NTDDI_VERSION=0x0A000004;HAVE_CONFIG_H;OUTSIDE_SPEEX;RANDOM_PREFIX=libopusenc;DLL_EXPORT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  799. <AdditionalIncludeDirectories>..\..\..\include\ogg\include;..\..\..\include\opus\include;..\..\..\include\opusenc\include;..\..\..\include\opusenc\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  800. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  801. <Optimization>Disabled</Optimization>
  802. <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
  803. <AdditionalOptions>/wd4018 /wd4100 /wd4101 /wd4127 /wd4244 /wd4267 /wd4456 /wd4706 /wd6262 %(AdditionalOptions)</AdditionalOptions>
  804. <ConformanceMode>true</ConformanceMode>
  805. </ClCompile>
  806. <Link>
  807. <SubSystem>Windows</SubSystem>
  808. <GenerateDebugInformation>true</GenerateDebugInformation>
  809. <ImportLibrary>..\..\..\bin\debug\vs2022-win10clang-shared\arm\openmpt-opusenc.lib</ImportLibrary>
  810. </Link>
  811. </ItemDefinitionGroup>
  812. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DebugShared|ARM64'">
  813. <ClCompile>
  814. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  815. <WarningLevel>Level3</WarningLevel>
  816. <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=0x0A00;NTDDI_VERSION=0x0A000004;HAVE_CONFIG_H;OUTSIDE_SPEEX;RANDOM_PREFIX=libopusenc;DLL_EXPORT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  817. <AdditionalIncludeDirectories>..\..\..\include\ogg\include;..\..\..\include\opus\include;..\..\..\include\opusenc\include;..\..\..\include\opusenc\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  818. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  819. <Optimization>Disabled</Optimization>
  820. <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
  821. <AdditionalOptions>/wd4018 /wd4100 /wd4101 /wd4127 /wd4244 /wd4267 /wd4456 /wd4706 /wd6262 %(AdditionalOptions)</AdditionalOptions>
  822. <ConformanceMode>true</ConformanceMode>
  823. </ClCompile>
  824. <Link>
  825. <SubSystem>Windows</SubSystem>
  826. <GenerateDebugInformation>true</GenerateDebugInformation>
  827. <ImportLibrary>..\..\..\bin\debug\vs2022-win10clang-shared\arm64\openmpt-opusenc.lib</ImportLibrary>
  828. </Link>
  829. </ItemDefinitionGroup>
  830. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseShared|Win32'">
  831. <ClCompile>
  832. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  833. <WarningLevel>Level3</WarningLevel>
  834. <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=0x0A00;NTDDI_VERSION=0x0A000000;HAVE_CONFIG_H;OUTSIDE_SPEEX;RANDOM_PREFIX=libopusenc;DLL_EXPORT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  835. <AdditionalIncludeDirectories>..\..\..\include\ogg\include;..\..\..\include\opus\include;..\..\..\include\opusenc\include;..\..\..\include\opusenc\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  836. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  837. <Optimization>MaxSpeed</Optimization>
  838. <FunctionLevelLinking>true</FunctionLevelLinking>
  839. <IntrinsicFunctions>true</IntrinsicFunctions>
  840. <MinimalRebuild>false</MinimalRebuild>
  841. <StringPooling>true</StringPooling>
  842. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  843. <EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
  844. <AdditionalOptions>/wd4018 /wd4100 /wd4101 /wd4127 /wd4244 /wd4267 /wd4456 /wd4706 /wd6262 %(AdditionalOptions)</AdditionalOptions>
  845. <ConformanceMode>true</ConformanceMode>
  846. </ClCompile>
  847. <Link>
  848. <SubSystem>Windows</SubSystem>
  849. <GenerateDebugInformation>true</GenerateDebugInformation>
  850. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  851. <OptimizeReferences>true</OptimizeReferences>
  852. <ImportLibrary>..\..\..\bin\release\vs2022-win10clang-shared\x86\openmpt-opusenc.lib</ImportLibrary>
  853. </Link>
  854. </ItemDefinitionGroup>
  855. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseShared|x64'">
  856. <ClCompile>
  857. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  858. <WarningLevel>Level3</WarningLevel>
  859. <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=0x0A00;NTDDI_VERSION=0x0A000000;HAVE_CONFIG_H;OUTSIDE_SPEEX;RANDOM_PREFIX=libopusenc;DLL_EXPORT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  860. <AdditionalIncludeDirectories>..\..\..\include\ogg\include;..\..\..\include\opus\include;..\..\..\include\opusenc\include;..\..\..\include\opusenc\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  861. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  862. <Optimization>MaxSpeed</Optimization>
  863. <FunctionLevelLinking>true</FunctionLevelLinking>
  864. <IntrinsicFunctions>true</IntrinsicFunctions>
  865. <MinimalRebuild>false</MinimalRebuild>
  866. <StringPooling>true</StringPooling>
  867. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  868. <AdditionalOptions>/wd4018 /wd4100 /wd4101 /wd4127 /wd4244 /wd4267 /wd4456 /wd4706 /wd6262 %(AdditionalOptions)</AdditionalOptions>
  869. <ConformanceMode>true</ConformanceMode>
  870. </ClCompile>
  871. <Link>
  872. <SubSystem>Windows</SubSystem>
  873. <GenerateDebugInformation>true</GenerateDebugInformation>
  874. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  875. <OptimizeReferences>true</OptimizeReferences>
  876. <ImportLibrary>..\..\..\bin\release\vs2022-win10clang-shared\amd64\openmpt-opusenc.lib</ImportLibrary>
  877. </Link>
  878. </ItemDefinitionGroup>
  879. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseShared|ARM'">
  880. <ClCompile>
  881. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  882. <WarningLevel>Level3</WarningLevel>
  883. <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=0x0A00;NTDDI_VERSION=0x0A000004;HAVE_CONFIG_H;OUTSIDE_SPEEX;RANDOM_PREFIX=libopusenc;DLL_EXPORT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  884. <AdditionalIncludeDirectories>..\..\..\include\ogg\include;..\..\..\include\opus\include;..\..\..\include\opusenc\include;..\..\..\include\opusenc\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  885. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  886. <Optimization>MaxSpeed</Optimization>
  887. <FunctionLevelLinking>true</FunctionLevelLinking>
  888. <IntrinsicFunctions>true</IntrinsicFunctions>
  889. <MinimalRebuild>false</MinimalRebuild>
  890. <StringPooling>true</StringPooling>
  891. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  892. <AdditionalOptions>/wd4018 /wd4100 /wd4101 /wd4127 /wd4244 /wd4267 /wd4456 /wd4706 /wd6262 %(AdditionalOptions)</AdditionalOptions>
  893. <ConformanceMode>true</ConformanceMode>
  894. </ClCompile>
  895. <Link>
  896. <SubSystem>Windows</SubSystem>
  897. <GenerateDebugInformation>true</GenerateDebugInformation>
  898. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  899. <OptimizeReferences>true</OptimizeReferences>
  900. <ImportLibrary>..\..\..\bin\release\vs2022-win10clang-shared\arm\openmpt-opusenc.lib</ImportLibrary>
  901. </Link>
  902. </ItemDefinitionGroup>
  903. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseShared|ARM64'">
  904. <ClCompile>
  905. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  906. <WarningLevel>Level3</WarningLevel>
  907. <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=0x0A00;NTDDI_VERSION=0x0A000004;HAVE_CONFIG_H;OUTSIDE_SPEEX;RANDOM_PREFIX=libopusenc;DLL_EXPORT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  908. <AdditionalIncludeDirectories>..\..\..\include\ogg\include;..\..\..\include\opus\include;..\..\..\include\opusenc\include;..\..\..\include\opusenc\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  909. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  910. <Optimization>MaxSpeed</Optimization>
  911. <FunctionLevelLinking>true</FunctionLevelLinking>
  912. <IntrinsicFunctions>true</IntrinsicFunctions>
  913. <MinimalRebuild>false</MinimalRebuild>
  914. <StringPooling>true</StringPooling>
  915. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  916. <AdditionalOptions>/wd4018 /wd4100 /wd4101 /wd4127 /wd4244 /wd4267 /wd4456 /wd4706 /wd6262 %(AdditionalOptions)</AdditionalOptions>
  917. <ConformanceMode>true</ConformanceMode>
  918. </ClCompile>
  919. <Link>
  920. <SubSystem>Windows</SubSystem>
  921. <GenerateDebugInformation>true</GenerateDebugInformation>
  922. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  923. <OptimizeReferences>true</OptimizeReferences>
  924. <ImportLibrary>..\..\..\bin\release\vs2022-win10clang-shared\arm64\openmpt-opusenc.lib</ImportLibrary>
  925. </Link>
  926. </ItemDefinitionGroup>
  927. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='CheckedShared|Win32'">
  928. <ClCompile>
  929. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  930. <WarningLevel>Level3</WarningLevel>
  931. <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=0x0A00;NTDDI_VERSION=0x0A000000;HAVE_CONFIG_H;OUTSIDE_SPEEX;RANDOM_PREFIX=libopusenc;DLL_EXPORT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  932. <AdditionalIncludeDirectories>..\..\..\include\ogg\include;..\..\..\include\opus\include;..\..\..\include\opusenc\include;..\..\..\include\opusenc\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  933. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  934. <Optimization>Full</Optimization>
  935. <FunctionLevelLinking>true</FunctionLevelLinking>
  936. <IntrinsicFunctions>true</IntrinsicFunctions>
  937. <MinimalRebuild>false</MinimalRebuild>
  938. <OmitFramePointers>false</OmitFramePointers>
  939. <StringPooling>true</StringPooling>
  940. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  941. <EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
  942. <AdditionalOptions>/wd4018 /wd4100 /wd4101 /wd4127 /wd4244 /wd4267 /wd4456 /wd4706 /wd6262 %(AdditionalOptions)</AdditionalOptions>
  943. <ConformanceMode>true</ConformanceMode>
  944. </ClCompile>
  945. <Link>
  946. <SubSystem>Windows</SubSystem>
  947. <GenerateDebugInformation>true</GenerateDebugInformation>
  948. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  949. <OptimizeReferences>true</OptimizeReferences>
  950. <ImportLibrary>..\..\..\bin\checked\vs2022-win10clang-shared\x86\openmpt-opusenc.lib</ImportLibrary>
  951. </Link>
  952. </ItemDefinitionGroup>
  953. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='CheckedShared|x64'">
  954. <ClCompile>
  955. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  956. <WarningLevel>Level3</WarningLevel>
  957. <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=0x0A00;NTDDI_VERSION=0x0A000000;HAVE_CONFIG_H;OUTSIDE_SPEEX;RANDOM_PREFIX=libopusenc;DLL_EXPORT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  958. <AdditionalIncludeDirectories>..\..\..\include\ogg\include;..\..\..\include\opus\include;..\..\..\include\opusenc\include;..\..\..\include\opusenc\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  959. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  960. <Optimization>Full</Optimization>
  961. <FunctionLevelLinking>true</FunctionLevelLinking>
  962. <IntrinsicFunctions>true</IntrinsicFunctions>
  963. <MinimalRebuild>false</MinimalRebuild>
  964. <OmitFramePointers>false</OmitFramePointers>
  965. <StringPooling>true</StringPooling>
  966. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  967. <AdditionalOptions>/wd4018 /wd4100 /wd4101 /wd4127 /wd4244 /wd4267 /wd4456 /wd4706 /wd6262 %(AdditionalOptions)</AdditionalOptions>
  968. <ConformanceMode>true</ConformanceMode>
  969. </ClCompile>
  970. <Link>
  971. <SubSystem>Windows</SubSystem>
  972. <GenerateDebugInformation>true</GenerateDebugInformation>
  973. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  974. <OptimizeReferences>true</OptimizeReferences>
  975. <ImportLibrary>..\..\..\bin\checked\vs2022-win10clang-shared\amd64\openmpt-opusenc.lib</ImportLibrary>
  976. </Link>
  977. </ItemDefinitionGroup>
  978. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='CheckedShared|ARM'">
  979. <ClCompile>
  980. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  981. <WarningLevel>Level3</WarningLevel>
  982. <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=0x0A00;NTDDI_VERSION=0x0A000004;HAVE_CONFIG_H;OUTSIDE_SPEEX;RANDOM_PREFIX=libopusenc;DLL_EXPORT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  983. <AdditionalIncludeDirectories>..\..\..\include\ogg\include;..\..\..\include\opus\include;..\..\..\include\opusenc\include;..\..\..\include\opusenc\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  984. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  985. <Optimization>Full</Optimization>
  986. <FunctionLevelLinking>true</FunctionLevelLinking>
  987. <IntrinsicFunctions>true</IntrinsicFunctions>
  988. <MinimalRebuild>false</MinimalRebuild>
  989. <OmitFramePointers>false</OmitFramePointers>
  990. <StringPooling>true</StringPooling>
  991. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  992. <AdditionalOptions>/wd4018 /wd4100 /wd4101 /wd4127 /wd4244 /wd4267 /wd4456 /wd4706 /wd6262 %(AdditionalOptions)</AdditionalOptions>
  993. <ConformanceMode>true</ConformanceMode>
  994. </ClCompile>
  995. <Link>
  996. <SubSystem>Windows</SubSystem>
  997. <GenerateDebugInformation>true</GenerateDebugInformation>
  998. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  999. <OptimizeReferences>true</OptimizeReferences>
  1000. <ImportLibrary>..\..\..\bin\checked\vs2022-win10clang-shared\arm\openmpt-opusenc.lib</ImportLibrary>
  1001. </Link>
  1002. </ItemDefinitionGroup>
  1003. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='CheckedShared|ARM64'">
  1004. <ClCompile>
  1005. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  1006. <WarningLevel>Level3</WarningLevel>
  1007. <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=0x0A00;NTDDI_VERSION=0x0A000004;HAVE_CONFIG_H;OUTSIDE_SPEEX;RANDOM_PREFIX=libopusenc;DLL_EXPORT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  1008. <AdditionalIncludeDirectories>..\..\..\include\ogg\include;..\..\..\include\opus\include;..\..\..\include\opusenc\include;..\..\..\include\opusenc\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  1009. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  1010. <Optimization>Full</Optimization>
  1011. <FunctionLevelLinking>true</FunctionLevelLinking>
  1012. <IntrinsicFunctions>true</IntrinsicFunctions>
  1013. <MinimalRebuild>false</MinimalRebuild>
  1014. <OmitFramePointers>false</OmitFramePointers>
  1015. <StringPooling>true</StringPooling>
  1016. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  1017. <AdditionalOptions>/wd4018 /wd4100 /wd4101 /wd4127 /wd4244 /wd4267 /wd4456 /wd4706 /wd6262 %(AdditionalOptions)</AdditionalOptions>
  1018. <ConformanceMode>true</ConformanceMode>
  1019. </ClCompile>
  1020. <Link>
  1021. <SubSystem>Windows</SubSystem>
  1022. <GenerateDebugInformation>true</GenerateDebugInformation>
  1023. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  1024. <OptimizeReferences>true</OptimizeReferences>
  1025. <ImportLibrary>..\..\..\bin\checked\vs2022-win10clang-shared\arm64\openmpt-opusenc.lib</ImportLibrary>
  1026. </Link>
  1027. </ItemDefinitionGroup>
  1028. <ItemGroup>
  1029. <ClInclude Include="..\..\..\include\opusenc\include\opusenc.h" />
  1030. <ClInclude Include="..\..\..\include\opusenc\src\arch.h" />
  1031. <ClInclude Include="..\..\..\include\opusenc\src\ogg_packer.h" />
  1032. <ClInclude Include="..\..\..\include\opusenc\src\opus_header.h" />
  1033. <ClInclude Include="..\..\..\include\opusenc\src\picture.h" />
  1034. <ClInclude Include="..\..\..\include\opusenc\src\resample_sse.h" />
  1035. <ClInclude Include="..\..\..\include\opusenc\src\speex_resampler.h" />
  1036. <ClInclude Include="..\..\..\include\opusenc\src\unicode_support.h" />
  1037. <ClInclude Include="..\..\..\include\opusenc\win32\config.h" />
  1038. <ClInclude Include="..\..\..\include\opusenc\win32\version.h" />
  1039. </ItemGroup>
  1040. <ItemGroup>
  1041. <ClCompile Include="..\..\..\include\opusenc\src\ogg_packer.c" />
  1042. <ClCompile Include="..\..\..\include\opusenc\src\opus_header.c" />
  1043. <ClCompile Include="..\..\..\include\opusenc\src\opusenc.c" />
  1044. <ClCompile Include="..\..\..\include\opusenc\src\picture.c" />
  1045. <ClCompile Include="..\..\..\include\opusenc\src\resample.c" />
  1046. <ClCompile Include="..\..\..\include\opusenc\src\unicode_support.c" />
  1047. </ItemGroup>
  1048. <ItemGroup>
  1049. <ProjectReference Include="ogg.vcxproj">
  1050. <Project>{D8D5E11C-F959-49EF-B741-B3F6DE52DED8}</Project>
  1051. </ProjectReference>
  1052. <ProjectReference Include="opus.vcxproj">
  1053. <Project>{9A2D9099-E1A2-4287-B845-E3598AD24D70}</Project>
  1054. </ProjectReference>
  1055. </ItemGroup>
  1056. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  1057. <ImportGroup Label="ExtensionTargets">
  1058. </ImportGroup>
  1059. </Project>