SDL2.vcproj 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000
  1. <?xml version="1.0" encoding="Windows-1252"?>
  2. <VisualStudioProject
  3. ProjectType="Visual C++"
  4. Version="9.00"
  5. Name="SDL2"
  6. ProjectGUID="{CB2E0D61-6692-7844-B1B9-550870AF8286}"
  7. RootNamespace="SDL2"
  8. Keyword="Win32Proj"
  9. >
  10. <Platforms>
  11. <Platform
  12. Name="Win32"
  13. />
  14. </Platforms>
  15. <ToolFiles>
  16. </ToolFiles>
  17. <Configurations>
  18. <Configuration
  19. Name="Debug|Win32"
  20. OutputDirectory="Win32\Debug"
  21. IntermediateDirectory="obj\Debug"
  22. ConfigurationType="2"
  23. CharacterSet="2"
  24. >
  25. <Tool
  26. Name="VCPreBuildEventTool"
  27. />
  28. <Tool
  29. Name="VCCustomBuildTool"
  30. />
  31. <Tool
  32. Name="VCXMLDataGeneratorTool"
  33. />
  34. <Tool
  35. Name="VCWebServiceProxyGeneratorTool"
  36. />
  37. <Tool
  38. Name="VCMIDLTool"
  39. />
  40. <Tool
  41. Name="VCCLCompilerTool"
  42. Optimization="0"
  43. AdditionalIncludeDirectories="..;..\..\..\..\include;$(DXSDK_DIR)\Include"
  44. PreprocessorDefinitions="USING_PREMAKE_CONFIG_H;_DEBUG;_WINDOWS"
  45. MinimalRebuild="true"
  46. ExceptionHandling="0"
  47. BasicRuntimeChecks="3"
  48. RuntimeLibrary="3"
  49. EnableFunctionLevelLinking="true"
  50. UsePrecompiledHeader="0"
  51. WarningLevel="3"
  52. ProgramDataBaseFileName="$(OutDir)\SDL2.pdb"
  53. DebugInformationFormat="4"
  54. />
  55. <Tool
  56. Name="VCManagedResourceCompilerTool"
  57. />
  58. <Tool
  59. Name="VCResourceCompilerTool"
  60. PreprocessorDefinitions="USING_PREMAKE_CONFIG_H;_DEBUG;_WINDOWS"
  61. AdditionalIncludeDirectories="..;..\..\..\..\include;$(DXSDK_DIR)\Include"
  62. />
  63. <Tool
  64. Name="VCPreLinkEventTool"
  65. />
  66. <Tool
  67. Name="VCLinkerTool"
  68. AdditionalDependencies="imm32.lib oleaut32.lib winmm.lib version.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib uuid.lib odbc32.lib odbccp32.lib OpenGL32.lib"
  69. OutputFile="$(OutDir)\SDL2.dll"
  70. LinkIncremental="2"
  71. AdditionalLibraryDirectories="$(DXSDK_DIR)\Lib\x86"
  72. GenerateDebugInformation="true"
  73. ProgramDataBaseFileName="$(OutDir)\SDL2.pdb"
  74. SubSystem="2"
  75. ImportLibrary="Win32\Debug\SDL2.lib"
  76. TargetMachine="1"
  77. />
  78. <Tool
  79. Name="VCALinkTool"
  80. />
  81. <Tool
  82. Name="VCManifestTool"
  83. />
  84. <Tool
  85. Name="VCXDCMakeTool"
  86. />
  87. <Tool
  88. Name="VCBscMakeTool"
  89. />
  90. <Tool
  91. Name="VCFxCopTool"
  92. />
  93. <Tool
  94. Name="VCAppVerifierTool"
  95. />
  96. <Tool
  97. Name="VCWebDeploymentTool"
  98. />
  99. <Tool
  100. Name="VCPostBuildEventTool"
  101. />
  102. </Configuration>
  103. <Configuration
  104. Name="Release|Win32"
  105. OutputDirectory="Win32\Release"
  106. IntermediateDirectory="obj\Release"
  107. ConfigurationType="2"
  108. CharacterSet="2"
  109. >
  110. <Tool
  111. Name="VCPreBuildEventTool"
  112. />
  113. <Tool
  114. Name="VCCustomBuildTool"
  115. />
  116. <Tool
  117. Name="VCXMLDataGeneratorTool"
  118. />
  119. <Tool
  120. Name="VCWebServiceProxyGeneratorTool"
  121. />
  122. <Tool
  123. Name="VCMIDLTool"
  124. />
  125. <Tool
  126. Name="VCCLCompilerTool"
  127. Optimization="2"
  128. AdditionalIncludeDirectories="..;..\..\..\..\include;$(DXSDK_DIR)\Include"
  129. PreprocessorDefinitions="USING_PREMAKE_CONFIG_H;NDEBUG;_WINDOWS"
  130. ExceptionHandling="0"
  131. StringPooling="true"
  132. RuntimeLibrary="2"
  133. EnableFunctionLevelLinking="true"
  134. UsePrecompiledHeader="0"
  135. WarningLevel="3"
  136. ProgramDataBaseFileName="$(OutDir)\SDL2.pdb"
  137. DebugInformationFormat="0"
  138. />
  139. <Tool
  140. Name="VCManagedResourceCompilerTool"
  141. />
  142. <Tool
  143. Name="VCResourceCompilerTool"
  144. PreprocessorDefinitions="USING_PREMAKE_CONFIG_H;NDEBUG;_WINDOWS"
  145. AdditionalIncludeDirectories="..;..\..\..\..\include;$(DXSDK_DIR)\Include"
  146. />
  147. <Tool
  148. Name="VCPreLinkEventTool"
  149. />
  150. <Tool
  151. Name="VCLinkerTool"
  152. AdditionalDependencies="imm32.lib oleaut32.lib winmm.lib version.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib uuid.lib odbc32.lib odbccp32.lib OpenGL32.lib"
  153. OutputFile="$(OutDir)\SDL2.dll"
  154. LinkIncremental="1"
  155. AdditionalLibraryDirectories="$(DXSDK_DIR)\Lib\x86"
  156. GenerateDebugInformation="false"
  157. SubSystem="2"
  158. OptimizeReferences="2"
  159. EnableCOMDATFolding="2"
  160. ImportLibrary="Win32\Release\SDL2.lib"
  161. TargetMachine="1"
  162. />
  163. <Tool
  164. Name="VCALinkTool"
  165. />
  166. <Tool
  167. Name="VCManifestTool"
  168. />
  169. <Tool
  170. Name="VCXDCMakeTool"
  171. />
  172. <Tool
  173. Name="VCBscMakeTool"
  174. />
  175. <Tool
  176. Name="VCFxCopTool"
  177. />
  178. <Tool
  179. Name="VCAppVerifierTool"
  180. />
  181. <Tool
  182. Name="VCWebDeploymentTool"
  183. />
  184. <Tool
  185. Name="VCPostBuildEventTool"
  186. />
  187. </Configuration>
  188. </Configurations>
  189. <References>
  190. </References>
  191. <Files>
  192. <Filter
  193. Name="src"
  194. Filter=""
  195. >
  196. <File
  197. RelativePath="..\..\..\..\src\SDL.c"
  198. >
  199. <FileConfiguration
  200. Name="Debug|Win32"
  201. >
  202. <Tool
  203. Name="VCCLCompilerTool"
  204. CompileAs="1"
  205. />
  206. </FileConfiguration>
  207. <FileConfiguration
  208. Name="Release|Win32"
  209. >
  210. <Tool
  211. Name="VCCLCompilerTool"
  212. CompileAs="1"
  213. />
  214. </FileConfiguration>
  215. </File>
  216. <File
  217. RelativePath="..\..\..\..\src\SDL_assert.c"
  218. >
  219. <FileConfiguration
  220. Name="Debug|Win32"
  221. >
  222. <Tool
  223. Name="VCCLCompilerTool"
  224. CompileAs="1"
  225. />
  226. </FileConfiguration>
  227. <FileConfiguration
  228. Name="Release|Win32"
  229. >
  230. <Tool
  231. Name="VCCLCompilerTool"
  232. CompileAs="1"
  233. />
  234. </FileConfiguration>
  235. </File>
  236. <File
  237. RelativePath="..\..\..\..\src\SDL_assert_c.h"
  238. >
  239. </File>
  240. <File
  241. RelativePath="..\..\..\..\src\SDL_error.c"
  242. >
  243. <FileConfiguration
  244. Name="Debug|Win32"
  245. >
  246. <Tool
  247. Name="VCCLCompilerTool"
  248. CompileAs="1"
  249. />
  250. </FileConfiguration>
  251. <FileConfiguration
  252. Name="Release|Win32"
  253. >
  254. <Tool
  255. Name="VCCLCompilerTool"
  256. CompileAs="1"
  257. />
  258. </FileConfiguration>
  259. </File>
  260. <File
  261. RelativePath="..\..\..\..\src\SDL_error_c.h"
  262. >
  263. </File>
  264. <File
  265. RelativePath="..\..\..\..\src\SDL_hints.c"
  266. >
  267. <FileConfiguration
  268. Name="Debug|Win32"
  269. >
  270. <Tool
  271. Name="VCCLCompilerTool"
  272. CompileAs="1"
  273. />
  274. </FileConfiguration>
  275. <FileConfiguration
  276. Name="Release|Win32"
  277. >
  278. <Tool
  279. Name="VCCLCompilerTool"
  280. CompileAs="1"
  281. />
  282. </FileConfiguration>
  283. </File>
  284. <File
  285. RelativePath="..\..\..\..\src\SDL_log.c"
  286. >
  287. <FileConfiguration
  288. Name="Debug|Win32"
  289. >
  290. <Tool
  291. Name="VCCLCompilerTool"
  292. CompileAs="1"
  293. />
  294. </FileConfiguration>
  295. <FileConfiguration
  296. Name="Release|Win32"
  297. >
  298. <Tool
  299. Name="VCCLCompilerTool"
  300. CompileAs="1"
  301. />
  302. </FileConfiguration>
  303. </File>
  304. <Filter
  305. Name="atomic"
  306. Filter=""
  307. >
  308. <File
  309. RelativePath="..\..\..\..\src\atomic\SDL_atomic.c"
  310. >
  311. <FileConfiguration
  312. Name="Debug|Win32"
  313. >
  314. <Tool
  315. Name="VCCLCompilerTool"
  316. CompileAs="1"
  317. />
  318. </FileConfiguration>
  319. <FileConfiguration
  320. Name="Release|Win32"
  321. >
  322. <Tool
  323. Name="VCCLCompilerTool"
  324. CompileAs="1"
  325. />
  326. </FileConfiguration>
  327. </File>
  328. <File
  329. RelativePath="..\..\..\..\src\atomic\SDL_spinlock.c"
  330. >
  331. <FileConfiguration
  332. Name="Debug|Win32"
  333. >
  334. <Tool
  335. Name="VCCLCompilerTool"
  336. CompileAs="1"
  337. />
  338. </FileConfiguration>
  339. <FileConfiguration
  340. Name="Release|Win32"
  341. >
  342. <Tool
  343. Name="VCCLCompilerTool"
  344. CompileAs="1"
  345. />
  346. </FileConfiguration>
  347. </File>
  348. </Filter>
  349. <Filter
  350. Name="audio"
  351. Filter=""
  352. >
  353. <File
  354. RelativePath="..\..\..\..\src\audio\SDL_audio.c"
  355. >
  356. <FileConfiguration
  357. Name="Debug|Win32"
  358. >
  359. <Tool
  360. Name="VCCLCompilerTool"
  361. CompileAs="1"
  362. />
  363. </FileConfiguration>
  364. <FileConfiguration
  365. Name="Release|Win32"
  366. >
  367. <Tool
  368. Name="VCCLCompilerTool"
  369. CompileAs="1"
  370. />
  371. </FileConfiguration>
  372. </File>
  373. <File
  374. RelativePath="..\..\..\..\src\audio\SDL_audio_c.h"
  375. >
  376. </File>
  377. <File
  378. RelativePath="..\..\..\..\src\audio\SDL_audiocvt.c"
  379. >
  380. <FileConfiguration
  381. Name="Debug|Win32"
  382. >
  383. <Tool
  384. Name="VCCLCompilerTool"
  385. CompileAs="1"
  386. />
  387. </FileConfiguration>
  388. <FileConfiguration
  389. Name="Release|Win32"
  390. >
  391. <Tool
  392. Name="VCCLCompilerTool"
  393. CompileAs="1"
  394. />
  395. </FileConfiguration>
  396. </File>
  397. <File
  398. RelativePath="..\..\..\..\src\audio\SDL_audiodev.c"
  399. >
  400. <FileConfiguration
  401. Name="Debug|Win32"
  402. >
  403. <Tool
  404. Name="VCCLCompilerTool"
  405. CompileAs="1"
  406. />
  407. </FileConfiguration>
  408. <FileConfiguration
  409. Name="Release|Win32"
  410. >
  411. <Tool
  412. Name="VCCLCompilerTool"
  413. CompileAs="1"
  414. />
  415. </FileConfiguration>
  416. </File>
  417. <File
  418. RelativePath="..\..\..\..\src\audio\SDL_audiodev_c.h"
  419. >
  420. </File>
  421. <File
  422. RelativePath="..\..\..\..\src\audio\SDL_audiotypecvt.c"
  423. >
  424. <FileConfiguration
  425. Name="Debug|Win32"
  426. >
  427. <Tool
  428. Name="VCCLCompilerTool"
  429. CompileAs="1"
  430. />
  431. </FileConfiguration>
  432. <FileConfiguration
  433. Name="Release|Win32"
  434. >
  435. <Tool
  436. Name="VCCLCompilerTool"
  437. CompileAs="1"
  438. />
  439. </FileConfiguration>
  440. </File>
  441. <File
  442. RelativePath="..\..\..\..\src\audio\SDL_mixer.c"
  443. >
  444. <FileConfiguration
  445. Name="Debug|Win32"
  446. >
  447. <Tool
  448. Name="VCCLCompilerTool"
  449. CompileAs="1"
  450. />
  451. </FileConfiguration>
  452. <FileConfiguration
  453. Name="Release|Win32"
  454. >
  455. <Tool
  456. Name="VCCLCompilerTool"
  457. CompileAs="1"
  458. />
  459. </FileConfiguration>
  460. </File>
  461. <File
  462. RelativePath="..\..\..\..\src\audio\SDL_sysaudio.h"
  463. >
  464. </File>
  465. <File
  466. RelativePath="..\..\..\..\src\audio\SDL_wave.c"
  467. >
  468. <FileConfiguration
  469. Name="Debug|Win32"
  470. >
  471. <Tool
  472. Name="VCCLCompilerTool"
  473. CompileAs="1"
  474. />
  475. </FileConfiguration>
  476. <FileConfiguration
  477. Name="Release|Win32"
  478. >
  479. <Tool
  480. Name="VCCLCompilerTool"
  481. CompileAs="1"
  482. />
  483. </FileConfiguration>
  484. </File>
  485. <File
  486. RelativePath="..\..\..\..\src\audio\SDL_wave.h"
  487. >
  488. </File>
  489. <Filter
  490. Name="directsound"
  491. Filter=""
  492. >
  493. <File
  494. RelativePath="..\..\..\..\src\audio\directsound\SDL_directsound.c"
  495. >
  496. <FileConfiguration
  497. Name="Debug|Win32"
  498. >
  499. <Tool
  500. Name="VCCLCompilerTool"
  501. CompileAs="1"
  502. />
  503. </FileConfiguration>
  504. <FileConfiguration
  505. Name="Release|Win32"
  506. >
  507. <Tool
  508. Name="VCCLCompilerTool"
  509. CompileAs="1"
  510. />
  511. </FileConfiguration>
  512. </File>
  513. <File
  514. RelativePath="..\..\..\..\src\audio\directsound\SDL_directsound.h"
  515. >
  516. </File>
  517. <File
  518. RelativePath="..\..\..\..\src\audio\directsound\directx.h"
  519. >
  520. </File>
  521. </Filter>
  522. <Filter
  523. Name="disk"
  524. Filter=""
  525. >
  526. <File
  527. RelativePath="..\..\..\..\src\audio\disk\SDL_diskaudio.c"
  528. >
  529. <FileConfiguration
  530. Name="Debug|Win32"
  531. >
  532. <Tool
  533. Name="VCCLCompilerTool"
  534. CompileAs="1"
  535. />
  536. </FileConfiguration>
  537. <FileConfiguration
  538. Name="Release|Win32"
  539. >
  540. <Tool
  541. Name="VCCLCompilerTool"
  542. CompileAs="1"
  543. />
  544. </FileConfiguration>
  545. </File>
  546. <File
  547. RelativePath="..\..\..\..\src\audio\disk\SDL_diskaudio.h"
  548. >
  549. </File>
  550. </Filter>
  551. <Filter
  552. Name="dummy"
  553. Filter=""
  554. >
  555. <File
  556. RelativePath="..\..\..\..\src\audio\dummy\SDL_dummyaudio.c"
  557. >
  558. <FileConfiguration
  559. Name="Debug|Win32"
  560. >
  561. <Tool
  562. Name="VCCLCompilerTool"
  563. CompileAs="1"
  564. />
  565. </FileConfiguration>
  566. <FileConfiguration
  567. Name="Release|Win32"
  568. >
  569. <Tool
  570. Name="VCCLCompilerTool"
  571. CompileAs="1"
  572. />
  573. </FileConfiguration>
  574. </File>
  575. <File
  576. RelativePath="..\..\..\..\src\audio\dummy\SDL_dummyaudio.h"
  577. >
  578. </File>
  579. </Filter>
  580. <Filter
  581. Name="winmm"
  582. Filter=""
  583. >
  584. <File
  585. RelativePath="..\..\..\..\src\audio\winmm\SDL_winmm.c"
  586. >
  587. <FileConfiguration
  588. Name="Debug|Win32"
  589. >
  590. <Tool
  591. Name="VCCLCompilerTool"
  592. CompileAs="1"
  593. />
  594. </FileConfiguration>
  595. <FileConfiguration
  596. Name="Release|Win32"
  597. >
  598. <Tool
  599. Name="VCCLCompilerTool"
  600. CompileAs="1"
  601. />
  602. </FileConfiguration>
  603. </File>
  604. <File
  605. RelativePath="..\..\..\..\src\audio\winmm\SDL_winmm.h"
  606. >
  607. </File>
  608. </Filter>
  609. <Filter
  610. Name="xaudio2"
  611. Filter=""
  612. >
  613. <File
  614. RelativePath="..\..\..\..\src\audio\xaudio2\SDL_xaudio2.c"
  615. >
  616. <FileConfiguration
  617. Name="Debug|Win32"
  618. >
  619. <Tool
  620. Name="VCCLCompilerTool"
  621. CompileAs="1"
  622. />
  623. </FileConfiguration>
  624. <FileConfiguration
  625. Name="Release|Win32"
  626. >
  627. <Tool
  628. Name="VCCLCompilerTool"
  629. CompileAs="1"
  630. />
  631. </FileConfiguration>
  632. </File>
  633. </Filter>
  634. </Filter>
  635. <Filter
  636. Name="core"
  637. Filter=""
  638. >
  639. <Filter
  640. Name="windows"
  641. Filter=""
  642. >
  643. <File
  644. RelativePath="..\..\..\..\src\core\windows\SDL_windows.c"
  645. >
  646. <FileConfiguration
  647. Name="Debug|Win32"
  648. >
  649. <Tool
  650. Name="VCCLCompilerTool"
  651. CompileAs="1"
  652. />
  653. </FileConfiguration>
  654. <FileConfiguration
  655. Name="Release|Win32"
  656. >
  657. <Tool
  658. Name="VCCLCompilerTool"
  659. CompileAs="1"
  660. />
  661. </FileConfiguration>
  662. </File>
  663. <File
  664. RelativePath="..\..\..\..\src\core\windows\SDL_windows.h"
  665. >
  666. </File>
  667. </Filter>
  668. </Filter>
  669. <Filter
  670. Name="cpuinfo"
  671. Filter=""
  672. >
  673. <File
  674. RelativePath="..\..\..\..\src\cpuinfo\SDL_cpuinfo.c"
  675. >
  676. <FileConfiguration
  677. Name="Debug|Win32"
  678. >
  679. <Tool
  680. Name="VCCLCompilerTool"
  681. CompileAs="1"
  682. />
  683. </FileConfiguration>
  684. <FileConfiguration
  685. Name="Release|Win32"
  686. >
  687. <Tool
  688. Name="VCCLCompilerTool"
  689. CompileAs="1"
  690. />
  691. </FileConfiguration>
  692. </File>
  693. </Filter>
  694. <Filter
  695. Name="events"
  696. Filter=""
  697. >
  698. <File
  699. RelativePath="..\..\..\..\src\events\SDL_clipboardevents.c"
  700. >
  701. <FileConfiguration
  702. Name="Debug|Win32"
  703. >
  704. <Tool
  705. Name="VCCLCompilerTool"
  706. CompileAs="1"
  707. />
  708. </FileConfiguration>
  709. <FileConfiguration
  710. Name="Release|Win32"
  711. >
  712. <Tool
  713. Name="VCCLCompilerTool"
  714. CompileAs="1"
  715. />
  716. </FileConfiguration>
  717. </File>
  718. <File
  719. RelativePath="..\..\..\..\src\events\SDL_clipboardevents_c.h"
  720. >
  721. </File>
  722. <File
  723. RelativePath="..\..\..\..\src\events\SDL_dropevents.c"
  724. >
  725. <FileConfiguration
  726. Name="Debug|Win32"
  727. >
  728. <Tool
  729. Name="VCCLCompilerTool"
  730. CompileAs="1"
  731. />
  732. </FileConfiguration>
  733. <FileConfiguration
  734. Name="Release|Win32"
  735. >
  736. <Tool
  737. Name="VCCLCompilerTool"
  738. CompileAs="1"
  739. />
  740. </FileConfiguration>
  741. </File>
  742. <File
  743. RelativePath="..\..\..\..\src\events\SDL_dropevents_c.h"
  744. >
  745. </File>
  746. <File
  747. RelativePath="..\..\..\..\src\events\SDL_events.c"
  748. >
  749. <FileConfiguration
  750. Name="Debug|Win32"
  751. >
  752. <Tool
  753. Name="VCCLCompilerTool"
  754. CompileAs="1"
  755. />
  756. </FileConfiguration>
  757. <FileConfiguration
  758. Name="Release|Win32"
  759. >
  760. <Tool
  761. Name="VCCLCompilerTool"
  762. CompileAs="1"
  763. />
  764. </FileConfiguration>
  765. </File>
  766. <File
  767. RelativePath="..\..\..\..\src\events\SDL_events_c.h"
  768. >
  769. </File>
  770. <File
  771. RelativePath="..\..\..\..\src\events\SDL_gesture.c"
  772. >
  773. <FileConfiguration
  774. Name="Debug|Win32"
  775. >
  776. <Tool
  777. Name="VCCLCompilerTool"
  778. CompileAs="1"
  779. />
  780. </FileConfiguration>
  781. <FileConfiguration
  782. Name="Release|Win32"
  783. >
  784. <Tool
  785. Name="VCCLCompilerTool"
  786. CompileAs="1"
  787. />
  788. </FileConfiguration>
  789. </File>
  790. <File
  791. RelativePath="..\..\..\..\src\events\SDL_gesture_c.h"
  792. >
  793. </File>
  794. <File
  795. RelativePath="..\..\..\..\src\events\SDL_keyboard.c"
  796. >
  797. <FileConfiguration
  798. Name="Debug|Win32"
  799. >
  800. <Tool
  801. Name="VCCLCompilerTool"
  802. CompileAs="1"
  803. />
  804. </FileConfiguration>
  805. <FileConfiguration
  806. Name="Release|Win32"
  807. >
  808. <Tool
  809. Name="VCCLCompilerTool"
  810. CompileAs="1"
  811. />
  812. </FileConfiguration>
  813. </File>
  814. <File
  815. RelativePath="..\..\..\..\src\events\SDL_keyboard_c.h"
  816. >
  817. </File>
  818. <File
  819. RelativePath="..\..\..\..\src\events\SDL_mouse.c"
  820. >
  821. <FileConfiguration
  822. Name="Debug|Win32"
  823. >
  824. <Tool
  825. Name="VCCLCompilerTool"
  826. CompileAs="1"
  827. />
  828. </FileConfiguration>
  829. <FileConfiguration
  830. Name="Release|Win32"
  831. >
  832. <Tool
  833. Name="VCCLCompilerTool"
  834. CompileAs="1"
  835. />
  836. </FileConfiguration>
  837. </File>
  838. <File
  839. RelativePath="..\..\..\..\src\events\SDL_mouse_c.h"
  840. >
  841. </File>
  842. <File
  843. RelativePath="..\..\..\..\src\events\SDL_quit.c"
  844. >
  845. <FileConfiguration
  846. Name="Debug|Win32"
  847. >
  848. <Tool
  849. Name="VCCLCompilerTool"
  850. CompileAs="1"
  851. />
  852. </FileConfiguration>
  853. <FileConfiguration
  854. Name="Release|Win32"
  855. >
  856. <Tool
  857. Name="VCCLCompilerTool"
  858. CompileAs="1"
  859. />
  860. </FileConfiguration>
  861. </File>
  862. <File
  863. RelativePath="..\..\..\..\src\events\SDL_sysevents.h"
  864. >
  865. </File>
  866. <File
  867. RelativePath="..\..\..\..\src\events\SDL_touch.c"
  868. >
  869. <FileConfiguration
  870. Name="Debug|Win32"
  871. >
  872. <Tool
  873. Name="VCCLCompilerTool"
  874. CompileAs="1"
  875. />
  876. </FileConfiguration>
  877. <FileConfiguration
  878. Name="Release|Win32"
  879. >
  880. <Tool
  881. Name="VCCLCompilerTool"
  882. CompileAs="1"
  883. />
  884. </FileConfiguration>
  885. </File>
  886. <File
  887. RelativePath="..\..\..\..\src\events\SDL_touch_c.h"
  888. >
  889. </File>
  890. <File
  891. RelativePath="..\..\..\..\src\events\SDL_windowevents.c"
  892. >
  893. <FileConfiguration
  894. Name="Debug|Win32"
  895. >
  896. <Tool
  897. Name="VCCLCompilerTool"
  898. CompileAs="1"
  899. />
  900. </FileConfiguration>
  901. <FileConfiguration
  902. Name="Release|Win32"
  903. >
  904. <Tool
  905. Name="VCCLCompilerTool"
  906. CompileAs="1"
  907. />
  908. </FileConfiguration>
  909. </File>
  910. <File
  911. RelativePath="..\..\..\..\src\events\SDL_windowevents_c.h"
  912. >
  913. </File>
  914. <File
  915. RelativePath="..\..\..\..\src\events\blank_cursor.h"
  916. >
  917. </File>
  918. <File
  919. RelativePath="..\..\..\..\src\events\default_cursor.h"
  920. >
  921. </File>
  922. <File
  923. RelativePath="..\..\..\..\src\events\scancodes_darwin.h"
  924. >
  925. </File>
  926. <File
  927. RelativePath="..\..\..\..\src\events\scancodes_linux.h"
  928. >
  929. </File>
  930. <File
  931. RelativePath="..\..\..\..\src\events\scancodes_windows.h"
  932. >
  933. </File>
  934. <File
  935. RelativePath="..\..\..\..\src\events\scancodes_xfree86.h"
  936. >
  937. </File>
  938. </Filter>
  939. <Filter
  940. Name="file"
  941. Filter=""
  942. >
  943. <File
  944. RelativePath="..\..\..\..\src\file\SDL_rwops.c"
  945. >
  946. <FileConfiguration
  947. Name="Debug|Win32"
  948. >
  949. <Tool
  950. Name="VCCLCompilerTool"
  951. CompileAs="1"
  952. />
  953. </FileConfiguration>
  954. <FileConfiguration
  955. Name="Release|Win32"
  956. >
  957. <Tool
  958. Name="VCCLCompilerTool"
  959. CompileAs="1"
  960. />
  961. </FileConfiguration>
  962. </File>
  963. </Filter>
  964. <Filter
  965. Name="filesystem"
  966. Filter=""
  967. >
  968. <Filter
  969. Name="windows"
  970. Filter=""
  971. >
  972. <File
  973. RelativePath="..\..\..\..\src\filesystem\windows\SDL_sysfilesystem.c"
  974. >
  975. <FileConfiguration
  976. Name="Debug|Win32"
  977. >
  978. <Tool
  979. Name="VCCLCompilerTool"
  980. CompileAs="1"
  981. />
  982. </FileConfiguration>
  983. <FileConfiguration
  984. Name="Release|Win32"
  985. >
  986. <Tool
  987. Name="VCCLCompilerTool"
  988. CompileAs="1"
  989. />
  990. </FileConfiguration>
  991. </File>
  992. </Filter>
  993. </Filter>
  994. <Filter
  995. Name="haptic"
  996. Filter=""
  997. >
  998. <File
  999. RelativePath="..\..\..\..\src\haptic\SDL_haptic.c"
  1000. >
  1001. <FileConfiguration
  1002. Name="Debug|Win32"
  1003. >
  1004. <Tool
  1005. Name="VCCLCompilerTool"
  1006. CompileAs="1"
  1007. />
  1008. </FileConfiguration>
  1009. <FileConfiguration
  1010. Name="Release|Win32"
  1011. >
  1012. <Tool
  1013. Name="VCCLCompilerTool"
  1014. CompileAs="1"
  1015. />
  1016. </FileConfiguration>
  1017. </File>
  1018. <File
  1019. RelativePath="..\..\..\..\src\haptic\SDL_haptic_c.h"
  1020. >
  1021. </File>
  1022. <File
  1023. RelativePath="..\..\..\..\src\haptic\SDL_syshaptic.h"
  1024. >
  1025. </File>
  1026. <Filter
  1027. Name="windows"
  1028. Filter=""
  1029. >
  1030. <File
  1031. RelativePath="..\..\..\..\src\haptic\windows\SDL_syshaptic.c"
  1032. >
  1033. <FileConfiguration
  1034. Name="Debug|Win32"
  1035. >
  1036. <Tool
  1037. Name="VCCLCompilerTool"
  1038. CompileAs="1"
  1039. />
  1040. </FileConfiguration>
  1041. <FileConfiguration
  1042. Name="Release|Win32"
  1043. >
  1044. <Tool
  1045. Name="VCCLCompilerTool"
  1046. CompileAs="1"
  1047. />
  1048. </FileConfiguration>
  1049. </File>
  1050. </Filter>
  1051. </Filter>
  1052. <Filter
  1053. Name="joystick"
  1054. Filter=""
  1055. >
  1056. <File
  1057. RelativePath="..\..\..\..\src\joystick\SDL_gamecontroller.c"
  1058. >
  1059. <FileConfiguration
  1060. Name="Debug|Win32"
  1061. >
  1062. <Tool
  1063. Name="VCCLCompilerTool"
  1064. CompileAs="1"
  1065. />
  1066. </FileConfiguration>
  1067. <FileConfiguration
  1068. Name="Release|Win32"
  1069. >
  1070. <Tool
  1071. Name="VCCLCompilerTool"
  1072. CompileAs="1"
  1073. />
  1074. </FileConfiguration>
  1075. </File>
  1076. <File
  1077. RelativePath="..\..\..\..\src\joystick\SDL_gamecontrollerdb.h"
  1078. >
  1079. </File>
  1080. <File
  1081. RelativePath="..\..\..\..\src\joystick\SDL_joystick.c"
  1082. >
  1083. <FileConfiguration
  1084. Name="Debug|Win32"
  1085. >
  1086. <Tool
  1087. Name="VCCLCompilerTool"
  1088. CompileAs="1"
  1089. />
  1090. </FileConfiguration>
  1091. <FileConfiguration
  1092. Name="Release|Win32"
  1093. >
  1094. <Tool
  1095. Name="VCCLCompilerTool"
  1096. CompileAs="1"
  1097. />
  1098. </FileConfiguration>
  1099. </File>
  1100. <File
  1101. RelativePath="..\..\..\..\src\joystick\SDL_joystick_c.h"
  1102. >
  1103. </File>
  1104. <File
  1105. RelativePath="..\..\..\..\src\joystick\SDL_sysjoystick.h"
  1106. >
  1107. </File>
  1108. <Filter
  1109. Name="windows"
  1110. Filter=""
  1111. >
  1112. <File
  1113. RelativePath="..\..\..\..\src\joystick\windows\SDL_dxjoystick.c"
  1114. >
  1115. <FileConfiguration
  1116. Name="Debug|Win32"
  1117. >
  1118. <Tool
  1119. Name="VCCLCompilerTool"
  1120. CompileAs="1"
  1121. />
  1122. </FileConfiguration>
  1123. <FileConfiguration
  1124. Name="Release|Win32"
  1125. >
  1126. <Tool
  1127. Name="VCCLCompilerTool"
  1128. CompileAs="1"
  1129. />
  1130. </FileConfiguration>
  1131. </File>
  1132. <File
  1133. RelativePath="..\..\..\..\src\joystick\windows\SDL_dxjoystick_c.h"
  1134. >
  1135. </File>
  1136. <File
  1137. RelativePath="..\..\..\..\src\joystick\windows\SDL_mmjoystick.c"
  1138. >
  1139. <FileConfiguration
  1140. Name="Debug|Win32"
  1141. >
  1142. <Tool
  1143. Name="VCCLCompilerTool"
  1144. CompileAs="1"
  1145. />
  1146. </FileConfiguration>
  1147. <FileConfiguration
  1148. Name="Release|Win32"
  1149. >
  1150. <Tool
  1151. Name="VCCLCompilerTool"
  1152. CompileAs="1"
  1153. />
  1154. </FileConfiguration>
  1155. </File>
  1156. </Filter>
  1157. </Filter>
  1158. <Filter
  1159. Name="libm"
  1160. Filter=""
  1161. >
  1162. <File
  1163. RelativePath="..\..\..\..\src\libm\e_atan2.c"
  1164. >
  1165. <FileConfiguration
  1166. Name="Debug|Win32"
  1167. >
  1168. <Tool
  1169. Name="VCCLCompilerTool"
  1170. CompileAs="1"
  1171. />
  1172. </FileConfiguration>
  1173. <FileConfiguration
  1174. Name="Release|Win32"
  1175. >
  1176. <Tool
  1177. Name="VCCLCompilerTool"
  1178. CompileAs="1"
  1179. />
  1180. </FileConfiguration>
  1181. </File>
  1182. <File
  1183. RelativePath="..\..\..\..\src\libm\e_log.c"
  1184. >
  1185. <FileConfiguration
  1186. Name="Debug|Win32"
  1187. >
  1188. <Tool
  1189. Name="VCCLCompilerTool"
  1190. CompileAs="1"
  1191. />
  1192. </FileConfiguration>
  1193. <FileConfiguration
  1194. Name="Release|Win32"
  1195. >
  1196. <Tool
  1197. Name="VCCLCompilerTool"
  1198. CompileAs="1"
  1199. />
  1200. </FileConfiguration>
  1201. </File>
  1202. <File
  1203. RelativePath="..\..\..\..\src\libm\e_pow.c"
  1204. >
  1205. <FileConfiguration
  1206. Name="Debug|Win32"
  1207. >
  1208. <Tool
  1209. Name="VCCLCompilerTool"
  1210. CompileAs="1"
  1211. />
  1212. </FileConfiguration>
  1213. <FileConfiguration
  1214. Name="Release|Win32"
  1215. >
  1216. <Tool
  1217. Name="VCCLCompilerTool"
  1218. CompileAs="1"
  1219. />
  1220. </FileConfiguration>
  1221. </File>
  1222. <File
  1223. RelativePath="..\..\..\..\src\libm\e_rem_pio2.c"
  1224. >
  1225. <FileConfiguration
  1226. Name="Debug|Win32"
  1227. >
  1228. <Tool
  1229. Name="VCCLCompilerTool"
  1230. CompileAs="1"
  1231. />
  1232. </FileConfiguration>
  1233. <FileConfiguration
  1234. Name="Release|Win32"
  1235. >
  1236. <Tool
  1237. Name="VCCLCompilerTool"
  1238. CompileAs="1"
  1239. />
  1240. </FileConfiguration>
  1241. </File>
  1242. <File
  1243. RelativePath="..\..\..\..\src\libm\e_sqrt.c"
  1244. >
  1245. <FileConfiguration
  1246. Name="Debug|Win32"
  1247. >
  1248. <Tool
  1249. Name="VCCLCompilerTool"
  1250. CompileAs="1"
  1251. />
  1252. </FileConfiguration>
  1253. <FileConfiguration
  1254. Name="Release|Win32"
  1255. >
  1256. <Tool
  1257. Name="VCCLCompilerTool"
  1258. CompileAs="1"
  1259. />
  1260. </FileConfiguration>
  1261. </File>
  1262. <File
  1263. RelativePath="..\..\..\..\src\libm\k_cos.c"
  1264. >
  1265. <FileConfiguration
  1266. Name="Debug|Win32"
  1267. >
  1268. <Tool
  1269. Name="VCCLCompilerTool"
  1270. CompileAs="1"
  1271. />
  1272. </FileConfiguration>
  1273. <FileConfiguration
  1274. Name="Release|Win32"
  1275. >
  1276. <Tool
  1277. Name="VCCLCompilerTool"
  1278. CompileAs="1"
  1279. />
  1280. </FileConfiguration>
  1281. </File>
  1282. <File
  1283. RelativePath="..\..\..\..\src\libm\k_rem_pio2.c"
  1284. >
  1285. <FileConfiguration
  1286. Name="Debug|Win32"
  1287. >
  1288. <Tool
  1289. Name="VCCLCompilerTool"
  1290. CompileAs="1"
  1291. />
  1292. </FileConfiguration>
  1293. <FileConfiguration
  1294. Name="Release|Win32"
  1295. >
  1296. <Tool
  1297. Name="VCCLCompilerTool"
  1298. CompileAs="1"
  1299. />
  1300. </FileConfiguration>
  1301. </File>
  1302. <File
  1303. RelativePath="..\..\..\..\src\libm\k_sin.c"
  1304. >
  1305. <FileConfiguration
  1306. Name="Debug|Win32"
  1307. >
  1308. <Tool
  1309. Name="VCCLCompilerTool"
  1310. CompileAs="1"
  1311. />
  1312. </FileConfiguration>
  1313. <FileConfiguration
  1314. Name="Release|Win32"
  1315. >
  1316. <Tool
  1317. Name="VCCLCompilerTool"
  1318. CompileAs="1"
  1319. />
  1320. </FileConfiguration>
  1321. </File>
  1322. <File
  1323. RelativePath="..\..\..\..\src\libm\math_libm.h"
  1324. >
  1325. </File>
  1326. <File
  1327. RelativePath="..\..\..\..\src\libm\math_private.h"
  1328. >
  1329. </File>
  1330. <File
  1331. RelativePath="..\..\..\..\src\libm\s_atan.c"
  1332. >
  1333. <FileConfiguration
  1334. Name="Debug|Win32"
  1335. >
  1336. <Tool
  1337. Name="VCCLCompilerTool"
  1338. CompileAs="1"
  1339. />
  1340. </FileConfiguration>
  1341. <FileConfiguration
  1342. Name="Release|Win32"
  1343. >
  1344. <Tool
  1345. Name="VCCLCompilerTool"
  1346. CompileAs="1"
  1347. />
  1348. </FileConfiguration>
  1349. </File>
  1350. <File
  1351. RelativePath="..\..\..\..\src\libm\s_copysign.c"
  1352. >
  1353. <FileConfiguration
  1354. Name="Debug|Win32"
  1355. >
  1356. <Tool
  1357. Name="VCCLCompilerTool"
  1358. CompileAs="1"
  1359. />
  1360. </FileConfiguration>
  1361. <FileConfiguration
  1362. Name="Release|Win32"
  1363. >
  1364. <Tool
  1365. Name="VCCLCompilerTool"
  1366. CompileAs="1"
  1367. />
  1368. </FileConfiguration>
  1369. </File>
  1370. <File
  1371. RelativePath="..\..\..\..\src\libm\s_cos.c"
  1372. >
  1373. <FileConfiguration
  1374. Name="Debug|Win32"
  1375. >
  1376. <Tool
  1377. Name="VCCLCompilerTool"
  1378. CompileAs="1"
  1379. />
  1380. </FileConfiguration>
  1381. <FileConfiguration
  1382. Name="Release|Win32"
  1383. >
  1384. <Tool
  1385. Name="VCCLCompilerTool"
  1386. CompileAs="1"
  1387. />
  1388. </FileConfiguration>
  1389. </File>
  1390. <File
  1391. RelativePath="..\..\..\..\src\libm\s_fabs.c"
  1392. >
  1393. <FileConfiguration
  1394. Name="Debug|Win32"
  1395. >
  1396. <Tool
  1397. Name="VCCLCompilerTool"
  1398. CompileAs="1"
  1399. />
  1400. </FileConfiguration>
  1401. <FileConfiguration
  1402. Name="Release|Win32"
  1403. >
  1404. <Tool
  1405. Name="VCCLCompilerTool"
  1406. CompileAs="1"
  1407. />
  1408. </FileConfiguration>
  1409. </File>
  1410. <File
  1411. RelativePath="..\..\..\..\src\libm\s_floor.c"
  1412. >
  1413. <FileConfiguration
  1414. Name="Debug|Win32"
  1415. >
  1416. <Tool
  1417. Name="VCCLCompilerTool"
  1418. CompileAs="1"
  1419. />
  1420. </FileConfiguration>
  1421. <FileConfiguration
  1422. Name="Release|Win32"
  1423. >
  1424. <Tool
  1425. Name="VCCLCompilerTool"
  1426. CompileAs="1"
  1427. />
  1428. </FileConfiguration>
  1429. </File>
  1430. <File
  1431. RelativePath="..\..\..\..\src\libm\s_scalbn.c"
  1432. >
  1433. <FileConfiguration
  1434. Name="Debug|Win32"
  1435. >
  1436. <Tool
  1437. Name="VCCLCompilerTool"
  1438. CompileAs="1"
  1439. />
  1440. </FileConfiguration>
  1441. <FileConfiguration
  1442. Name="Release|Win32"
  1443. >
  1444. <Tool
  1445. Name="VCCLCompilerTool"
  1446. CompileAs="1"
  1447. />
  1448. </FileConfiguration>
  1449. </File>
  1450. <File
  1451. RelativePath="..\..\..\..\src\libm\s_sin.c"
  1452. >
  1453. <FileConfiguration
  1454. Name="Debug|Win32"
  1455. >
  1456. <Tool
  1457. Name="VCCLCompilerTool"
  1458. CompileAs="1"
  1459. />
  1460. </FileConfiguration>
  1461. <FileConfiguration
  1462. Name="Release|Win32"
  1463. >
  1464. <Tool
  1465. Name="VCCLCompilerTool"
  1466. CompileAs="1"
  1467. />
  1468. </FileConfiguration>
  1469. </File>
  1470. </Filter>
  1471. <Filter
  1472. Name="loadso"
  1473. Filter=""
  1474. >
  1475. <Filter
  1476. Name="windows"
  1477. Filter=""
  1478. >
  1479. <File
  1480. RelativePath="..\..\..\..\src\loadso\windows\SDL_sysloadso.c"
  1481. >
  1482. <FileConfiguration
  1483. Name="Debug|Win32"
  1484. >
  1485. <Tool
  1486. Name="VCCLCompilerTool"
  1487. CompileAs="1"
  1488. />
  1489. </FileConfiguration>
  1490. <FileConfiguration
  1491. Name="Release|Win32"
  1492. >
  1493. <Tool
  1494. Name="VCCLCompilerTool"
  1495. CompileAs="1"
  1496. />
  1497. </FileConfiguration>
  1498. </File>
  1499. </Filter>
  1500. </Filter>
  1501. <Filter
  1502. Name="power"
  1503. Filter=""
  1504. >
  1505. <File
  1506. RelativePath="..\..\..\..\src\power\SDL_power.c"
  1507. >
  1508. <FileConfiguration
  1509. Name="Debug|Win32"
  1510. >
  1511. <Tool
  1512. Name="VCCLCompilerTool"
  1513. CompileAs="1"
  1514. />
  1515. </FileConfiguration>
  1516. <FileConfiguration
  1517. Name="Release|Win32"
  1518. >
  1519. <Tool
  1520. Name="VCCLCompilerTool"
  1521. CompileAs="1"
  1522. />
  1523. </FileConfiguration>
  1524. </File>
  1525. <Filter
  1526. Name="windows"
  1527. Filter=""
  1528. >
  1529. <File
  1530. RelativePath="..\..\..\..\src\power\windows\SDL_syspower.c"
  1531. >
  1532. <FileConfiguration
  1533. Name="Debug|Win32"
  1534. >
  1535. <Tool
  1536. Name="VCCLCompilerTool"
  1537. CompileAs="1"
  1538. />
  1539. </FileConfiguration>
  1540. <FileConfiguration
  1541. Name="Release|Win32"
  1542. >
  1543. <Tool
  1544. Name="VCCLCompilerTool"
  1545. CompileAs="1"
  1546. />
  1547. </FileConfiguration>
  1548. </File>
  1549. </Filter>
  1550. </Filter>
  1551. <Filter
  1552. Name="render"
  1553. Filter=""
  1554. >
  1555. <File
  1556. RelativePath="..\..\..\..\src\render\SDL_render.c"
  1557. >
  1558. <FileConfiguration
  1559. Name="Debug|Win32"
  1560. >
  1561. <Tool
  1562. Name="VCCLCompilerTool"
  1563. CompileAs="1"
  1564. />
  1565. </FileConfiguration>
  1566. <FileConfiguration
  1567. Name="Release|Win32"
  1568. >
  1569. <Tool
  1570. Name="VCCLCompilerTool"
  1571. CompileAs="1"
  1572. />
  1573. </FileConfiguration>
  1574. </File>
  1575. <File
  1576. RelativePath="..\..\..\..\src\render\SDL_sysrender.h"
  1577. >
  1578. </File>
  1579. <File
  1580. RelativePath="..\..\..\..\src\render\SDL_yuv_mmx.c"
  1581. >
  1582. <FileConfiguration
  1583. Name="Debug|Win32"
  1584. >
  1585. <Tool
  1586. Name="VCCLCompilerTool"
  1587. CompileAs="1"
  1588. />
  1589. </FileConfiguration>
  1590. <FileConfiguration
  1591. Name="Release|Win32"
  1592. >
  1593. <Tool
  1594. Name="VCCLCompilerTool"
  1595. CompileAs="1"
  1596. />
  1597. </FileConfiguration>
  1598. </File>
  1599. <File
  1600. RelativePath="..\..\..\..\src\render\SDL_yuv_sw.c"
  1601. >
  1602. <FileConfiguration
  1603. Name="Debug|Win32"
  1604. >
  1605. <Tool
  1606. Name="VCCLCompilerTool"
  1607. CompileAs="1"
  1608. />
  1609. </FileConfiguration>
  1610. <FileConfiguration
  1611. Name="Release|Win32"
  1612. >
  1613. <Tool
  1614. Name="VCCLCompilerTool"
  1615. CompileAs="1"
  1616. />
  1617. </FileConfiguration>
  1618. </File>
  1619. <File
  1620. RelativePath="..\..\..\..\src\render\SDL_yuv_sw_c.h"
  1621. >
  1622. </File>
  1623. <Filter
  1624. Name="direct3d"
  1625. Filter=""
  1626. >
  1627. <File
  1628. RelativePath="..\..\..\..\src\render\direct3d\SDL_render_d3d.c"
  1629. >
  1630. <FileConfiguration
  1631. Name="Debug|Win32"
  1632. >
  1633. <Tool
  1634. Name="VCCLCompilerTool"
  1635. CompileAs="1"
  1636. />
  1637. </FileConfiguration>
  1638. <FileConfiguration
  1639. Name="Release|Win32"
  1640. >
  1641. <Tool
  1642. Name="VCCLCompilerTool"
  1643. CompileAs="1"
  1644. />
  1645. </FileConfiguration>
  1646. </File>
  1647. </Filter>
  1648. <File
  1649. RelativePath="..\..\..\..\src\render\mmx.h"
  1650. >
  1651. </File>
  1652. <Filter
  1653. Name="opengl"
  1654. Filter=""
  1655. >
  1656. <File
  1657. RelativePath="..\..\..\..\src\render\opengl\SDL_glfuncs.h"
  1658. >
  1659. </File>
  1660. <File
  1661. RelativePath="..\..\..\..\src\render\opengl\SDL_render_gl.c"
  1662. >
  1663. <FileConfiguration
  1664. Name="Debug|Win32"
  1665. >
  1666. <Tool
  1667. Name="VCCLCompilerTool"
  1668. CompileAs="1"
  1669. />
  1670. </FileConfiguration>
  1671. <FileConfiguration
  1672. Name="Release|Win32"
  1673. >
  1674. <Tool
  1675. Name="VCCLCompilerTool"
  1676. CompileAs="1"
  1677. />
  1678. </FileConfiguration>
  1679. </File>
  1680. <File
  1681. RelativePath="..\..\..\..\src\render\opengl\SDL_shaders_gl.c"
  1682. >
  1683. <FileConfiguration
  1684. Name="Debug|Win32"
  1685. >
  1686. <Tool
  1687. Name="VCCLCompilerTool"
  1688. CompileAs="1"
  1689. />
  1690. </FileConfiguration>
  1691. <FileConfiguration
  1692. Name="Release|Win32"
  1693. >
  1694. <Tool
  1695. Name="VCCLCompilerTool"
  1696. CompileAs="1"
  1697. />
  1698. </FileConfiguration>
  1699. </File>
  1700. <File
  1701. RelativePath="..\..\..\..\src\render\opengl\SDL_shaders_gl.h"
  1702. >
  1703. </File>
  1704. </Filter>
  1705. <Filter
  1706. Name="software"
  1707. Filter=""
  1708. >
  1709. <File
  1710. RelativePath="..\..\..\..\src\render\software\SDL_blendfillrect.c"
  1711. >
  1712. <FileConfiguration
  1713. Name="Debug|Win32"
  1714. >
  1715. <Tool
  1716. Name="VCCLCompilerTool"
  1717. CompileAs="1"
  1718. />
  1719. </FileConfiguration>
  1720. <FileConfiguration
  1721. Name="Release|Win32"
  1722. >
  1723. <Tool
  1724. Name="VCCLCompilerTool"
  1725. CompileAs="1"
  1726. />
  1727. </FileConfiguration>
  1728. </File>
  1729. <File
  1730. RelativePath="..\..\..\..\src\render\software\SDL_blendfillrect.h"
  1731. >
  1732. </File>
  1733. <File
  1734. RelativePath="..\..\..\..\src\render\software\SDL_blendline.c"
  1735. >
  1736. <FileConfiguration
  1737. Name="Debug|Win32"
  1738. >
  1739. <Tool
  1740. Name="VCCLCompilerTool"
  1741. CompileAs="1"
  1742. />
  1743. </FileConfiguration>
  1744. <FileConfiguration
  1745. Name="Release|Win32"
  1746. >
  1747. <Tool
  1748. Name="VCCLCompilerTool"
  1749. CompileAs="1"
  1750. />
  1751. </FileConfiguration>
  1752. </File>
  1753. <File
  1754. RelativePath="..\..\..\..\src\render\software\SDL_blendline.h"
  1755. >
  1756. </File>
  1757. <File
  1758. RelativePath="..\..\..\..\src\render\software\SDL_blendpoint.c"
  1759. >
  1760. <FileConfiguration
  1761. Name="Debug|Win32"
  1762. >
  1763. <Tool
  1764. Name="VCCLCompilerTool"
  1765. CompileAs="1"
  1766. />
  1767. </FileConfiguration>
  1768. <FileConfiguration
  1769. Name="Release|Win32"
  1770. >
  1771. <Tool
  1772. Name="VCCLCompilerTool"
  1773. CompileAs="1"
  1774. />
  1775. </FileConfiguration>
  1776. </File>
  1777. <File
  1778. RelativePath="..\..\..\..\src\render\software\SDL_blendpoint.h"
  1779. >
  1780. </File>
  1781. <File
  1782. RelativePath="..\..\..\..\src\render\software\SDL_draw.h"
  1783. >
  1784. </File>
  1785. <File
  1786. RelativePath="..\..\..\..\src\render\software\SDL_drawline.c"
  1787. >
  1788. <FileConfiguration
  1789. Name="Debug|Win32"
  1790. >
  1791. <Tool
  1792. Name="VCCLCompilerTool"
  1793. CompileAs="1"
  1794. />
  1795. </FileConfiguration>
  1796. <FileConfiguration
  1797. Name="Release|Win32"
  1798. >
  1799. <Tool
  1800. Name="VCCLCompilerTool"
  1801. CompileAs="1"
  1802. />
  1803. </FileConfiguration>
  1804. </File>
  1805. <File
  1806. RelativePath="..\..\..\..\src\render\software\SDL_drawline.h"
  1807. >
  1808. </File>
  1809. <File
  1810. RelativePath="..\..\..\..\src\render\software\SDL_drawpoint.c"
  1811. >
  1812. <FileConfiguration
  1813. Name="Debug|Win32"
  1814. >
  1815. <Tool
  1816. Name="VCCLCompilerTool"
  1817. CompileAs="1"
  1818. />
  1819. </FileConfiguration>
  1820. <FileConfiguration
  1821. Name="Release|Win32"
  1822. >
  1823. <Tool
  1824. Name="VCCLCompilerTool"
  1825. CompileAs="1"
  1826. />
  1827. </FileConfiguration>
  1828. </File>
  1829. <File
  1830. RelativePath="..\..\..\..\src\render\software\SDL_drawpoint.h"
  1831. >
  1832. </File>
  1833. <File
  1834. RelativePath="..\..\..\..\src\render\software\SDL_render_sw.c"
  1835. >
  1836. <FileConfiguration
  1837. Name="Debug|Win32"
  1838. >
  1839. <Tool
  1840. Name="VCCLCompilerTool"
  1841. CompileAs="1"
  1842. />
  1843. </FileConfiguration>
  1844. <FileConfiguration
  1845. Name="Release|Win32"
  1846. >
  1847. <Tool
  1848. Name="VCCLCompilerTool"
  1849. CompileAs="1"
  1850. />
  1851. </FileConfiguration>
  1852. </File>
  1853. <File
  1854. RelativePath="..\..\..\..\src\render\software\SDL_render_sw_c.h"
  1855. >
  1856. </File>
  1857. <File
  1858. RelativePath="..\..\..\..\src\render\software\SDL_rotate.c"
  1859. >
  1860. <FileConfiguration
  1861. Name="Debug|Win32"
  1862. >
  1863. <Tool
  1864. Name="VCCLCompilerTool"
  1865. CompileAs="1"
  1866. />
  1867. </FileConfiguration>
  1868. <FileConfiguration
  1869. Name="Release|Win32"
  1870. >
  1871. <Tool
  1872. Name="VCCLCompilerTool"
  1873. CompileAs="1"
  1874. />
  1875. </FileConfiguration>
  1876. </File>
  1877. <File
  1878. RelativePath="..\..\..\..\src\render\software\SDL_rotate.h"
  1879. >
  1880. </File>
  1881. </Filter>
  1882. </Filter>
  1883. <Filter
  1884. Name="stdlib"
  1885. Filter=""
  1886. >
  1887. <File
  1888. RelativePath="..\..\..\..\src\stdlib\SDL_getenv.c"
  1889. >
  1890. <FileConfiguration
  1891. Name="Debug|Win32"
  1892. >
  1893. <Tool
  1894. Name="VCCLCompilerTool"
  1895. CompileAs="1"
  1896. />
  1897. </FileConfiguration>
  1898. <FileConfiguration
  1899. Name="Release|Win32"
  1900. >
  1901. <Tool
  1902. Name="VCCLCompilerTool"
  1903. CompileAs="1"
  1904. />
  1905. </FileConfiguration>
  1906. </File>
  1907. <File
  1908. RelativePath="..\..\..\..\src\stdlib\SDL_iconv.c"
  1909. >
  1910. <FileConfiguration
  1911. Name="Debug|Win32"
  1912. >
  1913. <Tool
  1914. Name="VCCLCompilerTool"
  1915. CompileAs="1"
  1916. />
  1917. </FileConfiguration>
  1918. <FileConfiguration
  1919. Name="Release|Win32"
  1920. >
  1921. <Tool
  1922. Name="VCCLCompilerTool"
  1923. CompileAs="1"
  1924. />
  1925. </FileConfiguration>
  1926. </File>
  1927. <File
  1928. RelativePath="..\..\..\..\src\stdlib\SDL_malloc.c"
  1929. >
  1930. <FileConfiguration
  1931. Name="Debug|Win32"
  1932. >
  1933. <Tool
  1934. Name="VCCLCompilerTool"
  1935. CompileAs="1"
  1936. />
  1937. </FileConfiguration>
  1938. <FileConfiguration
  1939. Name="Release|Win32"
  1940. >
  1941. <Tool
  1942. Name="VCCLCompilerTool"
  1943. CompileAs="1"
  1944. />
  1945. </FileConfiguration>
  1946. </File>
  1947. <File
  1948. RelativePath="..\..\..\..\src\stdlib\SDL_qsort.c"
  1949. >
  1950. <FileConfiguration
  1951. Name="Debug|Win32"
  1952. >
  1953. <Tool
  1954. Name="VCCLCompilerTool"
  1955. CompileAs="1"
  1956. />
  1957. </FileConfiguration>
  1958. <FileConfiguration
  1959. Name="Release|Win32"
  1960. >
  1961. <Tool
  1962. Name="VCCLCompilerTool"
  1963. CompileAs="1"
  1964. />
  1965. </FileConfiguration>
  1966. </File>
  1967. <File
  1968. RelativePath="..\..\..\..\src\stdlib\SDL_stdlib.c"
  1969. >
  1970. <FileConfiguration
  1971. Name="Debug|Win32"
  1972. >
  1973. <Tool
  1974. Name="VCCLCompilerTool"
  1975. CompileAs="1"
  1976. />
  1977. </FileConfiguration>
  1978. <FileConfiguration
  1979. Name="Release|Win32"
  1980. >
  1981. <Tool
  1982. Name="VCCLCompilerTool"
  1983. CompileAs="1"
  1984. />
  1985. </FileConfiguration>
  1986. </File>
  1987. <File
  1988. RelativePath="..\..\..\..\src\stdlib\SDL_string.c"
  1989. >
  1990. <FileConfiguration
  1991. Name="Debug|Win32"
  1992. >
  1993. <Tool
  1994. Name="VCCLCompilerTool"
  1995. CompileAs="1"
  1996. />
  1997. </FileConfiguration>
  1998. <FileConfiguration
  1999. Name="Release|Win32"
  2000. >
  2001. <Tool
  2002. Name="VCCLCompilerTool"
  2003. CompileAs="1"
  2004. />
  2005. </FileConfiguration>
  2006. </File>
  2007. </Filter>
  2008. <Filter
  2009. Name="thread"
  2010. Filter=""
  2011. >
  2012. <File
  2013. RelativePath="..\..\..\..\src\thread\SDL_systhread.h"
  2014. >
  2015. </File>
  2016. <File
  2017. RelativePath="..\..\..\..\src\thread\SDL_thread.c"
  2018. >
  2019. <FileConfiguration
  2020. Name="Debug|Win32"
  2021. >
  2022. <Tool
  2023. Name="VCCLCompilerTool"
  2024. CompileAs="1"
  2025. />
  2026. </FileConfiguration>
  2027. <FileConfiguration
  2028. Name="Release|Win32"
  2029. >
  2030. <Tool
  2031. Name="VCCLCompilerTool"
  2032. CompileAs="1"
  2033. />
  2034. </FileConfiguration>
  2035. </File>
  2036. <File
  2037. RelativePath="..\..\..\..\src\thread\SDL_thread_c.h"
  2038. >
  2039. </File>
  2040. <Filter
  2041. Name="generic"
  2042. Filter=""
  2043. >
  2044. <File
  2045. RelativePath="..\..\..\..\src\thread\generic\SDL_syscond.c"
  2046. >
  2047. <FileConfiguration
  2048. Name="Debug|Win32"
  2049. >
  2050. <Tool
  2051. Name="VCCLCompilerTool"
  2052. CompileAs="1"
  2053. />
  2054. </FileConfiguration>
  2055. <FileConfiguration
  2056. Name="Release|Win32"
  2057. >
  2058. <Tool
  2059. Name="VCCLCompilerTool"
  2060. CompileAs="1"
  2061. />
  2062. </FileConfiguration>
  2063. </File>
  2064. <File
  2065. RelativePath="..\..\..\..\src\thread\generic\SDL_sysmutex_c.h"
  2066. >
  2067. </File>
  2068. </Filter>
  2069. <Filter
  2070. Name="windows"
  2071. Filter=""
  2072. >
  2073. <File
  2074. RelativePath="..\..\..\..\src\thread\windows\SDL_sysmutex.c"
  2075. >
  2076. <FileConfiguration
  2077. Name="Debug|Win32"
  2078. >
  2079. <Tool
  2080. Name="VCCLCompilerTool"
  2081. CompileAs="1"
  2082. />
  2083. </FileConfiguration>
  2084. <FileConfiguration
  2085. Name="Release|Win32"
  2086. >
  2087. <Tool
  2088. Name="VCCLCompilerTool"
  2089. CompileAs="1"
  2090. />
  2091. </FileConfiguration>
  2092. </File>
  2093. <File
  2094. RelativePath="..\..\..\..\src\thread\windows\SDL_syssem.c"
  2095. >
  2096. <FileConfiguration
  2097. Name="Debug|Win32"
  2098. >
  2099. <Tool
  2100. Name="VCCLCompilerTool"
  2101. CompileAs="1"
  2102. />
  2103. </FileConfiguration>
  2104. <FileConfiguration
  2105. Name="Release|Win32"
  2106. >
  2107. <Tool
  2108. Name="VCCLCompilerTool"
  2109. CompileAs="1"
  2110. />
  2111. </FileConfiguration>
  2112. </File>
  2113. <File
  2114. RelativePath="..\..\..\..\src\thread\windows\SDL_systhread.c"
  2115. >
  2116. <FileConfiguration
  2117. Name="Debug|Win32"
  2118. >
  2119. <Tool
  2120. Name="VCCLCompilerTool"
  2121. CompileAs="1"
  2122. />
  2123. </FileConfiguration>
  2124. <FileConfiguration
  2125. Name="Release|Win32"
  2126. >
  2127. <Tool
  2128. Name="VCCLCompilerTool"
  2129. CompileAs="1"
  2130. />
  2131. </FileConfiguration>
  2132. </File>
  2133. <File
  2134. RelativePath="..\..\..\..\src\thread\windows\SDL_systhread_c.h"
  2135. >
  2136. </File>
  2137. <File
  2138. RelativePath="..\..\..\..\src\thread\windows\SDL_systls.c"
  2139. >
  2140. <FileConfiguration
  2141. Name="Debug|Win32"
  2142. >
  2143. <Tool
  2144. Name="VCCLCompilerTool"
  2145. CompileAs="1"
  2146. />
  2147. </FileConfiguration>
  2148. <FileConfiguration
  2149. Name="Release|Win32"
  2150. >
  2151. <Tool
  2152. Name="VCCLCompilerTool"
  2153. CompileAs="1"
  2154. />
  2155. </FileConfiguration>
  2156. </File>
  2157. </Filter>
  2158. </Filter>
  2159. <Filter
  2160. Name="timer"
  2161. Filter=""
  2162. >
  2163. <File
  2164. RelativePath="..\..\..\..\src\timer\SDL_timer.c"
  2165. >
  2166. <FileConfiguration
  2167. Name="Debug|Win32"
  2168. >
  2169. <Tool
  2170. Name="VCCLCompilerTool"
  2171. CompileAs="1"
  2172. />
  2173. </FileConfiguration>
  2174. <FileConfiguration
  2175. Name="Release|Win32"
  2176. >
  2177. <Tool
  2178. Name="VCCLCompilerTool"
  2179. CompileAs="1"
  2180. />
  2181. </FileConfiguration>
  2182. </File>
  2183. <File
  2184. RelativePath="..\..\..\..\src\timer\SDL_timer_c.h"
  2185. >
  2186. </File>
  2187. <Filter
  2188. Name="windows"
  2189. Filter=""
  2190. >
  2191. <File
  2192. RelativePath="..\..\..\..\src\timer\windows\SDL_systimer.c"
  2193. >
  2194. <FileConfiguration
  2195. Name="Debug|Win32"
  2196. >
  2197. <Tool
  2198. Name="VCCLCompilerTool"
  2199. CompileAs="1"
  2200. />
  2201. </FileConfiguration>
  2202. <FileConfiguration
  2203. Name="Release|Win32"
  2204. >
  2205. <Tool
  2206. Name="VCCLCompilerTool"
  2207. CompileAs="1"
  2208. />
  2209. </FileConfiguration>
  2210. </File>
  2211. </Filter>
  2212. </Filter>
  2213. <Filter
  2214. Name="video"
  2215. Filter=""
  2216. >
  2217. <File
  2218. RelativePath="..\..\..\..\src\video\SDL_RLEaccel.c"
  2219. >
  2220. <FileConfiguration
  2221. Name="Debug|Win32"
  2222. >
  2223. <Tool
  2224. Name="VCCLCompilerTool"
  2225. CompileAs="1"
  2226. />
  2227. </FileConfiguration>
  2228. <FileConfiguration
  2229. Name="Release|Win32"
  2230. >
  2231. <Tool
  2232. Name="VCCLCompilerTool"
  2233. CompileAs="1"
  2234. />
  2235. </FileConfiguration>
  2236. </File>
  2237. <File
  2238. RelativePath="..\..\..\..\src\video\SDL_RLEaccel_c.h"
  2239. >
  2240. </File>
  2241. <File
  2242. RelativePath="..\..\..\..\src\video\SDL_blit.c"
  2243. >
  2244. <FileConfiguration
  2245. Name="Debug|Win32"
  2246. >
  2247. <Tool
  2248. Name="VCCLCompilerTool"
  2249. CompileAs="1"
  2250. />
  2251. </FileConfiguration>
  2252. <FileConfiguration
  2253. Name="Release|Win32"
  2254. >
  2255. <Tool
  2256. Name="VCCLCompilerTool"
  2257. CompileAs="1"
  2258. />
  2259. </FileConfiguration>
  2260. </File>
  2261. <File
  2262. RelativePath="..\..\..\..\src\video\SDL_blit.h"
  2263. >
  2264. </File>
  2265. <File
  2266. RelativePath="..\..\..\..\src\video\SDL_blit_0.c"
  2267. >
  2268. <FileConfiguration
  2269. Name="Debug|Win32"
  2270. >
  2271. <Tool
  2272. Name="VCCLCompilerTool"
  2273. CompileAs="1"
  2274. />
  2275. </FileConfiguration>
  2276. <FileConfiguration
  2277. Name="Release|Win32"
  2278. >
  2279. <Tool
  2280. Name="VCCLCompilerTool"
  2281. CompileAs="1"
  2282. />
  2283. </FileConfiguration>
  2284. </File>
  2285. <File
  2286. RelativePath="..\..\..\..\src\video\SDL_blit_1.c"
  2287. >
  2288. <FileConfiguration
  2289. Name="Debug|Win32"
  2290. >
  2291. <Tool
  2292. Name="VCCLCompilerTool"
  2293. CompileAs="1"
  2294. />
  2295. </FileConfiguration>
  2296. <FileConfiguration
  2297. Name="Release|Win32"
  2298. >
  2299. <Tool
  2300. Name="VCCLCompilerTool"
  2301. CompileAs="1"
  2302. />
  2303. </FileConfiguration>
  2304. </File>
  2305. <File
  2306. RelativePath="..\..\..\..\src\video\SDL_blit_A.c"
  2307. >
  2308. <FileConfiguration
  2309. Name="Debug|Win32"
  2310. >
  2311. <Tool
  2312. Name="VCCLCompilerTool"
  2313. CompileAs="1"
  2314. />
  2315. </FileConfiguration>
  2316. <FileConfiguration
  2317. Name="Release|Win32"
  2318. >
  2319. <Tool
  2320. Name="VCCLCompilerTool"
  2321. CompileAs="1"
  2322. />
  2323. </FileConfiguration>
  2324. </File>
  2325. <File
  2326. RelativePath="..\..\..\..\src\video\SDL_blit_N.c"
  2327. >
  2328. <FileConfiguration
  2329. Name="Debug|Win32"
  2330. >
  2331. <Tool
  2332. Name="VCCLCompilerTool"
  2333. CompileAs="1"
  2334. />
  2335. </FileConfiguration>
  2336. <FileConfiguration
  2337. Name="Release|Win32"
  2338. >
  2339. <Tool
  2340. Name="VCCLCompilerTool"
  2341. CompileAs="1"
  2342. />
  2343. </FileConfiguration>
  2344. </File>
  2345. <File
  2346. RelativePath="..\..\..\..\src\video\SDL_blit_auto.c"
  2347. >
  2348. <FileConfiguration
  2349. Name="Debug|Win32"
  2350. >
  2351. <Tool
  2352. Name="VCCLCompilerTool"
  2353. CompileAs="1"
  2354. />
  2355. </FileConfiguration>
  2356. <FileConfiguration
  2357. Name="Release|Win32"
  2358. >
  2359. <Tool
  2360. Name="VCCLCompilerTool"
  2361. CompileAs="1"
  2362. />
  2363. </FileConfiguration>
  2364. </File>
  2365. <File
  2366. RelativePath="..\..\..\..\src\video\SDL_blit_auto.h"
  2367. >
  2368. </File>
  2369. <File
  2370. RelativePath="..\..\..\..\src\video\SDL_blit_copy.c"
  2371. >
  2372. <FileConfiguration
  2373. Name="Debug|Win32"
  2374. >
  2375. <Tool
  2376. Name="VCCLCompilerTool"
  2377. CompileAs="1"
  2378. />
  2379. </FileConfiguration>
  2380. <FileConfiguration
  2381. Name="Release|Win32"
  2382. >
  2383. <Tool
  2384. Name="VCCLCompilerTool"
  2385. CompileAs="1"
  2386. />
  2387. </FileConfiguration>
  2388. </File>
  2389. <File
  2390. RelativePath="..\..\..\..\src\video\SDL_blit_copy.h"
  2391. >
  2392. </File>
  2393. <File
  2394. RelativePath="..\..\..\..\src\video\SDL_blit_slow.c"
  2395. >
  2396. <FileConfiguration
  2397. Name="Debug|Win32"
  2398. >
  2399. <Tool
  2400. Name="VCCLCompilerTool"
  2401. CompileAs="1"
  2402. />
  2403. </FileConfiguration>
  2404. <FileConfiguration
  2405. Name="Release|Win32"
  2406. >
  2407. <Tool
  2408. Name="VCCLCompilerTool"
  2409. CompileAs="1"
  2410. />
  2411. </FileConfiguration>
  2412. </File>
  2413. <File
  2414. RelativePath="..\..\..\..\src\video\SDL_blit_slow.h"
  2415. >
  2416. </File>
  2417. <File
  2418. RelativePath="..\..\..\..\src\video\SDL_bmp.c"
  2419. >
  2420. <FileConfiguration
  2421. Name="Debug|Win32"
  2422. >
  2423. <Tool
  2424. Name="VCCLCompilerTool"
  2425. CompileAs="1"
  2426. />
  2427. </FileConfiguration>
  2428. <FileConfiguration
  2429. Name="Release|Win32"
  2430. >
  2431. <Tool
  2432. Name="VCCLCompilerTool"
  2433. CompileAs="1"
  2434. />
  2435. </FileConfiguration>
  2436. </File>
  2437. <File
  2438. RelativePath="..\..\..\..\src\video\SDL_clipboard.c"
  2439. >
  2440. <FileConfiguration
  2441. Name="Debug|Win32"
  2442. >
  2443. <Tool
  2444. Name="VCCLCompilerTool"
  2445. CompileAs="1"
  2446. />
  2447. </FileConfiguration>
  2448. <FileConfiguration
  2449. Name="Release|Win32"
  2450. >
  2451. <Tool
  2452. Name="VCCLCompilerTool"
  2453. CompileAs="1"
  2454. />
  2455. </FileConfiguration>
  2456. </File>
  2457. <File
  2458. RelativePath="..\..\..\..\src\video\SDL_egl.c"
  2459. >
  2460. <FileConfiguration
  2461. Name="Debug|Win32"
  2462. >
  2463. <Tool
  2464. Name="VCCLCompilerTool"
  2465. CompileAs="1"
  2466. />
  2467. </FileConfiguration>
  2468. <FileConfiguration
  2469. Name="Release|Win32"
  2470. >
  2471. <Tool
  2472. Name="VCCLCompilerTool"
  2473. CompileAs="1"
  2474. />
  2475. </FileConfiguration>
  2476. </File>
  2477. <File
  2478. RelativePath="..\..\..\..\src\video\SDL_egl.h"
  2479. >
  2480. </File>
  2481. <File
  2482. RelativePath="..\..\..\..\src\video\SDL_fillrect.c"
  2483. >
  2484. <FileConfiguration
  2485. Name="Debug|Win32"
  2486. >
  2487. <Tool
  2488. Name="VCCLCompilerTool"
  2489. CompileAs="1"
  2490. />
  2491. </FileConfiguration>
  2492. <FileConfiguration
  2493. Name="Release|Win32"
  2494. >
  2495. <Tool
  2496. Name="VCCLCompilerTool"
  2497. CompileAs="1"
  2498. />
  2499. </FileConfiguration>
  2500. </File>
  2501. <File
  2502. RelativePath="..\..\..\..\src\video\SDL_pixels.c"
  2503. >
  2504. <FileConfiguration
  2505. Name="Debug|Win32"
  2506. >
  2507. <Tool
  2508. Name="VCCLCompilerTool"
  2509. CompileAs="1"
  2510. />
  2511. </FileConfiguration>
  2512. <FileConfiguration
  2513. Name="Release|Win32"
  2514. >
  2515. <Tool
  2516. Name="VCCLCompilerTool"
  2517. CompileAs="1"
  2518. />
  2519. </FileConfiguration>
  2520. </File>
  2521. <File
  2522. RelativePath="..\..\..\..\src\video\SDL_pixels_c.h"
  2523. >
  2524. </File>
  2525. <File
  2526. RelativePath="..\..\..\..\src\video\SDL_rect.c"
  2527. >
  2528. <FileConfiguration
  2529. Name="Debug|Win32"
  2530. >
  2531. <Tool
  2532. Name="VCCLCompilerTool"
  2533. CompileAs="1"
  2534. />
  2535. </FileConfiguration>
  2536. <FileConfiguration
  2537. Name="Release|Win32"
  2538. >
  2539. <Tool
  2540. Name="VCCLCompilerTool"
  2541. CompileAs="1"
  2542. />
  2543. </FileConfiguration>
  2544. </File>
  2545. <File
  2546. RelativePath="..\..\..\..\src\video\SDL_rect_c.h"
  2547. >
  2548. </File>
  2549. <File
  2550. RelativePath="..\..\..\..\src\video\SDL_shape.c"
  2551. >
  2552. <FileConfiguration
  2553. Name="Debug|Win32"
  2554. >
  2555. <Tool
  2556. Name="VCCLCompilerTool"
  2557. CompileAs="1"
  2558. />
  2559. </FileConfiguration>
  2560. <FileConfiguration
  2561. Name="Release|Win32"
  2562. >
  2563. <Tool
  2564. Name="VCCLCompilerTool"
  2565. CompileAs="1"
  2566. />
  2567. </FileConfiguration>
  2568. </File>
  2569. <File
  2570. RelativePath="..\..\..\..\src\video\SDL_shape_internals.h"
  2571. >
  2572. </File>
  2573. <File
  2574. RelativePath="..\..\..\..\src\video\SDL_stretch.c"
  2575. >
  2576. <FileConfiguration
  2577. Name="Debug|Win32"
  2578. >
  2579. <Tool
  2580. Name="VCCLCompilerTool"
  2581. CompileAs="1"
  2582. />
  2583. </FileConfiguration>
  2584. <FileConfiguration
  2585. Name="Release|Win32"
  2586. >
  2587. <Tool
  2588. Name="VCCLCompilerTool"
  2589. CompileAs="1"
  2590. />
  2591. </FileConfiguration>
  2592. </File>
  2593. <File
  2594. RelativePath="..\..\..\..\src\video\SDL_surface.c"
  2595. >
  2596. <FileConfiguration
  2597. Name="Debug|Win32"
  2598. >
  2599. <Tool
  2600. Name="VCCLCompilerTool"
  2601. CompileAs="1"
  2602. />
  2603. </FileConfiguration>
  2604. <FileConfiguration
  2605. Name="Release|Win32"
  2606. >
  2607. <Tool
  2608. Name="VCCLCompilerTool"
  2609. CompileAs="1"
  2610. />
  2611. </FileConfiguration>
  2612. </File>
  2613. <File
  2614. RelativePath="..\..\..\..\src\video\SDL_sysvideo.h"
  2615. >
  2616. </File>
  2617. <File
  2618. RelativePath="..\..\..\..\src\video\SDL_video.c"
  2619. >
  2620. <FileConfiguration
  2621. Name="Debug|Win32"
  2622. >
  2623. <Tool
  2624. Name="VCCLCompilerTool"
  2625. CompileAs="1"
  2626. />
  2627. </FileConfiguration>
  2628. <FileConfiguration
  2629. Name="Release|Win32"
  2630. >
  2631. <Tool
  2632. Name="VCCLCompilerTool"
  2633. CompileAs="1"
  2634. />
  2635. </FileConfiguration>
  2636. </File>
  2637. <Filter
  2638. Name="dummy"
  2639. Filter=""
  2640. >
  2641. <File
  2642. RelativePath="..\..\..\..\src\video\dummy\SDL_nullevents.c"
  2643. >
  2644. <FileConfiguration
  2645. Name="Debug|Win32"
  2646. >
  2647. <Tool
  2648. Name="VCCLCompilerTool"
  2649. CompileAs="1"
  2650. />
  2651. </FileConfiguration>
  2652. <FileConfiguration
  2653. Name="Release|Win32"
  2654. >
  2655. <Tool
  2656. Name="VCCLCompilerTool"
  2657. CompileAs="1"
  2658. />
  2659. </FileConfiguration>
  2660. </File>
  2661. <File
  2662. RelativePath="..\..\..\..\src\video\dummy\SDL_nullevents_c.h"
  2663. >
  2664. </File>
  2665. <File
  2666. RelativePath="..\..\..\..\src\video\dummy\SDL_nullframebuffer.c"
  2667. >
  2668. <FileConfiguration
  2669. Name="Debug|Win32"
  2670. >
  2671. <Tool
  2672. Name="VCCLCompilerTool"
  2673. CompileAs="1"
  2674. />
  2675. </FileConfiguration>
  2676. <FileConfiguration
  2677. Name="Release|Win32"
  2678. >
  2679. <Tool
  2680. Name="VCCLCompilerTool"
  2681. CompileAs="1"
  2682. />
  2683. </FileConfiguration>
  2684. </File>
  2685. <File
  2686. RelativePath="..\..\..\..\src\video\dummy\SDL_nullframebuffer_c.h"
  2687. >
  2688. </File>
  2689. <File
  2690. RelativePath="..\..\..\..\src\video\dummy\SDL_nullvideo.c"
  2691. >
  2692. <FileConfiguration
  2693. Name="Debug|Win32"
  2694. >
  2695. <Tool
  2696. Name="VCCLCompilerTool"
  2697. CompileAs="1"
  2698. />
  2699. </FileConfiguration>
  2700. <FileConfiguration
  2701. Name="Release|Win32"
  2702. >
  2703. <Tool
  2704. Name="VCCLCompilerTool"
  2705. CompileAs="1"
  2706. />
  2707. </FileConfiguration>
  2708. </File>
  2709. <File
  2710. RelativePath="..\..\..\..\src\video\dummy\SDL_nullvideo.h"
  2711. >
  2712. </File>
  2713. </Filter>
  2714. <Filter
  2715. Name="windows"
  2716. Filter=""
  2717. >
  2718. <File
  2719. RelativePath="..\..\..\..\src\video\windows\SDL_msctf.h"
  2720. >
  2721. </File>
  2722. <File
  2723. RelativePath="..\..\..\..\src\video\windows\SDL_vkeys.h"
  2724. >
  2725. </File>
  2726. <File
  2727. RelativePath="..\..\..\..\src\video\windows\SDL_windowsclipboard.c"
  2728. >
  2729. <FileConfiguration
  2730. Name="Debug|Win32"
  2731. >
  2732. <Tool
  2733. Name="VCCLCompilerTool"
  2734. CompileAs="1"
  2735. />
  2736. </FileConfiguration>
  2737. <FileConfiguration
  2738. Name="Release|Win32"
  2739. >
  2740. <Tool
  2741. Name="VCCLCompilerTool"
  2742. CompileAs="1"
  2743. />
  2744. </FileConfiguration>
  2745. </File>
  2746. <File
  2747. RelativePath="..\..\..\..\src\video\windows\SDL_windowsclipboard.h"
  2748. >
  2749. </File>
  2750. <File
  2751. RelativePath="..\..\..\..\src\video\windows\SDL_windowsevents.c"
  2752. >
  2753. <FileConfiguration
  2754. Name="Debug|Win32"
  2755. >
  2756. <Tool
  2757. Name="VCCLCompilerTool"
  2758. CompileAs="1"
  2759. />
  2760. </FileConfiguration>
  2761. <FileConfiguration
  2762. Name="Release|Win32"
  2763. >
  2764. <Tool
  2765. Name="VCCLCompilerTool"
  2766. CompileAs="1"
  2767. />
  2768. </FileConfiguration>
  2769. </File>
  2770. <File
  2771. RelativePath="..\..\..\..\src\video\windows\SDL_windowsevents.h"
  2772. >
  2773. </File>
  2774. <File
  2775. RelativePath="..\..\..\..\src\video\windows\SDL_windowsframebuffer.c"
  2776. >
  2777. <FileConfiguration
  2778. Name="Debug|Win32"
  2779. >
  2780. <Tool
  2781. Name="VCCLCompilerTool"
  2782. CompileAs="1"
  2783. />
  2784. </FileConfiguration>
  2785. <FileConfiguration
  2786. Name="Release|Win32"
  2787. >
  2788. <Tool
  2789. Name="VCCLCompilerTool"
  2790. CompileAs="1"
  2791. />
  2792. </FileConfiguration>
  2793. </File>
  2794. <File
  2795. RelativePath="..\..\..\..\src\video\windows\SDL_windowsframebuffer.h"
  2796. >
  2797. </File>
  2798. <File
  2799. RelativePath="..\..\..\..\src\video\windows\SDL_windowskeyboard.c"
  2800. >
  2801. <FileConfiguration
  2802. Name="Debug|Win32"
  2803. >
  2804. <Tool
  2805. Name="VCCLCompilerTool"
  2806. CompileAs="1"
  2807. />
  2808. </FileConfiguration>
  2809. <FileConfiguration
  2810. Name="Release|Win32"
  2811. >
  2812. <Tool
  2813. Name="VCCLCompilerTool"
  2814. CompileAs="1"
  2815. />
  2816. </FileConfiguration>
  2817. </File>
  2818. <File
  2819. RelativePath="..\..\..\..\src\video\windows\SDL_windowskeyboard.h"
  2820. >
  2821. </File>
  2822. <File
  2823. RelativePath="..\..\..\..\src\video\windows\SDL_windowsmessagebox.c"
  2824. >
  2825. <FileConfiguration
  2826. Name="Debug|Win32"
  2827. >
  2828. <Tool
  2829. Name="VCCLCompilerTool"
  2830. CompileAs="1"
  2831. />
  2832. </FileConfiguration>
  2833. <FileConfiguration
  2834. Name="Release|Win32"
  2835. >
  2836. <Tool
  2837. Name="VCCLCompilerTool"
  2838. CompileAs="1"
  2839. />
  2840. </FileConfiguration>
  2841. </File>
  2842. <File
  2843. RelativePath="..\..\..\..\src\video\windows\SDL_windowsmessagebox.h"
  2844. >
  2845. </File>
  2846. <File
  2847. RelativePath="..\..\..\..\src\video\windows\SDL_windowsmodes.c"
  2848. >
  2849. <FileConfiguration
  2850. Name="Debug|Win32"
  2851. >
  2852. <Tool
  2853. Name="VCCLCompilerTool"
  2854. CompileAs="1"
  2855. />
  2856. </FileConfiguration>
  2857. <FileConfiguration
  2858. Name="Release|Win32"
  2859. >
  2860. <Tool
  2861. Name="VCCLCompilerTool"
  2862. CompileAs="1"
  2863. />
  2864. </FileConfiguration>
  2865. </File>
  2866. <File
  2867. RelativePath="..\..\..\..\src\video\windows\SDL_windowsmodes.h"
  2868. >
  2869. </File>
  2870. <File
  2871. RelativePath="..\..\..\..\src\video\windows\SDL_windowsmouse.c"
  2872. >
  2873. <FileConfiguration
  2874. Name="Debug|Win32"
  2875. >
  2876. <Tool
  2877. Name="VCCLCompilerTool"
  2878. CompileAs="1"
  2879. />
  2880. </FileConfiguration>
  2881. <FileConfiguration
  2882. Name="Release|Win32"
  2883. >
  2884. <Tool
  2885. Name="VCCLCompilerTool"
  2886. CompileAs="1"
  2887. />
  2888. </FileConfiguration>
  2889. </File>
  2890. <File
  2891. RelativePath="..\..\..\..\src\video\windows\SDL_windowsmouse.h"
  2892. >
  2893. </File>
  2894. <File
  2895. RelativePath="..\..\..\..\src\video\windows\SDL_windowsopengl.c"
  2896. >
  2897. <FileConfiguration
  2898. Name="Debug|Win32"
  2899. >
  2900. <Tool
  2901. Name="VCCLCompilerTool"
  2902. CompileAs="1"
  2903. />
  2904. </FileConfiguration>
  2905. <FileConfiguration
  2906. Name="Release|Win32"
  2907. >
  2908. <Tool
  2909. Name="VCCLCompilerTool"
  2910. CompileAs="1"
  2911. />
  2912. </FileConfiguration>
  2913. </File>
  2914. <File
  2915. RelativePath="..\..\..\..\src\video\windows\SDL_windowsopengl.h"
  2916. >
  2917. </File>
  2918. <File
  2919. RelativePath="..\..\..\..\src\video\windows\SDL_windowsshape.c"
  2920. >
  2921. <FileConfiguration
  2922. Name="Debug|Win32"
  2923. >
  2924. <Tool
  2925. Name="VCCLCompilerTool"
  2926. CompileAs="1"
  2927. />
  2928. </FileConfiguration>
  2929. <FileConfiguration
  2930. Name="Release|Win32"
  2931. >
  2932. <Tool
  2933. Name="VCCLCompilerTool"
  2934. CompileAs="1"
  2935. />
  2936. </FileConfiguration>
  2937. </File>
  2938. <File
  2939. RelativePath="..\..\..\..\src\video\windows\SDL_windowsshape.h"
  2940. >
  2941. </File>
  2942. <File
  2943. RelativePath="..\..\..\..\src\video\windows\SDL_windowsvideo.c"
  2944. >
  2945. <FileConfiguration
  2946. Name="Debug|Win32"
  2947. >
  2948. <Tool
  2949. Name="VCCLCompilerTool"
  2950. CompileAs="1"
  2951. />
  2952. </FileConfiguration>
  2953. <FileConfiguration
  2954. Name="Release|Win32"
  2955. >
  2956. <Tool
  2957. Name="VCCLCompilerTool"
  2958. CompileAs="1"
  2959. />
  2960. </FileConfiguration>
  2961. </File>
  2962. <File
  2963. RelativePath="..\..\..\..\src\video\windows\SDL_windowsvideo.h"
  2964. >
  2965. </File>
  2966. <File
  2967. RelativePath="..\..\..\..\src\video\windows\SDL_windowswindow.c"
  2968. >
  2969. <FileConfiguration
  2970. Name="Debug|Win32"
  2971. >
  2972. <Tool
  2973. Name="VCCLCompilerTool"
  2974. CompileAs="1"
  2975. />
  2976. </FileConfiguration>
  2977. <FileConfiguration
  2978. Name="Release|Win32"
  2979. >
  2980. <Tool
  2981. Name="VCCLCompilerTool"
  2982. CompileAs="1"
  2983. />
  2984. </FileConfiguration>
  2985. </File>
  2986. <File
  2987. RelativePath="..\..\..\..\src\video\windows\SDL_windowswindow.h"
  2988. >
  2989. </File>
  2990. <File
  2991. RelativePath="..\..\..\..\src\video\windows\wmmsg.h"
  2992. >
  2993. </File>
  2994. </Filter>
  2995. </Filter>
  2996. </Filter>
  2997. </Files>
  2998. <Globals>
  2999. </Globals>
  3000. </VisualStudioProject>