project.pbxproj 164 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXAggregateTarget section */
  9. BEC566920761D90300A33029 /* All */ = {
  10. isa = PBXAggregateTarget;
  11. buildConfigurationList = 001B599808BDB826006539E9 /* Build configuration list for PBXAggregateTarget "All" */;
  12. buildPhases = (
  13. );
  14. dependencies = (
  15. DB0F490517CA5249008798C5 /* PBXTargetDependency */,
  16. DB0F490717CA5249008798C5 /* PBXTargetDependency */,
  17. DB166E9816A1D7CF00A1396C /* PBXTargetDependency */,
  18. DB166E9616A1D7CD00A1396C /* PBXTargetDependency */,
  19. DB166E6C16A1D72000A1396C /* PBXTargetDependency */,
  20. DB166E5616A1D6B800A1396C /* PBXTargetDependency */,
  21. DB166E3B16A1D65A00A1396C /* PBXTargetDependency */,
  22. DB166E2016A1D5D000A1396C /* PBXTargetDependency */,
  23. DB166E0916A1D5A400A1396C /* PBXTargetDependency */,
  24. DB166DF216A1D53700A1396C /* PBXTargetDependency */,
  25. DB166DD916A1D38900A1396C /* PBXTargetDependency */,
  26. 001799481074403E00F5D044 /* PBXTargetDependency */,
  27. 0017994C1074403E00F5D044 /* PBXTargetDependency */,
  28. 001799501074403E00F5D044 /* PBXTargetDependency */,
  29. 001799521074403E00F5D044 /* PBXTargetDependency */,
  30. 0017995A1074403E00F5D044 /* PBXTargetDependency */,
  31. 0017995E1074403E00F5D044 /* PBXTargetDependency */,
  32. 001799601074403E00F5D044 /* PBXTargetDependency */,
  33. 001799661074403E00F5D044 /* PBXTargetDependency */,
  34. 001799681074403E00F5D044 /* PBXTargetDependency */,
  35. 0017996A1074403E00F5D044 /* PBXTargetDependency */,
  36. 0017996C1074403E00F5D044 /* PBXTargetDependency */,
  37. 0017996E1074403E00F5D044 /* PBXTargetDependency */,
  38. 001799701074403E00F5D044 /* PBXTargetDependency */,
  39. 001799721074403E00F5D044 /* PBXTargetDependency */,
  40. 001799741074403E00F5D044 /* PBXTargetDependency */,
  41. 001799761074403E00F5D044 /* PBXTargetDependency */,
  42. 001799781074403E00F5D044 /* PBXTargetDependency */,
  43. 0017997C1074403E00F5D044 /* PBXTargetDependency */,
  44. 001799801074403E00F5D044 /* PBXTargetDependency */,
  45. 001799841074403E00F5D044 /* PBXTargetDependency */,
  46. 001799881074403E00F5D044 /* PBXTargetDependency */,
  47. 0017998A1074403E00F5D044 /* PBXTargetDependency */,
  48. 0017998C1074403E00F5D044 /* PBXTargetDependency */,
  49. 0017998E1074403E00F5D044 /* PBXTargetDependency */,
  50. 001799921074403E00F5D044 /* PBXTargetDependency */,
  51. 001799941074403E00F5D044 /* PBXTargetDependency */,
  52. 001799961074403E00F5D044 /* PBXTargetDependency */,
  53. 0017999E1074403E00F5D044 /* PBXTargetDependency */,
  54. 001799A21074403E00F5D044 /* PBXTargetDependency */,
  55. DB166D7016A1CEAF00A1396C /* PBXTargetDependency */,
  56. DB166D6E16A1CEAA00A1396C /* PBXTargetDependency */,
  57. );
  58. name = All;
  59. productName = "Build All";
  60. };
  61. /* End PBXAggregateTarget section */
  62. /* Begin PBXBuildFile section */
  63. 001795901074216E00F5D044 /* testatomic.c in Sources */ = {isa = PBXBuildFile; fileRef = 0017958F1074216E00F5D044 /* testatomic.c */; };
  64. 001795B11074222D00F5D044 /* testaudioinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 001795B01074222D00F5D044 /* testaudioinfo.c */; };
  65. 0017972810742FB900F5D044 /* testgl.c in Sources */ = {isa = PBXBuildFile; fileRef = 0017972710742FB900F5D044 /* testgl.c */; };
  66. 0017974F1074315700F5D044 /* testhaptic.c in Sources */ = {isa = PBXBuildFile; fileRef = 0017974E1074315700F5D044 /* testhaptic.c */; };
  67. 001797721074320D00F5D044 /* testdraw.c in Sources */ = {isa = PBXBuildFile; fileRef = 001797711074320D00F5D044 /* testdraw.c */; };
  68. 00179792107432FA00F5D044 /* testime.c in Sources */ = {isa = PBXBuildFile; fileRef = 00179791107432FA00F5D044 /* testime.c */; };
  69. 001797B41074339C00F5D044 /* testintersections.c in Sources */ = {isa = PBXBuildFile; fileRef = 001797B31074339C00F5D044 /* testintersections.c */; };
  70. 001797D41074343E00F5D044 /* testloadso.c in Sources */ = {isa = PBXBuildFile; fileRef = 001797D31074343E00F5D044 /* testloadso.c */; };
  71. 001798161074359B00F5D044 /* testmultiaudio.c in Sources */ = {isa = PBXBuildFile; fileRef = 001798151074359B00F5D044 /* testmultiaudio.c */; };
  72. 0017987F1074392D00F5D044 /* testnative.c in Sources */ = {isa = PBXBuildFile; fileRef = 0017985A107436ED00F5D044 /* testnative.c */; };
  73. 001798801074392D00F5D044 /* testnativecocoa.m in Sources */ = {isa = PBXBuildFile; fileRef = 0017985C107436ED00F5D044 /* testnativecocoa.m */; };
  74. 001798BA10743A4900F5D044 /* testpower.c in Sources */ = {isa = PBXBuildFile; fileRef = 001798B910743A4900F5D044 /* testpower.c */; };
  75. 001798FA10743E9200F5D044 /* testresample.c in Sources */ = {isa = PBXBuildFile; fileRef = 001798F910743E9200F5D044 /* testresample.c */; };
  76. 0017991A10743F5300F5D044 /* testsprite.c in Sources */ = {isa = PBXBuildFile; fileRef = 0017991910743F5300F5D044 /* testsprite.c */; };
  77. 0017993C10743FEF00F5D044 /* testwm.c in Sources */ = {isa = PBXBuildFile; fileRef = 0017993B10743FEF00F5D044 /* testwm.c */; };
  78. 002F341809CA1C5B00EBEB88 /* testfile.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F341709CA1C5B00EBEB88 /* testfile.c */; };
  79. 002F343709CA1F6F00EBEB88 /* testiconv.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F343609CA1F6F00EBEB88 /* testiconv.c */; };
  80. 002F345409CA202000EBEB88 /* testoverlay.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F345209CA201C00EBEB88 /* testoverlay.c */; };
  81. 002F347009CA20A600EBEB88 /* testplatform.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F346F09CA20A600EBEB88 /* testplatform.c */; };
  82. 00794E6609D20865003FC8A1 /* sample.wav in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E6209D20839003FC8A1 /* sample.wav */; };
  83. 00794EF009D23739003FC8A1 /* utf8.txt in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E6309D20839003FC8A1 /* utf8.txt */; };
  84. 00794EF709D237DE003FC8A1 /* moose.dat in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E5E09D20839003FC8A1 /* moose.dat */; };
  85. 453774A5120915E3002F0F45 /* testshape.c in Sources */ = {isa = PBXBuildFile; fileRef = 453774A4120915E3002F0F45 /* testshape.c */; };
  86. 66E88E8B203B778F0004D44E /* testyuv_cvt.c in Sources */ = {isa = PBXBuildFile; fileRef = 66E88E8A203B778F0004D44E /* testyuv_cvt.c */; };
  87. AAF02FFA1F90092700B9A9FB /* SDL_test_memory.c in Sources */ = {isa = PBXBuildFile; fileRef = AAF02FF41F90089800B9A9FB /* SDL_test_memory.c */; };
  88. BBFC08D0164C6876003E6A99 /* testgamepad.c in Sources */ = {isa = PBXBuildFile; fileRef = BBFC088E164C6820003E6A99 /* testgamepad.c */; };
  89. BEC566B10761D90300A33029 /* checkkeys.c in Sources */ = {isa = PBXBuildFile; fileRef = 092D6D10FFB30A2C7F000001 /* checkkeys.c */; };
  90. BEC566CB0761D90300A33029 /* loopwave.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E4872006D84C97F000001 /* loopwave.c */; };
  91. BEC567010761D90300A33029 /* testerror.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E4878006D85357F000001 /* testerror.c */; };
  92. BEC567290761D90400A33029 /* testthread.c in Sources */ = {isa = PBXBuildFile; fileRef = 092D6D58FFB311A97F000001 /* testthread.c */; };
  93. BEC567360761D90400A33029 /* testjoystick.c in Sources */ = {isa = PBXBuildFile; fileRef = 092D6D62FFB312AA7F000001 /* testjoystick.c */; };
  94. BEC567430761D90400A33029 /* testkeys.c in Sources */ = {isa = PBXBuildFile; fileRef = 092D6D6CFFB313437F000001 /* testkeys.c */; };
  95. BEC567500761D90400A33029 /* testlock.c in Sources */ = {isa = PBXBuildFile; fileRef = 092D6D75FFB313BB7F000001 /* testlock.c */; };
  96. BEC567780761D90500A33029 /* testsem.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E487E006D86A17F000001 /* testsem.c */; };
  97. BEC567930761D90500A33029 /* testtimer.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E4880006D86A17F000001 /* testtimer.c */; };
  98. BEC567AD0761D90500A33029 /* testver.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E4882006D86A17F000001 /* testver.c */; };
  99. BEC567F00761D90600A33029 /* torturethread.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E4887006D86A17F000001 /* torturethread.c */; };
  100. DB0F48EE17CA51F8008798C5 /* testdrawchessboard.c in Sources */ = {isa = PBXBuildFile; fileRef = DB0F48D717CA51D2008798C5 /* testdrawchessboard.c */; };
  101. DB0F490317CA5225008798C5 /* testfilesystem.c in Sources */ = {isa = PBXBuildFile; fileRef = DB0F48D817CA51D2008798C5 /* testfilesystem.c */; };
  102. DB166D9316A1D1A500A1396C /* SDL_test_assert.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8416A1D1A500A1396C /* SDL_test_assert.c */; };
  103. DB166D9416A1D1A500A1396C /* SDL_test_common.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8516A1D1A500A1396C /* SDL_test_common.c */; };
  104. DB166D9516A1D1A500A1396C /* SDL_test_compare.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8616A1D1A500A1396C /* SDL_test_compare.c */; };
  105. DB166D9616A1D1A500A1396C /* SDL_test_crc32.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8716A1D1A500A1396C /* SDL_test_crc32.c */; };
  106. DB166D9716A1D1A500A1396C /* SDL_test_font.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8816A1D1A500A1396C /* SDL_test_font.c */; };
  107. DB166D9816A1D1A500A1396C /* SDL_test_fuzzer.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8916A1D1A500A1396C /* SDL_test_fuzzer.c */; };
  108. DB166D9916A1D1A500A1396C /* SDL_test_harness.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8A16A1D1A500A1396C /* SDL_test_harness.c */; };
  109. DB166D9F16A1D1A500A1396C /* SDL_test_log.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D9016A1D1A500A1396C /* SDL_test_log.c */; };
  110. DB166DA016A1D1A500A1396C /* SDL_test_md5.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D9116A1D1A500A1396C /* SDL_test_md5.c */; };
  111. DB166DA116A1D1A500A1396C /* SDL_test_random.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D9216A1D1A500A1396C /* SDL_test_random.c */; };
  112. DB166DA216A1D1E900A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; };
  113. DB166DA316A1D1FA00A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; };
  114. DB166DA416A1D21700A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; };
  115. DB166DA716A1D24D00A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; };
  116. DB166DAA16A1D27700A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; };
  117. DB166DAB16A1D27C00A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; };
  118. DB166DAC16A1D29000A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; };
  119. DB166DD716A1D37800A1396C /* testmessage.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166CBD16A1C74100A1396C /* testmessage.c */; };
  120. DB166DDB16A1D42F00A1396C /* icon.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E5D09D20839003FC8A1 /* icon.bmp */; };
  121. DB166DEA16A1D50C00A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; };
  122. DB166DF016A1D52500A1396C /* testrelative.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166CBF16A1C74100A1396C /* testrelative.c */; };
  123. DB166E0116A1D57C00A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; };
  124. DB166E0716A1D59400A1396C /* testrendercopyex.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166CC016A1C74100A1396C /* testrendercopyex.c */; };
  125. DB166E1816A1D5AD00A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; };
  126. DB166E1E16A1D5C300A1396C /* testrendertarget.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166CC116A1C74100A1396C /* testrendertarget.c */; };
  127. DB166E2216A1D5EC00A1396C /* sample.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E6109D20839003FC8A1 /* sample.bmp */; };
  128. DB166E2316A1D60B00A1396C /* icon.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E5D09D20839003FC8A1 /* icon.bmp */; };
  129. DB166E2516A1D61900A1396C /* icon.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E5D09D20839003FC8A1 /* icon.bmp */; };
  130. DB166E2616A1D61900A1396C /* sample.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E6109D20839003FC8A1 /* sample.bmp */; };
  131. DB166E3C16A1D66500A1396C /* testrumble.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166CC216A1C74100A1396C /* testrumble.c */; };
  132. DB166E4B16A1D69000A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; };
  133. DB166E4D16A1D69000A1396C /* icon.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E5D09D20839003FC8A1 /* icon.bmp */; };
  134. DB166E4E16A1D69000A1396C /* sample.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E6109D20839003FC8A1 /* sample.bmp */; };
  135. DB166E5416A1D6A300A1396C /* testscale.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166CC316A1C74100A1396C /* testscale.c */; };
  136. DB166E6A16A1D70C00A1396C /* testshader.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166CC416A1C74100A1396C /* testshader.c */; };
  137. DB166E9316A1D7BC00A1396C /* testspriteminimal.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166CC516A1C74100A1396C /* testspriteminimal.c */; };
  138. DB166E9416A1D7C700A1396C /* teststreaming.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166CC616A1C74100A1396C /* teststreaming.c */; };
  139. DB166E9A16A1D7F700A1396C /* moose.dat in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E5E09D20839003FC8A1 /* moose.dat */; };
  140. DB166E9C16A1D80900A1396C /* icon.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E5D09D20839003FC8A1 /* icon.bmp */; };
  141. DB166ED016A1D88100A1396C /* shapes in CopyFiles */ = {isa = PBXBuildFile; fileRef = DB166ECF16A1D87000A1396C /* shapes */; };
  142. DB445EF418184B7000B306B0 /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; };
  143. DB445EFB18184BB600B306B0 /* testdropfile.c in Sources */ = {isa = PBXBuildFile; fileRef = DB445EFA18184BB600B306B0 /* testdropfile.c */; };
  144. DB89958418A19B130092407C /* testhotplug.c in Sources */ = {isa = PBXBuildFile; fileRef = DB89958318A19B130092407C /* testhotplug.c */; };
  145. DBEC54EB1A1A8205005B1EAB /* gamepadmap.c in Sources */ = {isa = PBXBuildFile; fileRef = DBEC54D11A1A811D005B1EAB /* gamepadmap.c */; };
  146. DBEC54ED1A1A828A005B1EAB /* axis.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = DBEC54D61A1A8145005B1EAB /* axis.bmp */; };
  147. DBEC54EE1A1A828D005B1EAB /* button.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = DBEC54D71A1A8145005B1EAB /* button.bmp */; };
  148. DBEC54EF1A1A828F005B1EAB /* gamepadmap.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = DBEC54D81A1A8145005B1EAB /* gamepadmap.bmp */; };
  149. F3C17C6B28E4022A00E1A26D /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; };
  150. F3C17C7428E40AF000E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
  151. F3C17C7628E40BA200E1A26D /* gamepadmap_back.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = F3C17C7528E40B6B00E1A26D /* gamepadmap_back.bmp */; };
  152. F3C17C7728E40BC800E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
  153. F3C17C7928E40C6E00E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
  154. F3C17C7B28E40D4E00E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
  155. F3C17C7C28E40D7400E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
  156. F3C17C7D28E40F9D00E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
  157. F3C17C7E28E40FDD00E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
  158. F3C17C7F28E4101000E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
  159. F3C17C8028E410A400E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
  160. F3C17C8128E410C900E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
  161. F3C17C8228E4112900E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
  162. F3C17C8328E4124400E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
  163. F3C17C8428E4126400E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
  164. F3C17C8528E4127D00E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
  165. F3C17CEB28E4177600E1A26D /* testgeometry.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CD628E416AC00E1A26D /* testgeometry.c */; };
  166. F3C17CEC28E417EB00E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
  167. F3C17CED28E417F400E1A26D /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; };
  168. F3C17D3928E424B800E1A26D /* sample.wav in Resources */ = {isa = PBXBuildFile; fileRef = 00794E6209D20839003FC8A1 /* sample.wav */; };
  169. F3C17D3B28E4252900E1A26D /* icon.bmp in Resources */ = {isa = PBXBuildFile; fileRef = 00794E5D09D20839003FC8A1 /* icon.bmp */; };
  170. F3C17D3C28E4277D00E1A26D /* axis.bmp in Resources */ = {isa = PBXBuildFile; fileRef = DBEC54D61A1A8145005B1EAB /* axis.bmp */; };
  171. F3C17D3D28E4277D00E1A26D /* button.bmp in Resources */ = {isa = PBXBuildFile; fileRef = DBEC54D71A1A8145005B1EAB /* button.bmp */; };
  172. F3C17D3E28E4277D00E1A26D /* gamepadmap_back.bmp in Resources */ = {isa = PBXBuildFile; fileRef = F3C17C7528E40B6B00E1A26D /* gamepadmap_back.bmp */; };
  173. F3C17D3F28E4277D00E1A26D /* gamepadmap.bmp in Resources */ = {isa = PBXBuildFile; fileRef = DBEC54D81A1A8145005B1EAB /* gamepadmap.bmp */; };
  174. /* End PBXBuildFile section */
  175. /* Begin PBXContainerItemProxy section */
  176. 001799471074403E00F5D044 /* PBXContainerItemProxy */ = {
  177. isa = PBXContainerItemProxy;
  178. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  179. proxyType = 1;
  180. remoteGlobalIDString = BEC566AB0761D90300A33029;
  181. remoteInfo = checkkeys;
  182. };
  183. 0017994B1074403E00F5D044 /* PBXContainerItemProxy */ = {
  184. isa = PBXContainerItemProxy;
  185. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  186. proxyType = 1;
  187. remoteGlobalIDString = BEC566C50761D90300A33029;
  188. remoteInfo = loopwave;
  189. };
  190. 0017994F1074403E00F5D044 /* PBXContainerItemProxy */ = {
  191. isa = PBXContainerItemProxy;
  192. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  193. proxyType = 1;
  194. remoteGlobalIDString = 0017957410741F7900F5D044;
  195. remoteInfo = testatomic;
  196. };
  197. 001799511074403E00F5D044 /* PBXContainerItemProxy */ = {
  198. isa = PBXContainerItemProxy;
  199. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  200. proxyType = 1;
  201. remoteGlobalIDString = 00179595107421BF00F5D044;
  202. remoteInfo = testaudioinfo;
  203. };
  204. 001799591074403E00F5D044 /* PBXContainerItemProxy */ = {
  205. isa = PBXContainerItemProxy;
  206. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  207. proxyType = 1;
  208. remoteGlobalIDString = 00179756107431B300F5D044;
  209. remoteInfo = testdraw;
  210. };
  211. 0017995D1074403E00F5D044 /* PBXContainerItemProxy */ = {
  212. isa = PBXContainerItemProxy;
  213. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  214. proxyType = 1;
  215. remoteGlobalIDString = BEC566FB0761D90300A33029;
  216. remoteInfo = testerror;
  217. };
  218. 0017995F1074403E00F5D044 /* PBXContainerItemProxy */ = {
  219. isa = PBXContainerItemProxy;
  220. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  221. proxyType = 1;
  222. remoteGlobalIDString = 002F340109CA1BFF00EBEB88;
  223. remoteInfo = testfile;
  224. };
  225. 001799651074403E00F5D044 /* PBXContainerItemProxy */ = {
  226. isa = PBXContainerItemProxy;
  227. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  228. proxyType = 1;
  229. remoteGlobalIDString = 0017970910742F3200F5D044;
  230. remoteInfo = testgl;
  231. };
  232. 001799671074403E00F5D044 /* PBXContainerItemProxy */ = {
  233. isa = PBXContainerItemProxy;
  234. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  235. proxyType = 1;
  236. remoteGlobalIDString = 00179730107430D600F5D044;
  237. remoteInfo = testhaptic;
  238. };
  239. 001799691074403E00F5D044 /* PBXContainerItemProxy */ = {
  240. isa = PBXContainerItemProxy;
  241. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  242. proxyType = 1;
  243. remoteGlobalIDString = BEC567230761D90400A33029;
  244. remoteInfo = testthread;
  245. };
  246. 0017996B1074403E00F5D044 /* PBXContainerItemProxy */ = {
  247. isa = PBXContainerItemProxy;
  248. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  249. proxyType = 1;
  250. remoteGlobalIDString = 002F342009CA1F0300EBEB88;
  251. remoteInfo = testiconv;
  252. };
  253. 0017996D1074403E00F5D044 /* PBXContainerItemProxy */ = {
  254. isa = PBXContainerItemProxy;
  255. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  256. proxyType = 1;
  257. remoteGlobalIDString = 00179776107432AE00F5D044;
  258. remoteInfo = testime;
  259. };
  260. 0017996F1074403E00F5D044 /* PBXContainerItemProxy */ = {
  261. isa = PBXContainerItemProxy;
  262. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  263. proxyType = 1;
  264. remoteGlobalIDString = 001797961074334C00F5D044;
  265. remoteInfo = testintersections;
  266. };
  267. 001799711074403E00F5D044 /* PBXContainerItemProxy */ = {
  268. isa = PBXContainerItemProxy;
  269. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  270. proxyType = 1;
  271. remoteGlobalIDString = BEC567300761D90400A33029;
  272. remoteInfo = testjoystick;
  273. };
  274. 001799731074403E00F5D044 /* PBXContainerItemProxy */ = {
  275. isa = PBXContainerItemProxy;
  276. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  277. proxyType = 1;
  278. remoteGlobalIDString = BEC5673D0761D90400A33029;
  279. remoteInfo = testkeys;
  280. };
  281. 001799751074403E00F5D044 /* PBXContainerItemProxy */ = {
  282. isa = PBXContainerItemProxy;
  283. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  284. proxyType = 1;
  285. remoteGlobalIDString = 001797B8107433C600F5D044;
  286. remoteInfo = testloadso;
  287. };
  288. 001799771074403E00F5D044 /* PBXContainerItemProxy */ = {
  289. isa = PBXContainerItemProxy;
  290. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  291. proxyType = 1;
  292. remoteGlobalIDString = BEC5674A0761D90400A33029;
  293. remoteInfo = testlock;
  294. };
  295. 0017997B1074403E00F5D044 /* PBXContainerItemProxy */ = {
  296. isa = PBXContainerItemProxy;
  297. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  298. proxyType = 1;
  299. remoteGlobalIDString = 001797FA1074355200F5D044;
  300. remoteInfo = testmultiaudio;
  301. };
  302. 0017997F1074403E00F5D044 /* PBXContainerItemProxy */ = {
  303. isa = PBXContainerItemProxy;
  304. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  305. proxyType = 1;
  306. remoteGlobalIDString = 001798781074392D00F5D044;
  307. remoteInfo = testnativex11;
  308. };
  309. 001799831074403E00F5D044 /* PBXContainerItemProxy */ = {
  310. isa = PBXContainerItemProxy;
  311. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  312. proxyType = 1;
  313. remoteGlobalIDString = 002F343C09CA1FB300EBEB88;
  314. remoteInfo = testoverlay;
  315. };
  316. 001799871074403E00F5D044 /* PBXContainerItemProxy */ = {
  317. isa = PBXContainerItemProxy;
  318. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  319. proxyType = 1;
  320. remoteGlobalIDString = 002F345909CA204F00EBEB88;
  321. remoteInfo = testplatform;
  322. };
  323. 001799891074403E00F5D044 /* PBXContainerItemProxy */ = {
  324. isa = PBXContainerItemProxy;
  325. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  326. proxyType = 1;
  327. remoteGlobalIDString = 0017989D107439DF00F5D044;
  328. remoteInfo = testpower;
  329. };
  330. 0017998B1074403E00F5D044 /* PBXContainerItemProxy */ = {
  331. isa = PBXContainerItemProxy;
  332. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  333. proxyType = 1;
  334. remoteGlobalIDString = 001798DA10743BEC00F5D044;
  335. remoteInfo = testresample;
  336. };
  337. 0017998D1074403E00F5D044 /* PBXContainerItemProxy */ = {
  338. isa = PBXContainerItemProxy;
  339. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  340. proxyType = 1;
  341. remoteGlobalIDString = BEC567720761D90500A33029;
  342. remoteInfo = testsem;
  343. };
  344. 001799911074403E00F5D044 /* PBXContainerItemProxy */ = {
  345. isa = PBXContainerItemProxy;
  346. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  347. proxyType = 1;
  348. remoteGlobalIDString = 001798FE10743F1000F5D044;
  349. remoteInfo = testsprite;
  350. };
  351. 001799931074403E00F5D044 /* PBXContainerItemProxy */ = {
  352. isa = PBXContainerItemProxy;
  353. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  354. proxyType = 1;
  355. remoteGlobalIDString = BEC5678D0761D90500A33029;
  356. remoteInfo = testtimer;
  357. };
  358. 001799951074403E00F5D044 /* PBXContainerItemProxy */ = {
  359. isa = PBXContainerItemProxy;
  360. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  361. proxyType = 1;
  362. remoteGlobalIDString = BEC567A70761D90500A33029;
  363. remoteInfo = testversion;
  364. };
  365. 0017999D1074403E00F5D044 /* PBXContainerItemProxy */ = {
  366. isa = PBXContainerItemProxy;
  367. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  368. proxyType = 1;
  369. remoteGlobalIDString = 0017992010743FB700F5D044;
  370. remoteInfo = testwm;
  371. };
  372. 001799A11074403E00F5D044 /* PBXContainerItemProxy */ = {
  373. isa = PBXContainerItemProxy;
  374. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  375. proxyType = 1;
  376. remoteGlobalIDString = BEC567EA0761D90600A33029;
  377. remoteInfo = torturethread;
  378. };
  379. 003FA642093FFD41000C53B3 /* PBXContainerItemProxy */ = {
  380. isa = PBXContainerItemProxy;
  381. containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */;
  382. proxyType = 2;
  383. remoteGlobalIDString = BECDF66C0761BA81005FE872;
  384. remoteInfo = Framework;
  385. };
  386. 003FA644093FFD41000C53B3 /* PBXContainerItemProxy */ = {
  387. isa = PBXContainerItemProxy;
  388. containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */;
  389. proxyType = 2;
  390. remoteGlobalIDString = BECDF6B30761BA81005FE872;
  391. remoteInfo = "Static Library";
  392. };
  393. 003FA648093FFD41000C53B3 /* PBXContainerItemProxy */ = {
  394. isa = PBXContainerItemProxy;
  395. containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */;
  396. proxyType = 2;
  397. remoteGlobalIDString = BECDF6BE0761BA81005FE872;
  398. remoteInfo = "Standard DMG";
  399. };
  400. DB0F490417CA5249008798C5 /* PBXContainerItemProxy */ = {
  401. isa = PBXContainerItemProxy;
  402. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  403. proxyType = 1;
  404. remoteGlobalIDString = DB0F48D917CA51E5008798C5;
  405. remoteInfo = testdrawchessboard;
  406. };
  407. DB0F490617CA5249008798C5 /* PBXContainerItemProxy */ = {
  408. isa = PBXContainerItemProxy;
  409. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  410. proxyType = 1;
  411. remoteGlobalIDString = DB0F48EF17CA5212008798C5;
  412. remoteInfo = testfilesystem;
  413. };
  414. DB166D6D16A1CEAA00A1396C /* PBXContainerItemProxy */ = {
  415. isa = PBXContainerItemProxy;
  416. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  417. proxyType = 1;
  418. remoteGlobalIDString = BBFC08B7164C6862003E6A99;
  419. remoteInfo = testgamepad;
  420. };
  421. DB166D6F16A1CEAF00A1396C /* PBXContainerItemProxy */ = {
  422. isa = PBXContainerItemProxy;
  423. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  424. proxyType = 1;
  425. remoteGlobalIDString = 4537749112091504002F0F45;
  426. remoteInfo = testshape;
  427. };
  428. DB166DD816A1D38900A1396C /* PBXContainerItemProxy */ = {
  429. isa = PBXContainerItemProxy;
  430. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  431. proxyType = 1;
  432. remoteGlobalIDString = DB166DC416A1D36A00A1396C;
  433. remoteInfo = testmessage;
  434. };
  435. DB166DF116A1D53700A1396C /* PBXContainerItemProxy */ = {
  436. isa = PBXContainerItemProxy;
  437. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  438. proxyType = 1;
  439. remoteGlobalIDString = DB166DDC16A1D50C00A1396C;
  440. remoteInfo = testrelative;
  441. };
  442. DB166E0816A1D5A400A1396C /* PBXContainerItemProxy */ = {
  443. isa = PBXContainerItemProxy;
  444. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  445. proxyType = 1;
  446. remoteGlobalIDString = DB166DF316A1D57C00A1396C;
  447. remoteInfo = testrendercopyex;
  448. };
  449. DB166E1F16A1D5D000A1396C /* PBXContainerItemProxy */ = {
  450. isa = PBXContainerItemProxy;
  451. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  452. proxyType = 1;
  453. remoteGlobalIDString = DB166E0A16A1D5AD00A1396C;
  454. remoteInfo = testrendertarget;
  455. };
  456. DB166E3A16A1D65A00A1396C /* PBXContainerItemProxy */ = {
  457. isa = PBXContainerItemProxy;
  458. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  459. proxyType = 1;
  460. remoteGlobalIDString = DB166E2716A1D64D00A1396C;
  461. remoteInfo = testrumble;
  462. };
  463. DB166E5516A1D6B800A1396C /* PBXContainerItemProxy */ = {
  464. isa = PBXContainerItemProxy;
  465. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  466. proxyType = 1;
  467. remoteGlobalIDString = DB166E3D16A1D69000A1396C;
  468. remoteInfo = testscale;
  469. };
  470. DB166E6B16A1D72000A1396C /* PBXContainerItemProxy */ = {
  471. isa = PBXContainerItemProxy;
  472. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  473. proxyType = 1;
  474. remoteGlobalIDString = DB166E5716A1D6F300A1396C;
  475. remoteInfo = testshader;
  476. };
  477. DB166E9516A1D7CD00A1396C /* PBXContainerItemProxy */ = {
  478. isa = PBXContainerItemProxy;
  479. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  480. proxyType = 1;
  481. remoteGlobalIDString = DB166E6D16A1D78400A1396C;
  482. remoteInfo = testspriteminimal;
  483. };
  484. DB166E9716A1D7CF00A1396C /* PBXContainerItemProxy */ = {
  485. isa = PBXContainerItemProxy;
  486. containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
  487. proxyType = 1;
  488. remoteGlobalIDString = DB166E8016A1D78C00A1396C;
  489. remoteInfo = teststreaming;
  490. };
  491. DB1D40D617B3F30D00D74CFC /* PBXContainerItemProxy */ = {
  492. isa = PBXContainerItemProxy;
  493. containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */;
  494. proxyType = 2;
  495. remoteGlobalIDString = DB31407717554B71006C0E22;
  496. remoteInfo = "Shared Library";
  497. };
  498. F3C17C5C28E3FB2900E1A26D /* PBXContainerItemProxy */ = {
  499. isa = PBXContainerItemProxy;
  500. containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */;
  501. proxyType = 2;
  502. remoteGlobalIDString = A7D88B5423E2437C00DCD162;
  503. remoteInfo = "Framework-iOS";
  504. };
  505. F3C17C5E28E3FB2900E1A26D /* PBXContainerItemProxy */ = {
  506. isa = PBXContainerItemProxy;
  507. containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */;
  508. proxyType = 2;
  509. remoteGlobalIDString = A7D88D1523E24BED00DCD162;
  510. remoteInfo = "Framework-tvOS";
  511. };
  512. F3C17C6028E3FB2900E1A26D /* PBXContainerItemProxy */ = {
  513. isa = PBXContainerItemProxy;
  514. containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */;
  515. proxyType = 2;
  516. remoteGlobalIDString = E2D187CF28A5673500D2B4F1;
  517. remoteInfo = "xcFramework-iOS";
  518. };
  519. F3C17C6228E3FB2900E1A26D /* PBXContainerItemProxy */ = {
  520. isa = PBXContainerItemProxy;
  521. containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */;
  522. proxyType = 2;
  523. remoteGlobalIDString = A7D88E5423E24D3B00DCD162;
  524. remoteInfo = "Static Library-iOS";
  525. };
  526. F3C17C6428E3FB2900E1A26D /* PBXContainerItemProxy */ = {
  527. isa = PBXContainerItemProxy;
  528. containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */;
  529. proxyType = 2;
  530. remoteGlobalIDString = A769B23D23E259AE00872273;
  531. remoteInfo = "Static Library-tvOS";
  532. };
  533. F3C17C6628E3FB2900E1A26D /* PBXContainerItemProxy */ = {
  534. isa = PBXContainerItemProxy;
  535. containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */;
  536. proxyType = 2;
  537. remoteGlobalIDString = A75FCEB323E25AB700529352;
  538. remoteInfo = "Shared Library-iOS";
  539. };
  540. F3C17C6828E3FB2900E1A26D /* PBXContainerItemProxy */ = {
  541. isa = PBXContainerItemProxy;
  542. containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */;
  543. proxyType = 2;
  544. remoteGlobalIDString = A75FD06C23E25AC700529352;
  545. remoteInfo = "Shared Library-tvOS";
  546. };
  547. /* End PBXContainerItemProxy section */
  548. /* Begin PBXCopyFilesBuildPhase section */
  549. 00794E6409D2084F003FC8A1 /* CopyFiles */ = {
  550. isa = PBXCopyFilesBuildPhase;
  551. buildActionMask = 2147483647;
  552. dstPath = "";
  553. dstSubfolderSpec = 7;
  554. files = (
  555. 00794E6609D20865003FC8A1 /* sample.wav in CopyFiles */,
  556. );
  557. runOnlyForDeploymentPostprocessing = 0;
  558. };
  559. 00794EEC09D2371F003FC8A1 /* CopyFiles */ = {
  560. isa = PBXCopyFilesBuildPhase;
  561. buildActionMask = 2147483647;
  562. dstPath = "";
  563. dstSubfolderSpec = 7;
  564. files = (
  565. 00794EF009D23739003FC8A1 /* utf8.txt in CopyFiles */,
  566. );
  567. runOnlyForDeploymentPostprocessing = 0;
  568. };
  569. 00794EF409D237C7003FC8A1 /* CopyFiles */ = {
  570. isa = PBXCopyFilesBuildPhase;
  571. buildActionMask = 2147483647;
  572. dstPath = "";
  573. dstSubfolderSpec = 7;
  574. files = (
  575. 00794EF709D237DE003FC8A1 /* moose.dat in CopyFiles */,
  576. );
  577. runOnlyForDeploymentPostprocessing = 0;
  578. };
  579. DB166DDA16A1D40F00A1396C /* CopyFiles */ = {
  580. isa = PBXCopyFilesBuildPhase;
  581. buildActionMask = 2147483647;
  582. dstPath = "";
  583. dstSubfolderSpec = 7;
  584. files = (
  585. DB166DDB16A1D42F00A1396C /* icon.bmp in CopyFiles */,
  586. );
  587. runOnlyForDeploymentPostprocessing = 0;
  588. };
  589. DB166E2116A1D5DF00A1396C /* CopyFiles */ = {
  590. isa = PBXCopyFilesBuildPhase;
  591. buildActionMask = 2147483647;
  592. dstPath = "";
  593. dstSubfolderSpec = 7;
  594. files = (
  595. DB166E2316A1D60B00A1396C /* icon.bmp in CopyFiles */,
  596. DB166E2216A1D5EC00A1396C /* sample.bmp in CopyFiles */,
  597. );
  598. runOnlyForDeploymentPostprocessing = 0;
  599. };
  600. DB166E2416A1D61000A1396C /* CopyFiles */ = {
  601. isa = PBXCopyFilesBuildPhase;
  602. buildActionMask = 2147483647;
  603. dstPath = "";
  604. dstSubfolderSpec = 7;
  605. files = (
  606. DB166E2516A1D61900A1396C /* icon.bmp in CopyFiles */,
  607. DB166E2616A1D61900A1396C /* sample.bmp in CopyFiles */,
  608. );
  609. runOnlyForDeploymentPostprocessing = 0;
  610. };
  611. DB166E4C16A1D69000A1396C /* CopyFiles */ = {
  612. isa = PBXCopyFilesBuildPhase;
  613. buildActionMask = 2147483647;
  614. dstPath = "";
  615. dstSubfolderSpec = 7;
  616. files = (
  617. DB166E4D16A1D69000A1396C /* icon.bmp in CopyFiles */,
  618. DB166E4E16A1D69000A1396C /* sample.bmp in CopyFiles */,
  619. );
  620. runOnlyForDeploymentPostprocessing = 0;
  621. };
  622. DB166E9916A1D7EE00A1396C /* CopyFiles */ = {
  623. isa = PBXCopyFilesBuildPhase;
  624. buildActionMask = 2147483647;
  625. dstPath = "";
  626. dstSubfolderSpec = 7;
  627. files = (
  628. DB166E9A16A1D7F700A1396C /* moose.dat in CopyFiles */,
  629. );
  630. runOnlyForDeploymentPostprocessing = 0;
  631. };
  632. DB166E9B16A1D7FC00A1396C /* CopyFiles */ = {
  633. isa = PBXCopyFilesBuildPhase;
  634. buildActionMask = 2147483647;
  635. dstPath = "";
  636. dstSubfolderSpec = 7;
  637. files = (
  638. DB166E9C16A1D80900A1396C /* icon.bmp in CopyFiles */,
  639. );
  640. runOnlyForDeploymentPostprocessing = 0;
  641. };
  642. DB166ECE16A1D85400A1396C /* CopyFiles */ = {
  643. isa = PBXCopyFilesBuildPhase;
  644. buildActionMask = 2147483647;
  645. dstPath = "";
  646. dstSubfolderSpec = 7;
  647. files = (
  648. DB166ED016A1D88100A1396C /* shapes in CopyFiles */,
  649. );
  650. runOnlyForDeploymentPostprocessing = 0;
  651. };
  652. DBEC54EC1A1A827C005B1EAB /* CopyFiles */ = {
  653. isa = PBXCopyFilesBuildPhase;
  654. buildActionMask = 2147483647;
  655. dstPath = "";
  656. dstSubfolderSpec = 7;
  657. files = (
  658. DBEC54ED1A1A828A005B1EAB /* axis.bmp in CopyFiles */,
  659. DBEC54EE1A1A828D005B1EAB /* button.bmp in CopyFiles */,
  660. DBEC54EF1A1A828F005B1EAB /* gamepadmap.bmp in CopyFiles */,
  661. F3C17C7628E40BA200E1A26D /* gamepadmap_back.bmp in CopyFiles */,
  662. );
  663. runOnlyForDeploymentPostprocessing = 0;
  664. };
  665. /* End PBXCopyFilesBuildPhase section */
  666. /* Begin PBXFileReference section */
  667. 0017958C10741F7900F5D044 /* testatomic */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testatomic; path = testatomic.app; sourceTree = BUILT_PRODUCTS_DIR; };
  668. 0017958F1074216E00F5D044 /* testatomic.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testatomic.c; sourceTree = "<group>"; };
  669. 001795AD107421BF00F5D044 /* testaudioinfo */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testaudioinfo; path = testaudioinfo.app; sourceTree = BUILT_PRODUCTS_DIR; };
  670. 001795B01074222D00F5D044 /* testaudioinfo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testaudioinfo.c; sourceTree = "<group>"; };
  671. 0017972110742F3200F5D044 /* testgl.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testgl.app; sourceTree = BUILT_PRODUCTS_DIR; };
  672. 0017972710742FB900F5D044 /* testgl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testgl.c; sourceTree = "<group>"; };
  673. 00179748107430D600F5D044 /* testhaptic */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testhaptic; path = testhaptic.app; sourceTree = BUILT_PRODUCTS_DIR; };
  674. 0017974E1074315700F5D044 /* testhaptic.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testhaptic.c; sourceTree = "<group>"; };
  675. 0017976E107431B300F5D044 /* testdraw */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testdraw; path = testdraw.app; sourceTree = BUILT_PRODUCTS_DIR; };
  676. 001797711074320D00F5D044 /* testdraw.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testdraw.c; sourceTree = "<group>"; };
  677. 0017978E107432AE00F5D044 /* testime */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testime; path = testime.app; sourceTree = BUILT_PRODUCTS_DIR; };
  678. 00179791107432FA00F5D044 /* testime.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testime.c; sourceTree = "<group>"; };
  679. 001797AE1074334C00F5D044 /* testintersections */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testintersections; path = testintersections.app; sourceTree = BUILT_PRODUCTS_DIR; };
  680. 001797B31074339C00F5D044 /* testintersections.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testintersections.c; sourceTree = "<group>"; };
  681. 001797D0107433C600F5D044 /* testloadso */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testloadso; path = testloadso.app; sourceTree = BUILT_PRODUCTS_DIR; };
  682. 001797D31074343E00F5D044 /* testloadso.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testloadso.c; sourceTree = "<group>"; };
  683. 001798121074355200F5D044 /* testmultiaudio */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testmultiaudio; path = testmultiaudio.app; sourceTree = BUILT_PRODUCTS_DIR; };
  684. 001798151074359B00F5D044 /* testmultiaudio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testmultiaudio.c; sourceTree = "<group>"; };
  685. 0017985A107436ED00F5D044 /* testnative.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testnative.c; sourceTree = "<group>"; };
  686. 0017985B107436ED00F5D044 /* testnative.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = testnative.h; sourceTree = "<group>"; };
  687. 0017985C107436ED00F5D044 /* testnativecocoa.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = testnativecocoa.m; sourceTree = "<group>"; };
  688. 00179872107438D000F5D044 /* testnativex11.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testnativex11.c; sourceTree = "<group>"; };
  689. 001798941074392D00F5D044 /* testnative.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testnative.app; sourceTree = BUILT_PRODUCTS_DIR; };
  690. 001798B5107439DF00F5D044 /* testpower */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testpower; path = testpower.app; sourceTree = BUILT_PRODUCTS_DIR; };
  691. 001798B910743A4900F5D044 /* testpower.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testpower.c; sourceTree = "<group>"; };
  692. 001798F210743BEC00F5D044 /* testresample */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testresample; path = testresample.app; sourceTree = BUILT_PRODUCTS_DIR; };
  693. 001798F910743E9200F5D044 /* testresample.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testresample.c; sourceTree = "<group>"; };
  694. 0017991610743F1000F5D044 /* testsprite */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testsprite; path = testsprite.app; sourceTree = BUILT_PRODUCTS_DIR; };
  695. 0017991910743F5300F5D044 /* testsprite.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testsprite.c; sourceTree = "<group>"; };
  696. 0017993810743FB700F5D044 /* testwm */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testwm; path = testwm.app; sourceTree = BUILT_PRODUCTS_DIR; };
  697. 0017993B10743FEF00F5D044 /* testwm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testwm.c; sourceTree = "<group>"; };
  698. 002F341209CA1BFF00EBEB88 /* testfile */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testfile; path = testfile.app; sourceTree = BUILT_PRODUCTS_DIR; };
  699. 002F341709CA1C5B00EBEB88 /* testfile.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = testfile.c; sourceTree = "<group>"; };
  700. 002F343109CA1F0300EBEB88 /* testiconv */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testiconv; path = testiconv.app; sourceTree = BUILT_PRODUCTS_DIR; };
  701. 002F343609CA1F6F00EBEB88 /* testiconv.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = testiconv.c; sourceTree = "<group>"; };
  702. 002F344D09CA1FB300EBEB88 /* testoverlay */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testoverlay; path = testoverlay.app; sourceTree = BUILT_PRODUCTS_DIR; };
  703. 002F345209CA201C00EBEB88 /* testoverlay.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = testoverlay.c; sourceTree = "<group>"; };
  704. 002F346A09CA204F00EBEB88 /* testplatform */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testplatform; path = testplatform.app; sourceTree = BUILT_PRODUCTS_DIR; };
  705. 002F346F09CA20A600EBEB88 /* testplatform.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = testplatform.c; sourceTree = "<group>"; };
  706. 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = SDL.xcodeproj; path = ../SDL/SDL.xcodeproj; sourceTree = SOURCE_ROOT; };
  707. 00794E5D09D20839003FC8A1 /* icon.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = icon.bmp; sourceTree = "<group>"; };
  708. 00794E5E09D20839003FC8A1 /* moose.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = moose.dat; sourceTree = "<group>"; };
  709. 00794E5F09D20839003FC8A1 /* picture.xbm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = picture.xbm; sourceTree = "<group>"; };
  710. 00794E6109D20839003FC8A1 /* sample.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = sample.bmp; sourceTree = "<group>"; };
  711. 00794E6209D20839003FC8A1 /* sample.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = sample.wav; sourceTree = "<group>"; };
  712. 00794E6309D20839003FC8A1 /* utf8.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = utf8.txt; sourceTree = "<group>"; };
  713. 083E4872006D84C97F000001 /* loopwave.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = loopwave.c; sourceTree = "<group>"; };
  714. 083E4878006D85357F000001 /* testerror.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = testerror.c; sourceTree = "<group>"; };
  715. 083E487E006D86A17F000001 /* testsem.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = testsem.c; sourceTree = "<group>"; };
  716. 083E4880006D86A17F000001 /* testtimer.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = testtimer.c; sourceTree = "<group>"; };
  717. 083E4882006D86A17F000001 /* testver.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = testver.c; sourceTree = "<group>"; };
  718. 083E4887006D86A17F000001 /* torturethread.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = torturethread.c; sourceTree = "<group>"; };
  719. 092D6D10FFB30A2C7F000001 /* checkkeys.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = checkkeys.c; sourceTree = "<group>"; };
  720. 092D6D58FFB311A97F000001 /* testthread.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = testthread.c; sourceTree = "<group>"; };
  721. 092D6D62FFB312AA7F000001 /* testjoystick.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = testjoystick.c; sourceTree = "<group>"; };
  722. 092D6D6CFFB313437F000001 /* testkeys.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = testkeys.c; sourceTree = "<group>"; };
  723. 092D6D75FFB313BB7F000001 /* testlock.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = testlock.c; sourceTree = "<group>"; };
  724. 4537749212091504002F0F45 /* testshape */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testshape; path = testshape.app; sourceTree = BUILT_PRODUCTS_DIR; };
  725. 453774A4120915E3002F0F45 /* testshape.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testshape.c; sourceTree = "<group>"; };
  726. 66E88E8A203B778F0004D44E /* testyuv_cvt.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testyuv_cvt.c; sourceTree = "<group>"; };
  727. AAF02FF41F90089800B9A9FB /* SDL_test_memory.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_test_memory.c; sourceTree = "<group>"; };
  728. BBFC088E164C6820003E6A99 /* testgamepad.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testgamepad.c; sourceTree = "<group>"; };
  729. BBFC08CD164C6862003E6A99 /* testgamepad */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testgamepad; path = testgamepad.app; sourceTree = BUILT_PRODUCTS_DIR; };
  730. BEC566B60761D90300A33029 /* checkkeys */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = checkkeys; path = checkkeys.app; sourceTree = BUILT_PRODUCTS_DIR; };
  731. BEC566D10761D90300A33029 /* loopwave */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = loopwave; path = loopwave.app; sourceTree = BUILT_PRODUCTS_DIR; };
  732. BEC567060761D90400A33029 /* testerror */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testerror; path = testerror.app; sourceTree = BUILT_PRODUCTS_DIR; };
  733. BEC5672E0761D90400A33029 /* testthread */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testthread; path = testthread.app; sourceTree = BUILT_PRODUCTS_DIR; };
  734. BEC5673B0761D90400A33029 /* testjoystick */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testjoystick; path = testjoystick.app; sourceTree = BUILT_PRODUCTS_DIR; };
  735. BEC567480761D90400A33029 /* testkeys */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testkeys; path = testkeys.app; sourceTree = BUILT_PRODUCTS_DIR; };
  736. BEC567550761D90400A33029 /* testlock */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testlock; path = testlock.app; sourceTree = BUILT_PRODUCTS_DIR; };
  737. BEC5677D0761D90500A33029 /* testsem */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testsem; path = testsem.app; sourceTree = BUILT_PRODUCTS_DIR; };
  738. BEC567980761D90500A33029 /* testtimer */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testtimer; path = testtimer.app; sourceTree = BUILT_PRODUCTS_DIR; };
  739. BEC567B20761D90500A33029 /* testversion */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testversion; path = testversion.app; sourceTree = BUILT_PRODUCTS_DIR; };
  740. BEC567F50761D90600A33029 /* torturethread */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = torturethread; path = torturethread.app; sourceTree = BUILT_PRODUCTS_DIR; };
  741. DB0F48D717CA51D2008798C5 /* testdrawchessboard.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testdrawchessboard.c; sourceTree = "<group>"; };
  742. DB0F48D817CA51D2008798C5 /* testfilesystem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testfilesystem.c; sourceTree = "<group>"; };
  743. DB0F48EC17CA51E5008798C5 /* testdrawchessboard */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testdrawchessboard; path = testdrawchessboard.app; sourceTree = BUILT_PRODUCTS_DIR; };
  744. DB0F490117CA5212008798C5 /* testfilesystem */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testfilesystem; path = testfilesystem.app; sourceTree = BUILT_PRODUCTS_DIR; };
  745. DB166CBC16A1C74100A1396C /* testgles.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testgles.c; sourceTree = "<group>"; };
  746. DB166CBD16A1C74100A1396C /* testmessage.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testmessage.c; sourceTree = "<group>"; };
  747. DB166CBF16A1C74100A1396C /* testrelative.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testrelative.c; sourceTree = "<group>"; };
  748. DB166CC016A1C74100A1396C /* testrendercopyex.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testrendercopyex.c; sourceTree = "<group>"; };
  749. DB166CC116A1C74100A1396C /* testrendertarget.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testrendertarget.c; sourceTree = "<group>"; };
  750. DB166CC216A1C74100A1396C /* testrumble.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testrumble.c; sourceTree = "<group>"; };
  751. DB166CC316A1C74100A1396C /* testscale.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testscale.c; sourceTree = "<group>"; };
  752. DB166CC416A1C74100A1396C /* testshader.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testshader.c; sourceTree = "<group>"; };
  753. DB166CC516A1C74100A1396C /* testspriteminimal.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testspriteminimal.c; sourceTree = "<group>"; };
  754. DB166CC616A1C74100A1396C /* teststreaming.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = teststreaming.c; sourceTree = "<group>"; };
  755. DB166D7F16A1D12400A1396C /* libSDL_test.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libSDL_test.a; sourceTree = BUILT_PRODUCTS_DIR; };
  756. DB166D8416A1D1A500A1396C /* SDL_test_assert.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_test_assert.c; sourceTree = "<group>"; };
  757. DB166D8516A1D1A500A1396C /* SDL_test_common.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_test_common.c; sourceTree = "<group>"; };
  758. DB166D8616A1D1A500A1396C /* SDL_test_compare.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_test_compare.c; sourceTree = "<group>"; };
  759. DB166D8716A1D1A500A1396C /* SDL_test_crc32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_test_crc32.c; sourceTree = "<group>"; };
  760. DB166D8816A1D1A500A1396C /* SDL_test_font.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_test_font.c; sourceTree = "<group>"; };
  761. DB166D8916A1D1A500A1396C /* SDL_test_fuzzer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_test_fuzzer.c; sourceTree = "<group>"; };
  762. DB166D8A16A1D1A500A1396C /* SDL_test_harness.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_test_harness.c; sourceTree = "<group>"; };
  763. DB166D9016A1D1A500A1396C /* SDL_test_log.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_test_log.c; sourceTree = "<group>"; };
  764. DB166D9116A1D1A500A1396C /* SDL_test_md5.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_test_md5.c; sourceTree = "<group>"; };
  765. DB166D9216A1D1A500A1396C /* SDL_test_random.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_test_random.c; sourceTree = "<group>"; };
  766. DB166DD516A1D36A00A1396C /* testmessage */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testmessage; path = testmessage.app; sourceTree = BUILT_PRODUCTS_DIR; };
  767. DB166DEE16A1D50C00A1396C /* testrelative */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testrelative; path = testrelative.app; sourceTree = BUILT_PRODUCTS_DIR; };
  768. DB166E0516A1D57C00A1396C /* testrendercopyex */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testrendercopyex; path = testrendercopyex.app; sourceTree = BUILT_PRODUCTS_DIR; };
  769. DB166E1C16A1D5AD00A1396C /* testrendertarget */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testrendertarget; path = testrendertarget.app; sourceTree = BUILT_PRODUCTS_DIR; };
  770. DB166E3816A1D64D00A1396C /* testrumble */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testrumble; path = testrumble.app; sourceTree = BUILT_PRODUCTS_DIR; };
  771. DB166E5216A1D69000A1396C /* testscale */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testscale; path = testscale.app; sourceTree = BUILT_PRODUCTS_DIR; };
  772. DB166E6816A1D6F300A1396C /* testshader */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testshader; path = testshader.app; sourceTree = BUILT_PRODUCTS_DIR; };
  773. DB166E7E16A1D78400A1396C /* testspriteminimal */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testspriteminimal; path = testspriteminimal.app; sourceTree = BUILT_PRODUCTS_DIR; };
  774. DB166E9116A1D78C00A1396C /* teststreaming */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = teststreaming; path = teststreaming.app; sourceTree = BUILT_PRODUCTS_DIR; };
  775. DB166ECF16A1D87000A1396C /* shapes */ = {isa = PBXFileReference; lastKnownFileType = folder; path = shapes; sourceTree = "<group>"; };
  776. DB445EF818184B7000B306B0 /* testdropfile.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testdropfile.app; sourceTree = BUILT_PRODUCTS_DIR; };
  777. DB445EFA18184BB600B306B0 /* testdropfile.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testdropfile.c; sourceTree = "<group>"; };
  778. DB89957E18A19ABA0092407C /* testhotplug */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testhotplug; path = testhotplug.app; sourceTree = BUILT_PRODUCTS_DIR; };
  779. DB89958318A19B130092407C /* testhotplug.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testhotplug.c; sourceTree = "<group>"; };
  780. DBBC552C182831D700F3CA8D /* TestDropFile-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "TestDropFile-Info.plist"; sourceTree = SOURCE_ROOT; };
  781. DBEC54D11A1A811D005B1EAB /* gamepadmap.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = gamepadmap.c; sourceTree = "<group>"; };
  782. DBEC54D61A1A8145005B1EAB /* axis.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = axis.bmp; sourceTree = "<group>"; };
  783. DBEC54D71A1A8145005B1EAB /* button.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = button.bmp; sourceTree = "<group>"; };
  784. DBEC54D81A1A8145005B1EAB /* gamepadmap.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = gamepadmap.bmp; sourceTree = "<group>"; };
  785. DBEC54EA1A1A81C3005B1EAB /* gamepadmap */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = gamepadmap; path = gamepadmap.app; sourceTree = BUILT_PRODUCTS_DIR; };
  786. F3C17C6A28E3FD4400E1A26D /* config.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = config.xcconfig; sourceTree = "<group>"; };
  787. F3C17C7328E40ADE00E1A26D /* testutils.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testutils.c; sourceTree = "<group>"; };
  788. F3C17C7528E40B6B00E1A26D /* gamepadmap_back.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = gamepadmap_back.bmp; sourceTree = "<group>"; };
  789. F3C17CD628E416AC00E1A26D /* testgeometry.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testgeometry.c; sourceTree = "<group>"; };
  790. F3C17CDC28E416CF00E1A26D /* testgeometry.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testgeometry.app; sourceTree = BUILT_PRODUCTS_DIR; };
  791. /* End PBXFileReference section */
  792. /* Begin PBXFrameworksBuildPhase section */
  793. 0017957A10741F7900F5D044 /* Frameworks */ = {
  794. isa = PBXFrameworksBuildPhase;
  795. buildActionMask = 2147483647;
  796. files = (
  797. );
  798. runOnlyForDeploymentPostprocessing = 0;
  799. };
  800. 0017959B107421BF00F5D044 /* Frameworks */ = {
  801. isa = PBXFrameworksBuildPhase;
  802. buildActionMask = 2147483647;
  803. files = (
  804. );
  805. runOnlyForDeploymentPostprocessing = 0;
  806. };
  807. 0017970F10742F3200F5D044 /* Frameworks */ = {
  808. isa = PBXFrameworksBuildPhase;
  809. buildActionMask = 2147483647;
  810. files = (
  811. DB166DA316A1D1FA00A1396C /* libSDL_test.a in Frameworks */,
  812. );
  813. runOnlyForDeploymentPostprocessing = 0;
  814. };
  815. 00179736107430D600F5D044 /* Frameworks */ = {
  816. isa = PBXFrameworksBuildPhase;
  817. buildActionMask = 2147483647;
  818. files = (
  819. );
  820. runOnlyForDeploymentPostprocessing = 0;
  821. };
  822. 0017975C107431B300F5D044 /* Frameworks */ = {
  823. isa = PBXFrameworksBuildPhase;
  824. buildActionMask = 2147483647;
  825. files = (
  826. DB166DA216A1D1E900A1396C /* libSDL_test.a in Frameworks */,
  827. );
  828. runOnlyForDeploymentPostprocessing = 0;
  829. };
  830. 0017977C107432AE00F5D044 /* Frameworks */ = {
  831. isa = PBXFrameworksBuildPhase;
  832. buildActionMask = 2147483647;
  833. files = (
  834. DB166DA716A1D24D00A1396C /* libSDL_test.a in Frameworks */,
  835. );
  836. runOnlyForDeploymentPostprocessing = 0;
  837. };
  838. 0017979C1074334C00F5D044 /* Frameworks */ = {
  839. isa = PBXFrameworksBuildPhase;
  840. buildActionMask = 2147483647;
  841. files = (
  842. DB166DAA16A1D27700A1396C /* libSDL_test.a in Frameworks */,
  843. );
  844. runOnlyForDeploymentPostprocessing = 0;
  845. };
  846. 001797BE107433C600F5D044 /* Frameworks */ = {
  847. isa = PBXFrameworksBuildPhase;
  848. buildActionMask = 2147483647;
  849. files = (
  850. );
  851. runOnlyForDeploymentPostprocessing = 0;
  852. };
  853. 001798001074355200F5D044 /* Frameworks */ = {
  854. isa = PBXFrameworksBuildPhase;
  855. buildActionMask = 2147483647;
  856. files = (
  857. );
  858. runOnlyForDeploymentPostprocessing = 0;
  859. };
  860. 001798821074392D00F5D044 /* Frameworks */ = {
  861. isa = PBXFrameworksBuildPhase;
  862. buildActionMask = 2147483647;
  863. files = (
  864. );
  865. runOnlyForDeploymentPostprocessing = 0;
  866. };
  867. 001798A3107439DF00F5D044 /* Frameworks */ = {
  868. isa = PBXFrameworksBuildPhase;
  869. buildActionMask = 2147483647;
  870. files = (
  871. );
  872. runOnlyForDeploymentPostprocessing = 0;
  873. };
  874. 001798E010743BEC00F5D044 /* Frameworks */ = {
  875. isa = PBXFrameworksBuildPhase;
  876. buildActionMask = 2147483647;
  877. files = (
  878. );
  879. runOnlyForDeploymentPostprocessing = 0;
  880. };
  881. 0017990410743F1000F5D044 /* Frameworks */ = {
  882. isa = PBXFrameworksBuildPhase;
  883. buildActionMask = 2147483647;
  884. files = (
  885. DB166DAB16A1D27C00A1396C /* libSDL_test.a in Frameworks */,
  886. );
  887. runOnlyForDeploymentPostprocessing = 0;
  888. };
  889. 0017992610743FB700F5D044 /* Frameworks */ = {
  890. isa = PBXFrameworksBuildPhase;
  891. buildActionMask = 2147483647;
  892. files = (
  893. DB166DAC16A1D29000A1396C /* libSDL_test.a in Frameworks */,
  894. );
  895. runOnlyForDeploymentPostprocessing = 0;
  896. };
  897. 002F340809CA1BFF00EBEB88 /* Frameworks */ = {
  898. isa = PBXFrameworksBuildPhase;
  899. buildActionMask = 2147483647;
  900. files = (
  901. );
  902. runOnlyForDeploymentPostprocessing = 0;
  903. };
  904. 002F342709CA1F0300EBEB88 /* Frameworks */ = {
  905. isa = PBXFrameworksBuildPhase;
  906. buildActionMask = 2147483647;
  907. files = (
  908. );
  909. runOnlyForDeploymentPostprocessing = 0;
  910. };
  911. 002F344309CA1FB300EBEB88 /* Frameworks */ = {
  912. isa = PBXFrameworksBuildPhase;
  913. buildActionMask = 2147483647;
  914. files = (
  915. );
  916. runOnlyForDeploymentPostprocessing = 0;
  917. };
  918. 002F346009CA204F00EBEB88 /* Frameworks */ = {
  919. isa = PBXFrameworksBuildPhase;
  920. buildActionMask = 2147483647;
  921. files = (
  922. );
  923. runOnlyForDeploymentPostprocessing = 0;
  924. };
  925. 4537749012091504002F0F45 /* Frameworks */ = {
  926. isa = PBXFrameworksBuildPhase;
  927. buildActionMask = 2147483647;
  928. files = (
  929. DB166DA416A1D21700A1396C /* libSDL_test.a in Frameworks */,
  930. );
  931. runOnlyForDeploymentPostprocessing = 0;
  932. };
  933. BBFC08BE164C6862003E6A99 /* Frameworks */ = {
  934. isa = PBXFrameworksBuildPhase;
  935. buildActionMask = 2147483647;
  936. files = (
  937. );
  938. runOnlyForDeploymentPostprocessing = 0;
  939. };
  940. BEC566B20761D90300A33029 /* Frameworks */ = {
  941. isa = PBXFrameworksBuildPhase;
  942. buildActionMask = 2147483647;
  943. files = (
  944. F3C17C6B28E4022A00E1A26D /* libSDL_test.a in Frameworks */,
  945. );
  946. runOnlyForDeploymentPostprocessing = 0;
  947. };
  948. BEC566CC0761D90300A33029 /* Frameworks */ = {
  949. isa = PBXFrameworksBuildPhase;
  950. buildActionMask = 2147483647;
  951. files = (
  952. );
  953. runOnlyForDeploymentPostprocessing = 0;
  954. };
  955. BEC567020761D90300A33029 /* Frameworks */ = {
  956. isa = PBXFrameworksBuildPhase;
  957. buildActionMask = 2147483647;
  958. files = (
  959. );
  960. runOnlyForDeploymentPostprocessing = 0;
  961. };
  962. BEC5672A0761D90400A33029 /* Frameworks */ = {
  963. isa = PBXFrameworksBuildPhase;
  964. buildActionMask = 2147483647;
  965. files = (
  966. );
  967. runOnlyForDeploymentPostprocessing = 0;
  968. };
  969. BEC567370761D90400A33029 /* Frameworks */ = {
  970. isa = PBXFrameworksBuildPhase;
  971. buildActionMask = 2147483647;
  972. files = (
  973. );
  974. runOnlyForDeploymentPostprocessing = 0;
  975. };
  976. BEC567440761D90400A33029 /* Frameworks */ = {
  977. isa = PBXFrameworksBuildPhase;
  978. buildActionMask = 2147483647;
  979. files = (
  980. );
  981. runOnlyForDeploymentPostprocessing = 0;
  982. };
  983. BEC567510761D90400A33029 /* Frameworks */ = {
  984. isa = PBXFrameworksBuildPhase;
  985. buildActionMask = 2147483647;
  986. files = (
  987. );
  988. runOnlyForDeploymentPostprocessing = 0;
  989. };
  990. BEC567790761D90500A33029 /* Frameworks */ = {
  991. isa = PBXFrameworksBuildPhase;
  992. buildActionMask = 2147483647;
  993. files = (
  994. );
  995. runOnlyForDeploymentPostprocessing = 0;
  996. };
  997. BEC567940761D90500A33029 /* Frameworks */ = {
  998. isa = PBXFrameworksBuildPhase;
  999. buildActionMask = 2147483647;
  1000. files = (
  1001. );
  1002. runOnlyForDeploymentPostprocessing = 0;
  1003. };
  1004. BEC567AE0761D90500A33029 /* Frameworks */ = {
  1005. isa = PBXFrameworksBuildPhase;
  1006. buildActionMask = 2147483647;
  1007. files = (
  1008. );
  1009. runOnlyForDeploymentPostprocessing = 0;
  1010. };
  1011. BEC567F10761D90600A33029 /* Frameworks */ = {
  1012. isa = PBXFrameworksBuildPhase;
  1013. buildActionMask = 2147483647;
  1014. files = (
  1015. );
  1016. runOnlyForDeploymentPostprocessing = 0;
  1017. };
  1018. DB0F48DC17CA51E5008798C5 /* Frameworks */ = {
  1019. isa = PBXFrameworksBuildPhase;
  1020. buildActionMask = 2147483647;
  1021. files = (
  1022. );
  1023. runOnlyForDeploymentPostprocessing = 0;
  1024. };
  1025. DB0F48F217CA5212008798C5 /* Frameworks */ = {
  1026. isa = PBXFrameworksBuildPhase;
  1027. buildActionMask = 2147483647;
  1028. files = (
  1029. );
  1030. runOnlyForDeploymentPostprocessing = 0;
  1031. };
  1032. DB166D7C16A1D12400A1396C /* Frameworks */ = {
  1033. isa = PBXFrameworksBuildPhase;
  1034. buildActionMask = 2147483647;
  1035. files = (
  1036. );
  1037. runOnlyForDeploymentPostprocessing = 0;
  1038. };
  1039. DB166DC716A1D36A00A1396C /* Frameworks */ = {
  1040. isa = PBXFrameworksBuildPhase;
  1041. buildActionMask = 2147483647;
  1042. files = (
  1043. );
  1044. runOnlyForDeploymentPostprocessing = 0;
  1045. };
  1046. DB166DDF16A1D50C00A1396C /* Frameworks */ = {
  1047. isa = PBXFrameworksBuildPhase;
  1048. buildActionMask = 2147483647;
  1049. files = (
  1050. DB166DEA16A1D50C00A1396C /* libSDL_test.a in Frameworks */,
  1051. );
  1052. runOnlyForDeploymentPostprocessing = 0;
  1053. };
  1054. DB166DF616A1D57C00A1396C /* Frameworks */ = {
  1055. isa = PBXFrameworksBuildPhase;
  1056. buildActionMask = 2147483647;
  1057. files = (
  1058. DB166E0116A1D57C00A1396C /* libSDL_test.a in Frameworks */,
  1059. );
  1060. runOnlyForDeploymentPostprocessing = 0;
  1061. };
  1062. DB166E0D16A1D5AD00A1396C /* Frameworks */ = {
  1063. isa = PBXFrameworksBuildPhase;
  1064. buildActionMask = 2147483647;
  1065. files = (
  1066. DB166E1816A1D5AD00A1396C /* libSDL_test.a in Frameworks */,
  1067. );
  1068. runOnlyForDeploymentPostprocessing = 0;
  1069. };
  1070. DB166E2A16A1D64D00A1396C /* Frameworks */ = {
  1071. isa = PBXFrameworksBuildPhase;
  1072. buildActionMask = 2147483647;
  1073. files = (
  1074. );
  1075. runOnlyForDeploymentPostprocessing = 0;
  1076. };
  1077. DB166E4016A1D69000A1396C /* Frameworks */ = {
  1078. isa = PBXFrameworksBuildPhase;
  1079. buildActionMask = 2147483647;
  1080. files = (
  1081. DB166E4B16A1D69000A1396C /* libSDL_test.a in Frameworks */,
  1082. );
  1083. runOnlyForDeploymentPostprocessing = 0;
  1084. };
  1085. DB166E5A16A1D6F300A1396C /* Frameworks */ = {
  1086. isa = PBXFrameworksBuildPhase;
  1087. buildActionMask = 2147483647;
  1088. files = (
  1089. );
  1090. runOnlyForDeploymentPostprocessing = 0;
  1091. };
  1092. DB166E7016A1D78400A1396C /* Frameworks */ = {
  1093. isa = PBXFrameworksBuildPhase;
  1094. buildActionMask = 2147483647;
  1095. files = (
  1096. );
  1097. runOnlyForDeploymentPostprocessing = 0;
  1098. };
  1099. DB166E8316A1D78C00A1396C /* Frameworks */ = {
  1100. isa = PBXFrameworksBuildPhase;
  1101. buildActionMask = 2147483647;
  1102. files = (
  1103. );
  1104. runOnlyForDeploymentPostprocessing = 0;
  1105. };
  1106. DB445EE918184B7000B306B0 /* Frameworks */ = {
  1107. isa = PBXFrameworksBuildPhase;
  1108. buildActionMask = 2147483647;
  1109. files = (
  1110. DB445EF418184B7000B306B0 /* libSDL_test.a in Frameworks */,
  1111. );
  1112. runOnlyForDeploymentPostprocessing = 0;
  1113. };
  1114. DB89957018A19ABA0092407C /* Frameworks */ = {
  1115. isa = PBXFrameworksBuildPhase;
  1116. buildActionMask = 2147483647;
  1117. files = (
  1118. );
  1119. runOnlyForDeploymentPostprocessing = 0;
  1120. };
  1121. DBEC54DC1A1A81C3005B1EAB /* Frameworks */ = {
  1122. isa = PBXFrameworksBuildPhase;
  1123. buildActionMask = 2147483647;
  1124. files = (
  1125. );
  1126. runOnlyForDeploymentPostprocessing = 0;
  1127. };
  1128. F3C17CD928E416CF00E1A26D /* Frameworks */ = {
  1129. isa = PBXFrameworksBuildPhase;
  1130. buildActionMask = 2147483647;
  1131. files = (
  1132. F3C17CED28E417F400E1A26D /* libSDL_test.a in Frameworks */,
  1133. );
  1134. runOnlyForDeploymentPostprocessing = 0;
  1135. };
  1136. /* End PBXFrameworksBuildPhase section */
  1137. /* Begin PBXGroup section */
  1138. 003FA63B093FFD41000C53B3 /* Products */ = {
  1139. isa = PBXGroup;
  1140. children = (
  1141. 003FA643093FFD41000C53B3 /* SDL3.framework */,
  1142. F3C17C5D28E3FB2900E1A26D /* SDL3.framework */,
  1143. F3C17C5F28E3FB2900E1A26D /* SDL3.framework */,
  1144. F3C17C6128E3FB2900E1A26D /* SDL3.framework */,
  1145. 003FA645093FFD41000C53B3 /* libSDL3.a */,
  1146. F3C17C6328E3FB2900E1A26D /* libSDL3.a */,
  1147. F3C17C6528E3FB2900E1A26D /* libSDL3.a */,
  1148. DB1D40D717B3F30D00D74CFC /* libSDL3.dylib */,
  1149. F3C17C6728E3FB2900E1A26D /* libSDL3.dylib */,
  1150. F3C17C6928E3FB2900E1A26D /* libSDL3.dylib */,
  1151. 003FA649093FFD41000C53B3 /* SDL3 */,
  1152. );
  1153. name = Products;
  1154. sourceTree = "<group>";
  1155. };
  1156. 00794E4609D207B4003FC8A1 /* Resources */ = {
  1157. isa = PBXGroup;
  1158. children = (
  1159. DBEC54D61A1A8145005B1EAB /* axis.bmp */,
  1160. DBEC54D71A1A8145005B1EAB /* button.bmp */,
  1161. F3C17C7528E40B6B00E1A26D /* gamepadmap_back.bmp */,
  1162. DBEC54D81A1A8145005B1EAB /* gamepadmap.bmp */,
  1163. 00794E5D09D20839003FC8A1 /* icon.bmp */,
  1164. 00794E5E09D20839003FC8A1 /* moose.dat */,
  1165. 00794E5F09D20839003FC8A1 /* picture.xbm */,
  1166. 00794E6109D20839003FC8A1 /* sample.bmp */,
  1167. 00794E6209D20839003FC8A1 /* sample.wav */,
  1168. DB166ECF16A1D87000A1396C /* shapes */,
  1169. DBBC552C182831D700F3CA8D /* TestDropFile-Info.plist */,
  1170. 00794E6309D20839003FC8A1 /* utf8.txt */,
  1171. );
  1172. name = Resources;
  1173. path = ../../test;
  1174. sourceTree = "<group>";
  1175. };
  1176. 08FB7794FE84155DC02AAC07 /* SDLTest */ = {
  1177. isa = PBXGroup;
  1178. children = (
  1179. F3C17C6A28E3FD4400E1A26D /* config.xcconfig */,
  1180. 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */,
  1181. 08FB7795FE84155DC02AAC07 /* Source */,
  1182. DB166D8316A1D17E00A1396C /* SDL_Test */,
  1183. 00794E4609D207B4003FC8A1 /* Resources */,
  1184. 1AB674ADFE9D54B511CA2CBB /* Products */,
  1185. );
  1186. comments = "I made these tests link against our \"default\" framework which includes X11 stuff. If you didn't install the X11 headers with Xcode, you might have problems building the SDL.framework (which is a dependency). You can swap the dependencies around to get around this, or you can modify the default SDL.framework target to not include X11 stuff. (Go into its target build options and remove all the Preprocessor macros.)\n\n\n\nWe are sort of in a half-way state at the moment. Going \"all-the-way\" means we copy the SDL.framework inside the app bundle so we can run the test without the step of the user \"installing\" the framework. But there is an oversight/bug in Xcode that doesn't correctly find the location of the framework when in an embedded/nested Xcode project. We could probably try to hack this with a shell script that checks multiple directories for existence, but this is messier and more work than I prefer, so I rather just wait for Apple to fix this. In the meantime...\n\nThe \"All\" target will build the SDL framework from the Xcode project. The other targets do not have this dependency set (for flexibility reasons in case we make changes). If you have not built the framework, you will probably be unable to link. You will either need to build the framework, or you need to add \"-framework SDL\" to the link options and make sure you have the SDL.framework installed somewhere where it can be seen (like /Library/Frameworks...I think we already set this one up.) \n\nTo run though, you should have a copy of the SDL.framework in /Library/Frameworks or ~/Library/Frameworks.\n\n\n\n\ntestgl and testdyngl need -DHAVE_OPENGL\ntestgl needs to link against OpenGL.framework\n\n";
  1187. name = SDLTest;
  1188. sourceTree = "<group>";
  1189. };
  1190. 08FB7795FE84155DC02AAC07 /* Source */ = {
  1191. isa = PBXGroup;
  1192. children = (
  1193. 092D6D10FFB30A2C7F000001 /* checkkeys.c */,
  1194. DBEC54D11A1A811D005B1EAB /* gamepadmap.c */,
  1195. 083E4872006D84C97F000001 /* loopwave.c */,
  1196. 0017958F1074216E00F5D044 /* testatomic.c */,
  1197. 001795B01074222D00F5D044 /* testaudioinfo.c */,
  1198. 001797711074320D00F5D044 /* testdraw.c */,
  1199. DB0F48D717CA51D2008798C5 /* testdrawchessboard.c */,
  1200. DB445EFA18184BB600B306B0 /* testdropfile.c */,
  1201. 083E4878006D85357F000001 /* testerror.c */,
  1202. 002F341709CA1C5B00EBEB88 /* testfile.c */,
  1203. DB0F48D817CA51D2008798C5 /* testfilesystem.c */,
  1204. BBFC088E164C6820003E6A99 /* testgamepad.c */,
  1205. F3C17CD628E416AC00E1A26D /* testgeometry.c */,
  1206. 0017972710742FB900F5D044 /* testgl.c */,
  1207. DB166CBC16A1C74100A1396C /* testgles.c */,
  1208. 0017974E1074315700F5D044 /* testhaptic.c */,
  1209. DB89958318A19B130092407C /* testhotplug.c */,
  1210. 002F343609CA1F6F00EBEB88 /* testiconv.c */,
  1211. 00179791107432FA00F5D044 /* testime.c */,
  1212. 001797B31074339C00F5D044 /* testintersections.c */,
  1213. 092D6D62FFB312AA7F000001 /* testjoystick.c */,
  1214. 092D6D6CFFB313437F000001 /* testkeys.c */,
  1215. 001797D31074343E00F5D044 /* testloadso.c */,
  1216. 092D6D75FFB313BB7F000001 /* testlock.c */,
  1217. DB166CBD16A1C74100A1396C /* testmessage.c */,
  1218. 001798151074359B00F5D044 /* testmultiaudio.c */,
  1219. 0017985A107436ED00F5D044 /* testnative.c */,
  1220. 0017985B107436ED00F5D044 /* testnative.h */,
  1221. 0017985C107436ED00F5D044 /* testnativecocoa.m */,
  1222. 00179872107438D000F5D044 /* testnativex11.c */,
  1223. 002F345209CA201C00EBEB88 /* testoverlay.c */,
  1224. 002F346F09CA20A600EBEB88 /* testplatform.c */,
  1225. 001798B910743A4900F5D044 /* testpower.c */,
  1226. DB166CBF16A1C74100A1396C /* testrelative.c */,
  1227. DB166CC016A1C74100A1396C /* testrendercopyex.c */,
  1228. DB166CC116A1C74100A1396C /* testrendertarget.c */,
  1229. 001798F910743E9200F5D044 /* testresample.c */,
  1230. DB166CC216A1C74100A1396C /* testrumble.c */,
  1231. DB166CC316A1C74100A1396C /* testscale.c */,
  1232. 083E487E006D86A17F000001 /* testsem.c */,
  1233. DB166CC416A1C74100A1396C /* testshader.c */,
  1234. 453774A4120915E3002F0F45 /* testshape.c */,
  1235. 0017991910743F5300F5D044 /* testsprite.c */,
  1236. DB166CC516A1C74100A1396C /* testspriteminimal.c */,
  1237. DB166CC616A1C74100A1396C /* teststreaming.c */,
  1238. 092D6D58FFB311A97F000001 /* testthread.c */,
  1239. 083E4880006D86A17F000001 /* testtimer.c */,
  1240. F3C17C7328E40ADE00E1A26D /* testutils.c */,
  1241. 083E4882006D86A17F000001 /* testver.c */,
  1242. 0017993B10743FEF00F5D044 /* testwm.c */,
  1243. 66E88E8A203B778F0004D44E /* testyuv_cvt.c */,
  1244. 083E4887006D86A17F000001 /* torturethread.c */,
  1245. );
  1246. name = Source;
  1247. path = ../../test;
  1248. sourceTree = "<group>";
  1249. };
  1250. 1AB674ADFE9D54B511CA2CBB /* Products */ = {
  1251. isa = PBXGroup;
  1252. children = (
  1253. BEC566B60761D90300A33029 /* checkkeys */,
  1254. BEC566D10761D90300A33029 /* loopwave */,
  1255. BEC567060761D90400A33029 /* testerror */,
  1256. BEC5672E0761D90400A33029 /* testthread */,
  1257. BEC5673B0761D90400A33029 /* testjoystick */,
  1258. BEC567480761D90400A33029 /* testkeys */,
  1259. BEC567550761D90400A33029 /* testlock */,
  1260. BEC5677D0761D90500A33029 /* testsem */,
  1261. BEC567980761D90500A33029 /* testtimer */,
  1262. BEC567B20761D90500A33029 /* testversion */,
  1263. BEC567F50761D90600A33029 /* torturethread */,
  1264. 002F341209CA1BFF00EBEB88 /* testfile */,
  1265. 002F343109CA1F0300EBEB88 /* testiconv */,
  1266. 002F344D09CA1FB300EBEB88 /* testoverlay */,
  1267. 002F346A09CA204F00EBEB88 /* testplatform */,
  1268. 0017958C10741F7900F5D044 /* testatomic */,
  1269. 001795AD107421BF00F5D044 /* testaudioinfo */,
  1270. 0017972110742F3200F5D044 /* testgl.app */,
  1271. 00179748107430D600F5D044 /* testhaptic */,
  1272. 0017976E107431B300F5D044 /* testdraw */,
  1273. 0017978E107432AE00F5D044 /* testime */,
  1274. 001797AE1074334C00F5D044 /* testintersections */,
  1275. 001797D0107433C600F5D044 /* testloadso */,
  1276. 001798121074355200F5D044 /* testmultiaudio */,
  1277. 001798941074392D00F5D044 /* testnative.app */,
  1278. 001798B5107439DF00F5D044 /* testpower */,
  1279. 001798F210743BEC00F5D044 /* testresample */,
  1280. 0017991610743F1000F5D044 /* testsprite */,
  1281. 0017993810743FB700F5D044 /* testwm */,
  1282. 4537749212091504002F0F45 /* testshape */,
  1283. BBFC08CD164C6862003E6A99 /* testgamepad */,
  1284. DB166D7F16A1D12400A1396C /* libSDL_test.a */,
  1285. DB166DD516A1D36A00A1396C /* testmessage */,
  1286. DB166DEE16A1D50C00A1396C /* testrelative */,
  1287. DB166E0516A1D57C00A1396C /* testrendercopyex */,
  1288. DB166E1C16A1D5AD00A1396C /* testrendertarget */,
  1289. DB166E3816A1D64D00A1396C /* testrumble */,
  1290. DB166E5216A1D69000A1396C /* testscale */,
  1291. DB166E6816A1D6F300A1396C /* testshader */,
  1292. DB166E7E16A1D78400A1396C /* testspriteminimal */,
  1293. DB166E9116A1D78C00A1396C /* teststreaming */,
  1294. DB0F48EC17CA51E5008798C5 /* testdrawchessboard */,
  1295. DB0F490117CA5212008798C5 /* testfilesystem */,
  1296. DB89957E18A19ABA0092407C /* testhotplug */,
  1297. DB445EF818184B7000B306B0 /* testdropfile.app */,
  1298. DBEC54EA1A1A81C3005B1EAB /* gamepadmap */,
  1299. F3C17CDC28E416CF00E1A26D /* testgeometry.app */,
  1300. );
  1301. name = Products;
  1302. sourceTree = "<group>";
  1303. };
  1304. DB166D8316A1D17E00A1396C /* SDL_Test */ = {
  1305. isa = PBXGroup;
  1306. children = (
  1307. DB166D8416A1D1A500A1396C /* SDL_test_assert.c */,
  1308. DB166D8516A1D1A500A1396C /* SDL_test_common.c */,
  1309. DB166D8616A1D1A500A1396C /* SDL_test_compare.c */,
  1310. DB166D8716A1D1A500A1396C /* SDL_test_crc32.c */,
  1311. DB166D8816A1D1A500A1396C /* SDL_test_font.c */,
  1312. DB166D8916A1D1A500A1396C /* SDL_test_fuzzer.c */,
  1313. DB166D8A16A1D1A500A1396C /* SDL_test_harness.c */,
  1314. DB166D9016A1D1A500A1396C /* SDL_test_log.c */,
  1315. DB166D9116A1D1A500A1396C /* SDL_test_md5.c */,
  1316. AAF02FF41F90089800B9A9FB /* SDL_test_memory.c */,
  1317. DB166D9216A1D1A500A1396C /* SDL_test_random.c */,
  1318. );
  1319. name = SDL_Test;
  1320. path = ../../src/test;
  1321. sourceTree = "<group>";
  1322. };
  1323. /* End PBXGroup section */
  1324. /* Begin PBXHeadersBuildPhase section */
  1325. DB166D7D16A1D12400A1396C /* Headers */ = {
  1326. isa = PBXHeadersBuildPhase;
  1327. buildActionMask = 2147483647;
  1328. files = (
  1329. );
  1330. runOnlyForDeploymentPostprocessing = 0;
  1331. };
  1332. /* End PBXHeadersBuildPhase section */
  1333. /* Begin PBXNativeTarget section */
  1334. 0017957410741F7900F5D044 /* testatomic */ = {
  1335. isa = PBXNativeTarget;
  1336. buildConfigurationList = 0017958610741F7900F5D044 /* Build configuration list for PBXNativeTarget "testatomic" */;
  1337. buildPhases = (
  1338. 0017957910741F7900F5D044 /* Sources */,
  1339. 0017957A10741F7900F5D044 /* Frameworks */,
  1340. );
  1341. buildRules = (
  1342. );
  1343. dependencies = (
  1344. );
  1345. name = testatomic;
  1346. productName = testalpha;
  1347. productReference = 0017958C10741F7900F5D044 /* testatomic */;
  1348. productType = "com.apple.product-type.application";
  1349. };
  1350. 00179595107421BF00F5D044 /* testaudioinfo */ = {
  1351. isa = PBXNativeTarget;
  1352. buildConfigurationList = 001795A7107421BF00F5D044 /* Build configuration list for PBXNativeTarget "testaudioinfo" */;
  1353. buildPhases = (
  1354. 0017959A107421BF00F5D044 /* Sources */,
  1355. 0017959B107421BF00F5D044 /* Frameworks */,
  1356. );
  1357. buildRules = (
  1358. );
  1359. dependencies = (
  1360. );
  1361. name = testaudioinfo;
  1362. productName = testalpha;
  1363. productReference = 001795AD107421BF00F5D044 /* testaudioinfo */;
  1364. productType = "com.apple.product-type.application";
  1365. };
  1366. 0017970910742F3200F5D044 /* testgl */ = {
  1367. isa = PBXNativeTarget;
  1368. buildConfigurationList = 0017971B10742F3200F5D044 /* Build configuration list for PBXNativeTarget "testgl" */;
  1369. buildPhases = (
  1370. 0017970E10742F3200F5D044 /* Sources */,
  1371. 0017970F10742F3200F5D044 /* Frameworks */,
  1372. );
  1373. buildRules = (
  1374. );
  1375. dependencies = (
  1376. );
  1377. name = testgl;
  1378. productName = testalpha;
  1379. productReference = 0017972110742F3200F5D044 /* testgl.app */;
  1380. productType = "com.apple.product-type.application";
  1381. };
  1382. 00179730107430D600F5D044 /* testhaptic */ = {
  1383. isa = PBXNativeTarget;
  1384. buildConfigurationList = 00179742107430D600F5D044 /* Build configuration list for PBXNativeTarget "testhaptic" */;
  1385. buildPhases = (
  1386. 00179735107430D600F5D044 /* Sources */,
  1387. 00179736107430D600F5D044 /* Frameworks */,
  1388. );
  1389. buildRules = (
  1390. );
  1391. dependencies = (
  1392. );
  1393. name = testhaptic;
  1394. productName = testalpha;
  1395. productReference = 00179748107430D600F5D044 /* testhaptic */;
  1396. productType = "com.apple.product-type.application";
  1397. };
  1398. 00179756107431B300F5D044 /* testdraw */ = {
  1399. isa = PBXNativeTarget;
  1400. buildConfigurationList = 00179768107431B300F5D044 /* Build configuration list for PBXNativeTarget "testdraw" */;
  1401. buildPhases = (
  1402. 0017975B107431B300F5D044 /* Sources */,
  1403. 0017975C107431B300F5D044 /* Frameworks */,
  1404. );
  1405. buildRules = (
  1406. );
  1407. dependencies = (
  1408. );
  1409. name = testdraw;
  1410. productName = testalpha;
  1411. productReference = 0017976E107431B300F5D044 /* testdraw */;
  1412. productType = "com.apple.product-type.application";
  1413. };
  1414. 00179776107432AE00F5D044 /* testime */ = {
  1415. isa = PBXNativeTarget;
  1416. buildConfigurationList = 00179788107432AE00F5D044 /* Build configuration list for PBXNativeTarget "testime" */;
  1417. buildPhases = (
  1418. 0017977B107432AE00F5D044 /* Sources */,
  1419. 0017977C107432AE00F5D044 /* Frameworks */,
  1420. );
  1421. buildRules = (
  1422. );
  1423. dependencies = (
  1424. );
  1425. name = testime;
  1426. productName = testalpha;
  1427. productReference = 0017978E107432AE00F5D044 /* testime */;
  1428. productType = "com.apple.product-type.application";
  1429. };
  1430. 001797961074334C00F5D044 /* testintersections */ = {
  1431. isa = PBXNativeTarget;
  1432. buildConfigurationList = 001797A81074334C00F5D044 /* Build configuration list for PBXNativeTarget "testintersections" */;
  1433. buildPhases = (
  1434. 0017979B1074334C00F5D044 /* Sources */,
  1435. 0017979C1074334C00F5D044 /* Frameworks */,
  1436. );
  1437. buildRules = (
  1438. );
  1439. dependencies = (
  1440. );
  1441. name = testintersections;
  1442. productName = testalpha;
  1443. productReference = 001797AE1074334C00F5D044 /* testintersections */;
  1444. productType = "com.apple.product-type.application";
  1445. };
  1446. 001797B8107433C600F5D044 /* testloadso */ = {
  1447. isa = PBXNativeTarget;
  1448. buildConfigurationList = 001797CA107433C600F5D044 /* Build configuration list for PBXNativeTarget "testloadso" */;
  1449. buildPhases = (
  1450. 001797BD107433C600F5D044 /* Sources */,
  1451. 001797BE107433C600F5D044 /* Frameworks */,
  1452. );
  1453. buildRules = (
  1454. );
  1455. dependencies = (
  1456. );
  1457. name = testloadso;
  1458. productName = testalpha;
  1459. productReference = 001797D0107433C600F5D044 /* testloadso */;
  1460. productType = "com.apple.product-type.application";
  1461. };
  1462. 001797FA1074355200F5D044 /* testmultiaudio */ = {
  1463. isa = PBXNativeTarget;
  1464. buildConfigurationList = 0017980C1074355200F5D044 /* Build configuration list for PBXNativeTarget "testmultiaudio" */;
  1465. buildPhases = (
  1466. 001797FF1074355200F5D044 /* Sources */,
  1467. 001798001074355200F5D044 /* Frameworks */,
  1468. F3C17D3828E424B100E1A26D /* Resources */,
  1469. );
  1470. buildRules = (
  1471. );
  1472. dependencies = (
  1473. );
  1474. name = testmultiaudio;
  1475. productName = testalpha;
  1476. productReference = 001798121074355200F5D044 /* testmultiaudio */;
  1477. productType = "com.apple.product-type.application";
  1478. };
  1479. 001798781074392D00F5D044 /* testnative */ = {
  1480. isa = PBXNativeTarget;
  1481. buildConfigurationList = 0017988E1074392D00F5D044 /* Build configuration list for PBXNativeTarget "testnative" */;
  1482. buildPhases = (
  1483. 0017987E1074392D00F5D044 /* Sources */,
  1484. 001798821074392D00F5D044 /* Frameworks */,
  1485. DB166DDA16A1D40F00A1396C /* CopyFiles */,
  1486. );
  1487. buildRules = (
  1488. );
  1489. dependencies = (
  1490. );
  1491. name = testnative;
  1492. productName = testalpha;
  1493. productReference = 001798941074392D00F5D044 /* testnative.app */;
  1494. productType = "com.apple.product-type.application";
  1495. };
  1496. 0017989D107439DF00F5D044 /* testpower */ = {
  1497. isa = PBXNativeTarget;
  1498. buildConfigurationList = 001798AF107439DF00F5D044 /* Build configuration list for PBXNativeTarget "testpower" */;
  1499. buildPhases = (
  1500. 001798A2107439DF00F5D044 /* Sources */,
  1501. 001798A3107439DF00F5D044 /* Frameworks */,
  1502. );
  1503. buildRules = (
  1504. );
  1505. dependencies = (
  1506. );
  1507. name = testpower;
  1508. productName = testalpha;
  1509. productReference = 001798B5107439DF00F5D044 /* testpower */;
  1510. productType = "com.apple.product-type.application";
  1511. };
  1512. 001798DA10743BEC00F5D044 /* testresample */ = {
  1513. isa = PBXNativeTarget;
  1514. buildConfigurationList = 001798EC10743BEC00F5D044 /* Build configuration list for PBXNativeTarget "testresample" */;
  1515. buildPhases = (
  1516. 001798DF10743BEC00F5D044 /* Sources */,
  1517. 001798E010743BEC00F5D044 /* Frameworks */,
  1518. );
  1519. buildRules = (
  1520. );
  1521. dependencies = (
  1522. );
  1523. name = testresample;
  1524. productName = testalpha;
  1525. productReference = 001798F210743BEC00F5D044 /* testresample */;
  1526. productType = "com.apple.product-type.application";
  1527. };
  1528. 001798FE10743F1000F5D044 /* testsprite */ = {
  1529. isa = PBXNativeTarget;
  1530. buildConfigurationList = 0017991010743F1000F5D044 /* Build configuration list for PBXNativeTarget "testsprite" */;
  1531. buildPhases = (
  1532. 0017990310743F1000F5D044 /* Sources */,
  1533. 0017990410743F1000F5D044 /* Frameworks */,
  1534. F3C17D3A28E4252200E1A26D /* Resources */,
  1535. );
  1536. buildRules = (
  1537. );
  1538. dependencies = (
  1539. );
  1540. name = testsprite;
  1541. productName = testalpha;
  1542. productReference = 0017991610743F1000F5D044 /* testsprite */;
  1543. productType = "com.apple.product-type.application";
  1544. };
  1545. 0017992010743FB700F5D044 /* testwm */ = {
  1546. isa = PBXNativeTarget;
  1547. buildConfigurationList = 0017993210743FB700F5D044 /* Build configuration list for PBXNativeTarget "testwm" */;
  1548. buildPhases = (
  1549. 0017992510743FB700F5D044 /* Sources */,
  1550. 0017992610743FB700F5D044 /* Frameworks */,
  1551. );
  1552. buildRules = (
  1553. );
  1554. dependencies = (
  1555. );
  1556. name = testwm;
  1557. productName = testalpha;
  1558. productReference = 0017993810743FB700F5D044 /* testwm */;
  1559. productType = "com.apple.product-type.application";
  1560. };
  1561. 002F340109CA1BFF00EBEB88 /* testfile */ = {
  1562. isa = PBXNativeTarget;
  1563. buildConfigurationList = 002F340E09CA1BFF00EBEB88 /* Build configuration list for PBXNativeTarget "testfile" */;
  1564. buildPhases = (
  1565. 002F340709CA1BFF00EBEB88 /* Sources */,
  1566. 002F340809CA1BFF00EBEB88 /* Frameworks */,
  1567. );
  1568. buildRules = (
  1569. );
  1570. dependencies = (
  1571. );
  1572. name = testfile;
  1573. productName = testalpha;
  1574. productReference = 002F341209CA1BFF00EBEB88 /* testfile */;
  1575. productType = "com.apple.product-type.application";
  1576. };
  1577. 002F342009CA1F0300EBEB88 /* testiconv */ = {
  1578. isa = PBXNativeTarget;
  1579. buildConfigurationList = 002F342D09CA1F0300EBEB88 /* Build configuration list for PBXNativeTarget "testiconv" */;
  1580. buildPhases = (
  1581. 002F342609CA1F0300EBEB88 /* Sources */,
  1582. 002F342709CA1F0300EBEB88 /* Frameworks */,
  1583. 00794EEC09D2371F003FC8A1 /* CopyFiles */,
  1584. );
  1585. buildRules = (
  1586. );
  1587. dependencies = (
  1588. );
  1589. name = testiconv;
  1590. productName = testalpha;
  1591. productReference = 002F343109CA1F0300EBEB88 /* testiconv */;
  1592. productType = "com.apple.product-type.application";
  1593. };
  1594. 002F343C09CA1FB300EBEB88 /* testoverlay */ = {
  1595. isa = PBXNativeTarget;
  1596. buildConfigurationList = 002F344909CA1FB300EBEB88 /* Build configuration list for PBXNativeTarget "testoverlay" */;
  1597. buildPhases = (
  1598. 002F344209CA1FB300EBEB88 /* Sources */,
  1599. 002F344309CA1FB300EBEB88 /* Frameworks */,
  1600. 00794EF409D237C7003FC8A1 /* CopyFiles */,
  1601. );
  1602. buildRules = (
  1603. );
  1604. dependencies = (
  1605. );
  1606. name = testoverlay;
  1607. productName = testalpha;
  1608. productReference = 002F344D09CA1FB300EBEB88 /* testoverlay */;
  1609. productType = "com.apple.product-type.application";
  1610. };
  1611. 002F345909CA204F00EBEB88 /* testplatform */ = {
  1612. isa = PBXNativeTarget;
  1613. buildConfigurationList = 002F346609CA204F00EBEB88 /* Build configuration list for PBXNativeTarget "testplatform" */;
  1614. buildPhases = (
  1615. 002F345F09CA204F00EBEB88 /* Sources */,
  1616. 002F346009CA204F00EBEB88 /* Frameworks */,
  1617. );
  1618. buildRules = (
  1619. );
  1620. dependencies = (
  1621. );
  1622. name = testplatform;
  1623. productName = testalpha;
  1624. productReference = 002F346A09CA204F00EBEB88 /* testplatform */;
  1625. productType = "com.apple.product-type.application";
  1626. };
  1627. 4537749112091504002F0F45 /* testshape */ = {
  1628. isa = PBXNativeTarget;
  1629. buildConfigurationList = 4537749A1209150C002F0F45 /* Build configuration list for PBXNativeTarget "testshape" */;
  1630. buildPhases = (
  1631. 4537748F12091504002F0F45 /* Sources */,
  1632. 4537749012091504002F0F45 /* Frameworks */,
  1633. DB166ECE16A1D85400A1396C /* CopyFiles */,
  1634. );
  1635. buildRules = (
  1636. );
  1637. dependencies = (
  1638. );
  1639. name = testshape;
  1640. productName = testshape;
  1641. productReference = 4537749212091504002F0F45 /* testshape */;
  1642. productType = "com.apple.product-type.application";
  1643. };
  1644. BBFC08B7164C6862003E6A99 /* testgamepad */ = {
  1645. isa = PBXNativeTarget;
  1646. buildConfigurationList = BBFC08CA164C6862003E6A99 /* Build configuration list for PBXNativeTarget "testgamepad" */;
  1647. buildPhases = (
  1648. BBFC08BC164C6862003E6A99 /* Sources */,
  1649. BBFC08BE164C6862003E6A99 /* Frameworks */,
  1650. F3C17D3528E4242100E1A26D /* Resources */,
  1651. );
  1652. buildRules = (
  1653. );
  1654. dependencies = (
  1655. );
  1656. name = testgamepad;
  1657. productName = testjoystick;
  1658. productReference = BBFC08CD164C6862003E6A99 /* testgamepad */;
  1659. productType = "com.apple.product-type.application";
  1660. };
  1661. BEC566AB0761D90300A33029 /* checkkeys */ = {
  1662. isa = PBXNativeTarget;
  1663. buildConfigurationList = 001B593808BDB826006539E9 /* Build configuration list for PBXNativeTarget "checkkeys" */;
  1664. buildPhases = (
  1665. BEC566B00761D90300A33029 /* Sources */,
  1666. BEC566B20761D90300A33029 /* Frameworks */,
  1667. );
  1668. buildRules = (
  1669. );
  1670. dependencies = (
  1671. );
  1672. name = checkkeys;
  1673. productName = checkkeys;
  1674. productReference = BEC566B60761D90300A33029 /* checkkeys */;
  1675. productType = "com.apple.product-type.application";
  1676. };
  1677. BEC566C50761D90300A33029 /* loopwave */ = {
  1678. isa = PBXNativeTarget;
  1679. buildConfigurationList = 001B594008BDB826006539E9 /* Build configuration list for PBXNativeTarget "loopwave" */;
  1680. buildPhases = (
  1681. BEC566CA0761D90300A33029 /* Sources */,
  1682. BEC566CC0761D90300A33029 /* Frameworks */,
  1683. 00794E6409D2084F003FC8A1 /* CopyFiles */,
  1684. );
  1685. buildRules = (
  1686. );
  1687. dependencies = (
  1688. );
  1689. name = loopwave;
  1690. productName = loopwave;
  1691. productReference = BEC566D10761D90300A33029 /* loopwave */;
  1692. productType = "com.apple.product-type.application";
  1693. };
  1694. BEC566FB0761D90300A33029 /* testerror */ = {
  1695. isa = PBXNativeTarget;
  1696. buildConfigurationList = 001B595008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testerror" */;
  1697. buildPhases = (
  1698. BEC567000761D90300A33029 /* Sources */,
  1699. BEC567020761D90300A33029 /* Frameworks */,
  1700. );
  1701. buildRules = (
  1702. );
  1703. dependencies = (
  1704. );
  1705. name = testerror;
  1706. productName = testerror;
  1707. productReference = BEC567060761D90400A33029 /* testerror */;
  1708. productType = "com.apple.product-type.application";
  1709. };
  1710. BEC567230761D90400A33029 /* testthread */ = {
  1711. isa = PBXNativeTarget;
  1712. buildConfigurationList = 001B595C08BDB826006539E9 /* Build configuration list for PBXNativeTarget "testthread" */;
  1713. buildPhases = (
  1714. BEC567280761D90400A33029 /* Sources */,
  1715. BEC5672A0761D90400A33029 /* Frameworks */,
  1716. );
  1717. buildRules = (
  1718. );
  1719. dependencies = (
  1720. );
  1721. name = testthread;
  1722. productName = testthread;
  1723. productReference = BEC5672E0761D90400A33029 /* testthread */;
  1724. productType = "com.apple.product-type.application";
  1725. };
  1726. BEC567300761D90400A33029 /* testjoystick */ = {
  1727. isa = PBXNativeTarget;
  1728. buildConfigurationList = 001B596008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testjoystick" */;
  1729. buildPhases = (
  1730. BEC567350761D90400A33029 /* Sources */,
  1731. BEC567370761D90400A33029 /* Frameworks */,
  1732. );
  1733. buildRules = (
  1734. );
  1735. dependencies = (
  1736. );
  1737. name = testjoystick;
  1738. productName = testjoystick;
  1739. productReference = BEC5673B0761D90400A33029 /* testjoystick */;
  1740. productType = "com.apple.product-type.application";
  1741. };
  1742. BEC5673D0761D90400A33029 /* testkeys */ = {
  1743. isa = PBXNativeTarget;
  1744. buildConfigurationList = 001B596408BDB826006539E9 /* Build configuration list for PBXNativeTarget "testkeys" */;
  1745. buildPhases = (
  1746. BEC567420761D90400A33029 /* Sources */,
  1747. BEC567440761D90400A33029 /* Frameworks */,
  1748. );
  1749. buildRules = (
  1750. );
  1751. dependencies = (
  1752. );
  1753. name = testkeys;
  1754. productName = testkeys;
  1755. productReference = BEC567480761D90400A33029 /* testkeys */;
  1756. productType = "com.apple.product-type.application";
  1757. };
  1758. BEC5674A0761D90400A33029 /* testlock */ = {
  1759. isa = PBXNativeTarget;
  1760. buildConfigurationList = 001B596808BDB826006539E9 /* Build configuration list for PBXNativeTarget "testlock" */;
  1761. buildPhases = (
  1762. BEC5674F0761D90400A33029 /* Sources */,
  1763. BEC567510761D90400A33029 /* Frameworks */,
  1764. );
  1765. buildRules = (
  1766. );
  1767. dependencies = (
  1768. );
  1769. name = testlock;
  1770. productName = testlock;
  1771. productReference = BEC567550761D90400A33029 /* testlock */;
  1772. productType = "com.apple.product-type.application";
  1773. };
  1774. BEC567720761D90500A33029 /* testsem */ = {
  1775. isa = PBXNativeTarget;
  1776. buildConfigurationList = 001B597008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testsem" */;
  1777. buildPhases = (
  1778. BEC567770761D90500A33029 /* Sources */,
  1779. BEC567790761D90500A33029 /* Frameworks */,
  1780. );
  1781. buildRules = (
  1782. );
  1783. dependencies = (
  1784. );
  1785. name = testsem;
  1786. productName = testsem;
  1787. productReference = BEC5677D0761D90500A33029 /* testsem */;
  1788. productType = "com.apple.product-type.application";
  1789. };
  1790. BEC5678D0761D90500A33029 /* testtimer */ = {
  1791. isa = PBXNativeTarget;
  1792. buildConfigurationList = 001B597808BDB826006539E9 /* Build configuration list for PBXNativeTarget "testtimer" */;
  1793. buildPhases = (
  1794. BEC567920761D90500A33029 /* Sources */,
  1795. BEC567940761D90500A33029 /* Frameworks */,
  1796. );
  1797. buildRules = (
  1798. );
  1799. dependencies = (
  1800. );
  1801. name = testtimer;
  1802. productName = testtimer;
  1803. productReference = BEC567980761D90500A33029 /* testtimer */;
  1804. productType = "com.apple.product-type.application";
  1805. };
  1806. BEC567A70761D90500A33029 /* testversion */ = {
  1807. isa = PBXNativeTarget;
  1808. buildConfigurationList = 001B598008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testversion" */;
  1809. buildPhases = (
  1810. BEC567AC0761D90500A33029 /* Sources */,
  1811. BEC567AE0761D90500A33029 /* Frameworks */,
  1812. );
  1813. buildRules = (
  1814. );
  1815. dependencies = (
  1816. );
  1817. name = testversion;
  1818. productName = testversion;
  1819. productReference = BEC567B20761D90500A33029 /* testversion */;
  1820. productType = "com.apple.product-type.application";
  1821. };
  1822. BEC567EA0761D90600A33029 /* torturethread */ = {
  1823. isa = PBXNativeTarget;
  1824. buildConfigurationList = 001B599408BDB826006539E9 /* Build configuration list for PBXNativeTarget "torturethread" */;
  1825. buildPhases = (
  1826. BEC567EF0761D90600A33029 /* Sources */,
  1827. BEC567F10761D90600A33029 /* Frameworks */,
  1828. );
  1829. buildRules = (
  1830. );
  1831. dependencies = (
  1832. );
  1833. name = torturethread;
  1834. productName = torturethread;
  1835. productReference = BEC567F50761D90600A33029 /* torturethread */;
  1836. productType = "com.apple.product-type.application";
  1837. };
  1838. DB0F48D917CA51E5008798C5 /* testdrawchessboard */ = {
  1839. isa = PBXNativeTarget;
  1840. buildConfigurationList = DB0F48E917CA51E5008798C5 /* Build configuration list for PBXNativeTarget "testdrawchessboard" */;
  1841. buildPhases = (
  1842. DB0F48DA17CA51E5008798C5 /* Sources */,
  1843. DB0F48DC17CA51E5008798C5 /* Frameworks */,
  1844. );
  1845. buildRules = (
  1846. );
  1847. dependencies = (
  1848. );
  1849. name = testdrawchessboard;
  1850. productName = testalpha;
  1851. productReference = DB0F48EC17CA51E5008798C5 /* testdrawchessboard */;
  1852. productType = "com.apple.product-type.application";
  1853. };
  1854. DB0F48EF17CA5212008798C5 /* testfilesystem */ = {
  1855. isa = PBXNativeTarget;
  1856. buildConfigurationList = DB0F48FE17CA5212008798C5 /* Build configuration list for PBXNativeTarget "testfilesystem" */;
  1857. buildPhases = (
  1858. DB0F48F017CA5212008798C5 /* Sources */,
  1859. DB0F48F217CA5212008798C5 /* Frameworks */,
  1860. );
  1861. buildRules = (
  1862. );
  1863. dependencies = (
  1864. );
  1865. name = testfilesystem;
  1866. productName = testalpha;
  1867. productReference = DB0F490117CA5212008798C5 /* testfilesystem */;
  1868. productType = "com.apple.product-type.application";
  1869. };
  1870. DB166D7E16A1D12400A1396C /* SDL_test */ = {
  1871. isa = PBXNativeTarget;
  1872. buildConfigurationList = DB166D8016A1D12400A1396C /* Build configuration list for PBXNativeTarget "SDL_test" */;
  1873. buildPhases = (
  1874. DB166D7B16A1D12400A1396C /* Sources */,
  1875. DB166D7C16A1D12400A1396C /* Frameworks */,
  1876. DB166D7D16A1D12400A1396C /* Headers */,
  1877. );
  1878. buildRules = (
  1879. );
  1880. dependencies = (
  1881. );
  1882. name = SDL_test;
  1883. productName = SDL_test;
  1884. productReference = DB166D7F16A1D12400A1396C /* libSDL_test.a */;
  1885. productType = "com.apple.product-type.library.static";
  1886. };
  1887. DB166DC416A1D36A00A1396C /* testmessage */ = {
  1888. isa = PBXNativeTarget;
  1889. buildConfigurationList = DB166DD216A1D36A00A1396C /* Build configuration list for PBXNativeTarget "testmessage" */;
  1890. buildPhases = (
  1891. DB166DC516A1D36A00A1396C /* Sources */,
  1892. DB166DC716A1D36A00A1396C /* Frameworks */,
  1893. );
  1894. buildRules = (
  1895. );
  1896. dependencies = (
  1897. );
  1898. name = testmessage;
  1899. productName = testalpha;
  1900. productReference = DB166DD516A1D36A00A1396C /* testmessage */;
  1901. productType = "com.apple.product-type.application";
  1902. };
  1903. DB166DDC16A1D50C00A1396C /* testrelative */ = {
  1904. isa = PBXNativeTarget;
  1905. buildConfigurationList = DB166DEB16A1D50C00A1396C /* Build configuration list for PBXNativeTarget "testrelative" */;
  1906. buildPhases = (
  1907. DB166DDD16A1D50C00A1396C /* Sources */,
  1908. DB166DDF16A1D50C00A1396C /* Frameworks */,
  1909. );
  1910. buildRules = (
  1911. );
  1912. dependencies = (
  1913. );
  1914. name = testrelative;
  1915. productName = testalpha;
  1916. productReference = DB166DEE16A1D50C00A1396C /* testrelative */;
  1917. productType = "com.apple.product-type.application";
  1918. };
  1919. DB166DF316A1D57C00A1396C /* testrendercopyex */ = {
  1920. isa = PBXNativeTarget;
  1921. buildConfigurationList = DB166E0216A1D57C00A1396C /* Build configuration list for PBXNativeTarget "testrendercopyex" */;
  1922. buildPhases = (
  1923. DB166DF416A1D57C00A1396C /* Sources */,
  1924. DB166DF616A1D57C00A1396C /* Frameworks */,
  1925. DB166E2116A1D5DF00A1396C /* CopyFiles */,
  1926. );
  1927. buildRules = (
  1928. );
  1929. dependencies = (
  1930. );
  1931. name = testrendercopyex;
  1932. productName = testalpha;
  1933. productReference = DB166E0516A1D57C00A1396C /* testrendercopyex */;
  1934. productType = "com.apple.product-type.application";
  1935. };
  1936. DB166E0A16A1D5AD00A1396C /* testrendertarget */ = {
  1937. isa = PBXNativeTarget;
  1938. buildConfigurationList = DB166E1916A1D5AD00A1396C /* Build configuration list for PBXNativeTarget "testrendertarget" */;
  1939. buildPhases = (
  1940. DB166E0B16A1D5AD00A1396C /* Sources */,
  1941. DB166E0D16A1D5AD00A1396C /* Frameworks */,
  1942. DB166E2416A1D61000A1396C /* CopyFiles */,
  1943. );
  1944. buildRules = (
  1945. );
  1946. dependencies = (
  1947. );
  1948. name = testrendertarget;
  1949. productName = testalpha;
  1950. productReference = DB166E1C16A1D5AD00A1396C /* testrendertarget */;
  1951. productType = "com.apple.product-type.application";
  1952. };
  1953. DB166E2716A1D64D00A1396C /* testrumble */ = {
  1954. isa = PBXNativeTarget;
  1955. buildConfigurationList = DB166E3516A1D64D00A1396C /* Build configuration list for PBXNativeTarget "testrumble" */;
  1956. buildPhases = (
  1957. DB166E2816A1D64D00A1396C /* Sources */,
  1958. DB166E2A16A1D64D00A1396C /* Frameworks */,
  1959. );
  1960. buildRules = (
  1961. );
  1962. dependencies = (
  1963. );
  1964. name = testrumble;
  1965. productName = testalpha;
  1966. productReference = DB166E3816A1D64D00A1396C /* testrumble */;
  1967. productType = "com.apple.product-type.application";
  1968. };
  1969. DB166E3D16A1D69000A1396C /* testscale */ = {
  1970. isa = PBXNativeTarget;
  1971. buildConfigurationList = DB166E4F16A1D69000A1396C /* Build configuration list for PBXNativeTarget "testscale" */;
  1972. buildPhases = (
  1973. DB166E3E16A1D69000A1396C /* Sources */,
  1974. DB166E4016A1D69000A1396C /* Frameworks */,
  1975. DB166E4C16A1D69000A1396C /* CopyFiles */,
  1976. );
  1977. buildRules = (
  1978. );
  1979. dependencies = (
  1980. );
  1981. name = testscale;
  1982. productName = testalpha;
  1983. productReference = DB166E5216A1D69000A1396C /* testscale */;
  1984. productType = "com.apple.product-type.application";
  1985. };
  1986. DB166E5716A1D6F300A1396C /* testshader */ = {
  1987. isa = PBXNativeTarget;
  1988. buildConfigurationList = DB166E6516A1D6F300A1396C /* Build configuration list for PBXNativeTarget "testshader" */;
  1989. buildPhases = (
  1990. DB166E5816A1D6F300A1396C /* Sources */,
  1991. DB166E5A16A1D6F300A1396C /* Frameworks */,
  1992. );
  1993. buildRules = (
  1994. );
  1995. dependencies = (
  1996. );
  1997. name = testshader;
  1998. productName = testsem;
  1999. productReference = DB166E6816A1D6F300A1396C /* testshader */;
  2000. productType = "com.apple.product-type.application";
  2001. };
  2002. DB166E6D16A1D78400A1396C /* testspriteminimal */ = {
  2003. isa = PBXNativeTarget;
  2004. buildConfigurationList = DB166E7B16A1D78400A1396C /* Build configuration list for PBXNativeTarget "testspriteminimal" */;
  2005. buildPhases = (
  2006. DB166E6E16A1D78400A1396C /* Sources */,
  2007. DB166E7016A1D78400A1396C /* Frameworks */,
  2008. DB166E9B16A1D7FC00A1396C /* CopyFiles */,
  2009. );
  2010. buildRules = (
  2011. );
  2012. dependencies = (
  2013. );
  2014. name = testspriteminimal;
  2015. productName = testspriteminimal;
  2016. productReference = DB166E7E16A1D78400A1396C /* testspriteminimal */;
  2017. productType = "com.apple.product-type.application";
  2018. };
  2019. DB166E8016A1D78C00A1396C /* teststreaming */ = {
  2020. isa = PBXNativeTarget;
  2021. buildConfigurationList = DB166E8E16A1D78C00A1396C /* Build configuration list for PBXNativeTarget "teststreaming" */;
  2022. buildPhases = (
  2023. DB166E8116A1D78C00A1396C /* Sources */,
  2024. DB166E8316A1D78C00A1396C /* Frameworks */,
  2025. DB166E9916A1D7EE00A1396C /* CopyFiles */,
  2026. );
  2027. buildRules = (
  2028. );
  2029. dependencies = (
  2030. );
  2031. name = teststreaming;
  2032. productName = teststreaming;
  2033. productReference = DB166E9116A1D78C00A1396C /* teststreaming */;
  2034. productType = "com.apple.product-type.application";
  2035. };
  2036. DB445EE618184B7000B306B0 /* testdropfile */ = {
  2037. isa = PBXNativeTarget;
  2038. buildConfigurationList = DB445EF518184B7000B306B0 /* Build configuration list for PBXNativeTarget "testdropfile" */;
  2039. buildPhases = (
  2040. DB445EE718184B7000B306B0 /* Sources */,
  2041. DB445EE918184B7000B306B0 /* Frameworks */,
  2042. );
  2043. buildRules = (
  2044. );
  2045. dependencies = (
  2046. );
  2047. name = testdropfile;
  2048. productName = testdropfile;
  2049. productReference = DB445EF818184B7000B306B0 /* testdropfile.app */;
  2050. productType = "com.apple.product-type.application";
  2051. };
  2052. DB89956D18A19ABA0092407C /* testhotplug */ = {
  2053. isa = PBXNativeTarget;
  2054. buildConfigurationList = DB89957B18A19ABA0092407C /* Build configuration list for PBXNativeTarget "testhotplug" */;
  2055. buildPhases = (
  2056. DB89956E18A19ABA0092407C /* Sources */,
  2057. DB89957018A19ABA0092407C /* Frameworks */,
  2058. );
  2059. buildRules = (
  2060. );
  2061. dependencies = (
  2062. );
  2063. name = testhotplug;
  2064. productName = testalpha;
  2065. productReference = DB89957E18A19ABA0092407C /* testhotplug */;
  2066. productType = "com.apple.product-type.application";
  2067. };
  2068. DBEC54D91A1A81C3005B1EAB /* gamepadmap */ = {
  2069. isa = PBXNativeTarget;
  2070. buildConfigurationList = DBEC54E71A1A81C3005B1EAB /* Build configuration list for PBXNativeTarget "gamepadmap" */;
  2071. buildPhases = (
  2072. DBEC54DA1A1A81C3005B1EAB /* Sources */,
  2073. DBEC54DC1A1A81C3005B1EAB /* Frameworks */,
  2074. DBEC54EC1A1A827C005B1EAB /* CopyFiles */,
  2075. );
  2076. buildRules = (
  2077. );
  2078. dependencies = (
  2079. );
  2080. name = gamepadmap;
  2081. productName = checkkeys;
  2082. productReference = DBEC54EA1A1A81C3005B1EAB /* gamepadmap */;
  2083. productType = "com.apple.product-type.application";
  2084. };
  2085. F3C17CDB28E416CF00E1A26D /* testgeometry */ = {
  2086. isa = PBXNativeTarget;
  2087. buildConfigurationList = F3C17CE828E416D000E1A26D /* Build configuration list for PBXNativeTarget "testgeometry" */;
  2088. buildPhases = (
  2089. F3C17CD828E416CF00E1A26D /* Sources */,
  2090. F3C17CD928E416CF00E1A26D /* Frameworks */,
  2091. );
  2092. buildRules = (
  2093. );
  2094. dependencies = (
  2095. );
  2096. name = testgeometry;
  2097. productName = testgeometry;
  2098. productReference = F3C17CDC28E416CF00E1A26D /* testgeometry.app */;
  2099. productType = "com.apple.product-type.application";
  2100. };
  2101. /* End PBXNativeTarget section */
  2102. /* Begin PBXProject section */
  2103. 08FB7793FE84155DC02AAC07 /* Project object */ = {
  2104. isa = PBXProject;
  2105. attributes = {
  2106. LastSwiftUpdateCheck = 1400;
  2107. LastUpgradeCheck = 0420;
  2108. TargetAttributes = {
  2109. F3C17CDB28E416CF00E1A26D = {
  2110. CreatedOnToolsVersion = 14.0.1;
  2111. };
  2112. };
  2113. };
  2114. buildConfigurationList = 001B5A0C08BDB826006539E9 /* Build configuration list for PBXProject "SDLTest" */;
  2115. compatibilityVersion = "Xcode 3.2";
  2116. developmentRegion = English;
  2117. hasScannedForEncodings = 1;
  2118. knownRegions = (
  2119. English,
  2120. Japanese,
  2121. French,
  2122. German,
  2123. en,
  2124. Base,
  2125. );
  2126. mainGroup = 08FB7794FE84155DC02AAC07 /* SDLTest */;
  2127. projectDirPath = "";
  2128. projectReferences = (
  2129. {
  2130. ProductGroup = 003FA63B093FFD41000C53B3 /* Products */;
  2131. ProjectRef = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */;
  2132. },
  2133. );
  2134. projectRoot = "";
  2135. targets = (
  2136. BEC566920761D90300A33029 /* All */,
  2137. DB166D7E16A1D12400A1396C /* SDL_test */,
  2138. BEC566AB0761D90300A33029 /* checkkeys */,
  2139. DBEC54D91A1A81C3005B1EAB /* gamepadmap */,
  2140. BEC566C50761D90300A33029 /* loopwave */,
  2141. 0017957410741F7900F5D044 /* testatomic */,
  2142. 00179595107421BF00F5D044 /* testaudioinfo */,
  2143. 00179756107431B300F5D044 /* testdraw */,
  2144. DB0F48D917CA51E5008798C5 /* testdrawchessboard */,
  2145. DB445EE618184B7000B306B0 /* testdropfile */,
  2146. BEC566FB0761D90300A33029 /* testerror */,
  2147. 002F340109CA1BFF00EBEB88 /* testfile */,
  2148. DB0F48EF17CA5212008798C5 /* testfilesystem */,
  2149. BBFC08B7164C6862003E6A99 /* testgamepad */,
  2150. F3C17CDB28E416CF00E1A26D /* testgeometry */,
  2151. 0017970910742F3200F5D044 /* testgl */,
  2152. 00179730107430D600F5D044 /* testhaptic */,
  2153. DB89956D18A19ABA0092407C /* testhotplug */,
  2154. 002F342009CA1F0300EBEB88 /* testiconv */,
  2155. 00179776107432AE00F5D044 /* testime */,
  2156. 001797961074334C00F5D044 /* testintersections */,
  2157. BEC567300761D90400A33029 /* testjoystick */,
  2158. BEC5673D0761D90400A33029 /* testkeys */,
  2159. 001797B8107433C600F5D044 /* testloadso */,
  2160. BEC5674A0761D90400A33029 /* testlock */,
  2161. DB166DC416A1D36A00A1396C /* testmessage */,
  2162. 001797FA1074355200F5D044 /* testmultiaudio */,
  2163. 001798781074392D00F5D044 /* testnative */,
  2164. 002F343C09CA1FB300EBEB88 /* testoverlay */,
  2165. 002F345909CA204F00EBEB88 /* testplatform */,
  2166. 0017989D107439DF00F5D044 /* testpower */,
  2167. DB166DDC16A1D50C00A1396C /* testrelative */,
  2168. DB166DF316A1D57C00A1396C /* testrendercopyex */,
  2169. DB166E0A16A1D5AD00A1396C /* testrendertarget */,
  2170. 001798DA10743BEC00F5D044 /* testresample */,
  2171. DB166E2716A1D64D00A1396C /* testrumble */,
  2172. DB166E3D16A1D69000A1396C /* testscale */,
  2173. BEC567720761D90500A33029 /* testsem */,
  2174. DB166E5716A1D6F300A1396C /* testshader */,
  2175. 4537749112091504002F0F45 /* testshape */,
  2176. 001798FE10743F1000F5D044 /* testsprite */,
  2177. DB166E6D16A1D78400A1396C /* testspriteminimal */,
  2178. DB166E8016A1D78C00A1396C /* teststreaming */,
  2179. BEC567230761D90400A33029 /* testthread */,
  2180. BEC5678D0761D90500A33029 /* testtimer */,
  2181. BEC567A70761D90500A33029 /* testversion */,
  2182. 0017992010743FB700F5D044 /* testwm */,
  2183. BEC567EA0761D90600A33029 /* torturethread */,
  2184. );
  2185. };
  2186. /* End PBXProject section */
  2187. /* Begin PBXReferenceProxy section */
  2188. 003FA643093FFD41000C53B3 /* SDL3.framework */ = {
  2189. isa = PBXReferenceProxy;
  2190. fileType = wrapper.framework;
  2191. path = SDL3.framework;
  2192. remoteRef = 003FA642093FFD41000C53B3 /* PBXContainerItemProxy */;
  2193. sourceTree = BUILT_PRODUCTS_DIR;
  2194. };
  2195. 003FA645093FFD41000C53B3 /* libSDL3.a */ = {
  2196. isa = PBXReferenceProxy;
  2197. fileType = archive.ar;
  2198. path = libSDL3.a;
  2199. remoteRef = 003FA644093FFD41000C53B3 /* PBXContainerItemProxy */;
  2200. sourceTree = BUILT_PRODUCTS_DIR;
  2201. };
  2202. 003FA649093FFD41000C53B3 /* SDL3 */ = {
  2203. isa = PBXReferenceProxy;
  2204. fileType = "compiled.mach-o.executable";
  2205. path = SDL3;
  2206. remoteRef = 003FA648093FFD41000C53B3 /* PBXContainerItemProxy */;
  2207. sourceTree = BUILT_PRODUCTS_DIR;
  2208. };
  2209. DB1D40D717B3F30D00D74CFC /* libSDL3.dylib */ = {
  2210. isa = PBXReferenceProxy;
  2211. fileType = "compiled.mach-o.dylib";
  2212. path = libSDL3.dylib;
  2213. remoteRef = DB1D40D617B3F30D00D74CFC /* PBXContainerItemProxy */;
  2214. sourceTree = BUILT_PRODUCTS_DIR;
  2215. };
  2216. F3C17C5D28E3FB2900E1A26D /* SDL3.framework */ = {
  2217. isa = PBXReferenceProxy;
  2218. fileType = wrapper.framework;
  2219. path = SDL3.framework;
  2220. remoteRef = F3C17C5C28E3FB2900E1A26D /* PBXContainerItemProxy */;
  2221. sourceTree = BUILT_PRODUCTS_DIR;
  2222. };
  2223. F3C17C5F28E3FB2900E1A26D /* SDL3.framework */ = {
  2224. isa = PBXReferenceProxy;
  2225. fileType = wrapper.framework;
  2226. path = SDL3.framework;
  2227. remoteRef = F3C17C5E28E3FB2900E1A26D /* PBXContainerItemProxy */;
  2228. sourceTree = BUILT_PRODUCTS_DIR;
  2229. };
  2230. F3C17C6128E3FB2900E1A26D /* SDL3.framework */ = {
  2231. isa = PBXReferenceProxy;
  2232. fileType = wrapper.framework;
  2233. path = SDL3.framework;
  2234. remoteRef = F3C17C6028E3FB2900E1A26D /* PBXContainerItemProxy */;
  2235. sourceTree = BUILT_PRODUCTS_DIR;
  2236. };
  2237. F3C17C6328E3FB2900E1A26D /* libSDL3.a */ = {
  2238. isa = PBXReferenceProxy;
  2239. fileType = archive.ar;
  2240. path = libSDL3.a;
  2241. remoteRef = F3C17C6228E3FB2900E1A26D /* PBXContainerItemProxy */;
  2242. sourceTree = BUILT_PRODUCTS_DIR;
  2243. };
  2244. F3C17C6528E3FB2900E1A26D /* libSDL3.a */ = {
  2245. isa = PBXReferenceProxy;
  2246. fileType = archive.ar;
  2247. path = libSDL3.a;
  2248. remoteRef = F3C17C6428E3FB2900E1A26D /* PBXContainerItemProxy */;
  2249. sourceTree = BUILT_PRODUCTS_DIR;
  2250. };
  2251. F3C17C6728E3FB2900E1A26D /* libSDL3.dylib */ = {
  2252. isa = PBXReferenceProxy;
  2253. fileType = "compiled.mach-o.dylib";
  2254. path = libSDL3.dylib;
  2255. remoteRef = F3C17C6628E3FB2900E1A26D /* PBXContainerItemProxy */;
  2256. sourceTree = BUILT_PRODUCTS_DIR;
  2257. };
  2258. F3C17C6928E3FB2900E1A26D /* libSDL3.dylib */ = {
  2259. isa = PBXReferenceProxy;
  2260. fileType = "compiled.mach-o.dylib";
  2261. path = libSDL3.dylib;
  2262. remoteRef = F3C17C6828E3FB2900E1A26D /* PBXContainerItemProxy */;
  2263. sourceTree = BUILT_PRODUCTS_DIR;
  2264. };
  2265. /* End PBXReferenceProxy section */
  2266. /* Begin PBXResourcesBuildPhase section */
  2267. F3C17D3528E4242100E1A26D /* Resources */ = {
  2268. isa = PBXResourcesBuildPhase;
  2269. buildActionMask = 2147483647;
  2270. files = (
  2271. F3C17D3C28E4277D00E1A26D /* axis.bmp in Resources */,
  2272. F3C17D3D28E4277D00E1A26D /* button.bmp in Resources */,
  2273. F3C17D3E28E4277D00E1A26D /* gamepadmap_back.bmp in Resources */,
  2274. F3C17D3F28E4277D00E1A26D /* gamepadmap.bmp in Resources */,
  2275. );
  2276. runOnlyForDeploymentPostprocessing = 0;
  2277. };
  2278. F3C17D3828E424B100E1A26D /* Resources */ = {
  2279. isa = PBXResourcesBuildPhase;
  2280. buildActionMask = 2147483647;
  2281. files = (
  2282. F3C17D3928E424B800E1A26D /* sample.wav in Resources */,
  2283. );
  2284. runOnlyForDeploymentPostprocessing = 0;
  2285. };
  2286. F3C17D3A28E4252200E1A26D /* Resources */ = {
  2287. isa = PBXResourcesBuildPhase;
  2288. buildActionMask = 2147483647;
  2289. files = (
  2290. F3C17D3B28E4252900E1A26D /* icon.bmp in Resources */,
  2291. );
  2292. runOnlyForDeploymentPostprocessing = 0;
  2293. };
  2294. /* End PBXResourcesBuildPhase section */
  2295. /* Begin PBXSourcesBuildPhase section */
  2296. 0017957910741F7900F5D044 /* Sources */ = {
  2297. isa = PBXSourcesBuildPhase;
  2298. buildActionMask = 2147483647;
  2299. files = (
  2300. 001795901074216E00F5D044 /* testatomic.c in Sources */,
  2301. );
  2302. runOnlyForDeploymentPostprocessing = 0;
  2303. };
  2304. 0017959A107421BF00F5D044 /* Sources */ = {
  2305. isa = PBXSourcesBuildPhase;
  2306. buildActionMask = 2147483647;
  2307. files = (
  2308. 001795B11074222D00F5D044 /* testaudioinfo.c in Sources */,
  2309. );
  2310. runOnlyForDeploymentPostprocessing = 0;
  2311. };
  2312. 0017970E10742F3200F5D044 /* Sources */ = {
  2313. isa = PBXSourcesBuildPhase;
  2314. buildActionMask = 2147483647;
  2315. files = (
  2316. 0017972810742FB900F5D044 /* testgl.c in Sources */,
  2317. );
  2318. runOnlyForDeploymentPostprocessing = 0;
  2319. };
  2320. 00179735107430D600F5D044 /* Sources */ = {
  2321. isa = PBXSourcesBuildPhase;
  2322. buildActionMask = 2147483647;
  2323. files = (
  2324. 0017974F1074315700F5D044 /* testhaptic.c in Sources */,
  2325. );
  2326. runOnlyForDeploymentPostprocessing = 0;
  2327. };
  2328. 0017975B107431B300F5D044 /* Sources */ = {
  2329. isa = PBXSourcesBuildPhase;
  2330. buildActionMask = 2147483647;
  2331. files = (
  2332. 001797721074320D00F5D044 /* testdraw.c in Sources */,
  2333. );
  2334. runOnlyForDeploymentPostprocessing = 0;
  2335. };
  2336. 0017977B107432AE00F5D044 /* Sources */ = {
  2337. isa = PBXSourcesBuildPhase;
  2338. buildActionMask = 2147483647;
  2339. files = (
  2340. 00179792107432FA00F5D044 /* testime.c in Sources */,
  2341. F3C17C7C28E40D7400E1A26D /* testutils.c in Sources */,
  2342. );
  2343. runOnlyForDeploymentPostprocessing = 0;
  2344. };
  2345. 0017979B1074334C00F5D044 /* Sources */ = {
  2346. isa = PBXSourcesBuildPhase;
  2347. buildActionMask = 2147483647;
  2348. files = (
  2349. 001797B41074339C00F5D044 /* testintersections.c in Sources */,
  2350. );
  2351. runOnlyForDeploymentPostprocessing = 0;
  2352. };
  2353. 001797BD107433C600F5D044 /* Sources */ = {
  2354. isa = PBXSourcesBuildPhase;
  2355. buildActionMask = 2147483647;
  2356. files = (
  2357. 001797D41074343E00F5D044 /* testloadso.c in Sources */,
  2358. );
  2359. runOnlyForDeploymentPostprocessing = 0;
  2360. };
  2361. 001797FF1074355200F5D044 /* Sources */ = {
  2362. isa = PBXSourcesBuildPhase;
  2363. buildActionMask = 2147483647;
  2364. files = (
  2365. 001798161074359B00F5D044 /* testmultiaudio.c in Sources */,
  2366. F3C17C7D28E40F9D00E1A26D /* testutils.c in Sources */,
  2367. );
  2368. runOnlyForDeploymentPostprocessing = 0;
  2369. };
  2370. 0017987E1074392D00F5D044 /* Sources */ = {
  2371. isa = PBXSourcesBuildPhase;
  2372. buildActionMask = 2147483647;
  2373. files = (
  2374. 0017987F1074392D00F5D044 /* testnative.c in Sources */,
  2375. 001798801074392D00F5D044 /* testnativecocoa.m in Sources */,
  2376. F3C17C7E28E40FDD00E1A26D /* testutils.c in Sources */,
  2377. );
  2378. runOnlyForDeploymentPostprocessing = 0;
  2379. };
  2380. 001798A2107439DF00F5D044 /* Sources */ = {
  2381. isa = PBXSourcesBuildPhase;
  2382. buildActionMask = 2147483647;
  2383. files = (
  2384. 001798BA10743A4900F5D044 /* testpower.c in Sources */,
  2385. );
  2386. runOnlyForDeploymentPostprocessing = 0;
  2387. };
  2388. 001798DF10743BEC00F5D044 /* Sources */ = {
  2389. isa = PBXSourcesBuildPhase;
  2390. buildActionMask = 2147483647;
  2391. files = (
  2392. 001798FA10743E9200F5D044 /* testresample.c in Sources */,
  2393. );
  2394. runOnlyForDeploymentPostprocessing = 0;
  2395. };
  2396. 0017990310743F1000F5D044 /* Sources */ = {
  2397. isa = PBXSourcesBuildPhase;
  2398. buildActionMask = 2147483647;
  2399. files = (
  2400. 0017991A10743F5300F5D044 /* testsprite.c in Sources */,
  2401. F3C17C8328E4124400E1A26D /* testutils.c in Sources */,
  2402. );
  2403. runOnlyForDeploymentPostprocessing = 0;
  2404. };
  2405. 0017992510743FB700F5D044 /* Sources */ = {
  2406. isa = PBXSourcesBuildPhase;
  2407. buildActionMask = 2147483647;
  2408. files = (
  2409. 0017993C10743FEF00F5D044 /* testwm.c in Sources */,
  2410. );
  2411. runOnlyForDeploymentPostprocessing = 0;
  2412. };
  2413. 002F340709CA1BFF00EBEB88 /* Sources */ = {
  2414. isa = PBXSourcesBuildPhase;
  2415. buildActionMask = 2147483647;
  2416. files = (
  2417. 002F341809CA1C5B00EBEB88 /* testfile.c in Sources */,
  2418. );
  2419. runOnlyForDeploymentPostprocessing = 0;
  2420. };
  2421. 002F342609CA1F0300EBEB88 /* Sources */ = {
  2422. isa = PBXSourcesBuildPhase;
  2423. buildActionMask = 2147483647;
  2424. files = (
  2425. 002F343709CA1F6F00EBEB88 /* testiconv.c in Sources */,
  2426. F3C17C7B28E40D4E00E1A26D /* testutils.c in Sources */,
  2427. );
  2428. runOnlyForDeploymentPostprocessing = 0;
  2429. };
  2430. 002F344209CA1FB300EBEB88 /* Sources */ = {
  2431. isa = PBXSourcesBuildPhase;
  2432. buildActionMask = 2147483647;
  2433. files = (
  2434. 002F345409CA202000EBEB88 /* testoverlay.c in Sources */,
  2435. 66E88E8B203B778F0004D44E /* testyuv_cvt.c in Sources */,
  2436. F3C17C7F28E4101000E1A26D /* testutils.c in Sources */,
  2437. );
  2438. runOnlyForDeploymentPostprocessing = 0;
  2439. };
  2440. 002F345F09CA204F00EBEB88 /* Sources */ = {
  2441. isa = PBXSourcesBuildPhase;
  2442. buildActionMask = 2147483647;
  2443. files = (
  2444. 002F347009CA20A600EBEB88 /* testplatform.c in Sources */,
  2445. );
  2446. runOnlyForDeploymentPostprocessing = 0;
  2447. };
  2448. 4537748F12091504002F0F45 /* Sources */ = {
  2449. isa = PBXSourcesBuildPhase;
  2450. buildActionMask = 2147483647;
  2451. files = (
  2452. 453774A5120915E3002F0F45 /* testshape.c in Sources */,
  2453. );
  2454. runOnlyForDeploymentPostprocessing = 0;
  2455. };
  2456. BBFC08BC164C6862003E6A99 /* Sources */ = {
  2457. isa = PBXSourcesBuildPhase;
  2458. buildActionMask = 2147483647;
  2459. files = (
  2460. BBFC08D0164C6876003E6A99 /* testgamepad.c in Sources */,
  2461. F3C17C7928E40C6E00E1A26D /* testutils.c in Sources */,
  2462. );
  2463. runOnlyForDeploymentPostprocessing = 0;
  2464. };
  2465. BEC566B00761D90300A33029 /* Sources */ = {
  2466. isa = PBXSourcesBuildPhase;
  2467. buildActionMask = 2147483647;
  2468. files = (
  2469. BEC566B10761D90300A33029 /* checkkeys.c in Sources */,
  2470. );
  2471. runOnlyForDeploymentPostprocessing = 0;
  2472. };
  2473. BEC566CA0761D90300A33029 /* Sources */ = {
  2474. isa = PBXSourcesBuildPhase;
  2475. buildActionMask = 2147483647;
  2476. files = (
  2477. BEC566CB0761D90300A33029 /* loopwave.c in Sources */,
  2478. F3C17C7728E40BC800E1A26D /* testutils.c in Sources */,
  2479. );
  2480. runOnlyForDeploymentPostprocessing = 0;
  2481. };
  2482. BEC567000761D90300A33029 /* Sources */ = {
  2483. isa = PBXSourcesBuildPhase;
  2484. buildActionMask = 2147483647;
  2485. files = (
  2486. BEC567010761D90300A33029 /* testerror.c in Sources */,
  2487. );
  2488. runOnlyForDeploymentPostprocessing = 0;
  2489. };
  2490. BEC567280761D90400A33029 /* Sources */ = {
  2491. isa = PBXSourcesBuildPhase;
  2492. buildActionMask = 2147483647;
  2493. files = (
  2494. BEC567290761D90400A33029 /* testthread.c in Sources */,
  2495. );
  2496. runOnlyForDeploymentPostprocessing = 0;
  2497. };
  2498. BEC567350761D90400A33029 /* Sources */ = {
  2499. isa = PBXSourcesBuildPhase;
  2500. buildActionMask = 2147483647;
  2501. files = (
  2502. BEC567360761D90400A33029 /* testjoystick.c in Sources */,
  2503. );
  2504. runOnlyForDeploymentPostprocessing = 0;
  2505. };
  2506. BEC567420761D90400A33029 /* Sources */ = {
  2507. isa = PBXSourcesBuildPhase;
  2508. buildActionMask = 2147483647;
  2509. files = (
  2510. BEC567430761D90400A33029 /* testkeys.c in Sources */,
  2511. );
  2512. runOnlyForDeploymentPostprocessing = 0;
  2513. };
  2514. BEC5674F0761D90400A33029 /* Sources */ = {
  2515. isa = PBXSourcesBuildPhase;
  2516. buildActionMask = 2147483647;
  2517. files = (
  2518. BEC567500761D90400A33029 /* testlock.c in Sources */,
  2519. );
  2520. runOnlyForDeploymentPostprocessing = 0;
  2521. };
  2522. BEC567770761D90500A33029 /* Sources */ = {
  2523. isa = PBXSourcesBuildPhase;
  2524. buildActionMask = 2147483647;
  2525. files = (
  2526. BEC567780761D90500A33029 /* testsem.c in Sources */,
  2527. );
  2528. runOnlyForDeploymentPostprocessing = 0;
  2529. };
  2530. BEC567920761D90500A33029 /* Sources */ = {
  2531. isa = PBXSourcesBuildPhase;
  2532. buildActionMask = 2147483647;
  2533. files = (
  2534. BEC567930761D90500A33029 /* testtimer.c in Sources */,
  2535. );
  2536. runOnlyForDeploymentPostprocessing = 0;
  2537. };
  2538. BEC567AC0761D90500A33029 /* Sources */ = {
  2539. isa = PBXSourcesBuildPhase;
  2540. buildActionMask = 2147483647;
  2541. files = (
  2542. BEC567AD0761D90500A33029 /* testver.c in Sources */,
  2543. );
  2544. runOnlyForDeploymentPostprocessing = 0;
  2545. };
  2546. BEC567EF0761D90600A33029 /* Sources */ = {
  2547. isa = PBXSourcesBuildPhase;
  2548. buildActionMask = 2147483647;
  2549. files = (
  2550. BEC567F00761D90600A33029 /* torturethread.c in Sources */,
  2551. );
  2552. runOnlyForDeploymentPostprocessing = 0;
  2553. };
  2554. DB0F48DA17CA51E5008798C5 /* Sources */ = {
  2555. isa = PBXSourcesBuildPhase;
  2556. buildActionMask = 2147483647;
  2557. files = (
  2558. DB0F48EE17CA51F8008798C5 /* testdrawchessboard.c in Sources */,
  2559. );
  2560. runOnlyForDeploymentPostprocessing = 0;
  2561. };
  2562. DB0F48F017CA5212008798C5 /* Sources */ = {
  2563. isa = PBXSourcesBuildPhase;
  2564. buildActionMask = 2147483647;
  2565. files = (
  2566. DB0F490317CA5225008798C5 /* testfilesystem.c in Sources */,
  2567. );
  2568. runOnlyForDeploymentPostprocessing = 0;
  2569. };
  2570. DB166D7B16A1D12400A1396C /* Sources */ = {
  2571. isa = PBXSourcesBuildPhase;
  2572. buildActionMask = 2147483647;
  2573. files = (
  2574. DB166D9316A1D1A500A1396C /* SDL_test_assert.c in Sources */,
  2575. DB166D9416A1D1A500A1396C /* SDL_test_common.c in Sources */,
  2576. DB166D9516A1D1A500A1396C /* SDL_test_compare.c in Sources */,
  2577. DB166D9616A1D1A500A1396C /* SDL_test_crc32.c in Sources */,
  2578. DB166D9716A1D1A500A1396C /* SDL_test_font.c in Sources */,
  2579. DB166D9816A1D1A500A1396C /* SDL_test_fuzzer.c in Sources */,
  2580. DB166D9916A1D1A500A1396C /* SDL_test_harness.c in Sources */,
  2581. DB166D9F16A1D1A500A1396C /* SDL_test_log.c in Sources */,
  2582. DB166DA016A1D1A500A1396C /* SDL_test_md5.c in Sources */,
  2583. AAF02FFA1F90092700B9A9FB /* SDL_test_memory.c in Sources */,
  2584. DB166DA116A1D1A500A1396C /* SDL_test_random.c in Sources */,
  2585. );
  2586. runOnlyForDeploymentPostprocessing = 0;
  2587. };
  2588. DB166DC516A1D36A00A1396C /* Sources */ = {
  2589. isa = PBXSourcesBuildPhase;
  2590. buildActionMask = 2147483647;
  2591. files = (
  2592. DB166DD716A1D37800A1396C /* testmessage.c in Sources */,
  2593. );
  2594. runOnlyForDeploymentPostprocessing = 0;
  2595. };
  2596. DB166DDD16A1D50C00A1396C /* Sources */ = {
  2597. isa = PBXSourcesBuildPhase;
  2598. buildActionMask = 2147483647;
  2599. files = (
  2600. DB166DF016A1D52500A1396C /* testrelative.c in Sources */,
  2601. );
  2602. runOnlyForDeploymentPostprocessing = 0;
  2603. };
  2604. DB166DF416A1D57C00A1396C /* Sources */ = {
  2605. isa = PBXSourcesBuildPhase;
  2606. buildActionMask = 2147483647;
  2607. files = (
  2608. DB166E0716A1D59400A1396C /* testrendercopyex.c in Sources */,
  2609. F3C17C8028E410A400E1A26D /* testutils.c in Sources */,
  2610. );
  2611. runOnlyForDeploymentPostprocessing = 0;
  2612. };
  2613. DB166E0B16A1D5AD00A1396C /* Sources */ = {
  2614. isa = PBXSourcesBuildPhase;
  2615. buildActionMask = 2147483647;
  2616. files = (
  2617. DB166E1E16A1D5C300A1396C /* testrendertarget.c in Sources */,
  2618. F3C17C8128E410C900E1A26D /* testutils.c in Sources */,
  2619. );
  2620. runOnlyForDeploymentPostprocessing = 0;
  2621. };
  2622. DB166E2816A1D64D00A1396C /* Sources */ = {
  2623. isa = PBXSourcesBuildPhase;
  2624. buildActionMask = 2147483647;
  2625. files = (
  2626. DB166E3C16A1D66500A1396C /* testrumble.c in Sources */,
  2627. );
  2628. runOnlyForDeploymentPostprocessing = 0;
  2629. };
  2630. DB166E3E16A1D69000A1396C /* Sources */ = {
  2631. isa = PBXSourcesBuildPhase;
  2632. buildActionMask = 2147483647;
  2633. files = (
  2634. DB166E5416A1D6A300A1396C /* testscale.c in Sources */,
  2635. F3C17C8228E4112900E1A26D /* testutils.c in Sources */,
  2636. );
  2637. runOnlyForDeploymentPostprocessing = 0;
  2638. };
  2639. DB166E5816A1D6F300A1396C /* Sources */ = {
  2640. isa = PBXSourcesBuildPhase;
  2641. buildActionMask = 2147483647;
  2642. files = (
  2643. DB166E6A16A1D70C00A1396C /* testshader.c in Sources */,
  2644. );
  2645. runOnlyForDeploymentPostprocessing = 0;
  2646. };
  2647. DB166E6E16A1D78400A1396C /* Sources */ = {
  2648. isa = PBXSourcesBuildPhase;
  2649. buildActionMask = 2147483647;
  2650. files = (
  2651. DB166E9316A1D7BC00A1396C /* testspriteminimal.c in Sources */,
  2652. F3C17C8428E4126400E1A26D /* testutils.c in Sources */,
  2653. );
  2654. runOnlyForDeploymentPostprocessing = 0;
  2655. };
  2656. DB166E8116A1D78C00A1396C /* Sources */ = {
  2657. isa = PBXSourcesBuildPhase;
  2658. buildActionMask = 2147483647;
  2659. files = (
  2660. DB166E9416A1D7C700A1396C /* teststreaming.c in Sources */,
  2661. F3C17C8528E4127D00E1A26D /* testutils.c in Sources */,
  2662. );
  2663. runOnlyForDeploymentPostprocessing = 0;
  2664. };
  2665. DB445EE718184B7000B306B0 /* Sources */ = {
  2666. isa = PBXSourcesBuildPhase;
  2667. buildActionMask = 2147483647;
  2668. files = (
  2669. DB445EFB18184BB600B306B0 /* testdropfile.c in Sources */,
  2670. );
  2671. runOnlyForDeploymentPostprocessing = 0;
  2672. };
  2673. DB89956E18A19ABA0092407C /* Sources */ = {
  2674. isa = PBXSourcesBuildPhase;
  2675. buildActionMask = 2147483647;
  2676. files = (
  2677. DB89958418A19B130092407C /* testhotplug.c in Sources */,
  2678. );
  2679. runOnlyForDeploymentPostprocessing = 0;
  2680. };
  2681. DBEC54DA1A1A81C3005B1EAB /* Sources */ = {
  2682. isa = PBXSourcesBuildPhase;
  2683. buildActionMask = 2147483647;
  2684. files = (
  2685. DBEC54EB1A1A8205005B1EAB /* gamepadmap.c in Sources */,
  2686. F3C17C7428E40AF000E1A26D /* testutils.c in Sources */,
  2687. );
  2688. runOnlyForDeploymentPostprocessing = 0;
  2689. };
  2690. F3C17CD828E416CF00E1A26D /* Sources */ = {
  2691. isa = PBXSourcesBuildPhase;
  2692. buildActionMask = 2147483647;
  2693. files = (
  2694. F3C17CEB28E4177600E1A26D /* testgeometry.c in Sources */,
  2695. F3C17CEC28E417EB00E1A26D /* testutils.c in Sources */,
  2696. );
  2697. runOnlyForDeploymentPostprocessing = 0;
  2698. };
  2699. /* End PBXSourcesBuildPhase section */
  2700. /* Begin PBXTargetDependency section */
  2701. 001799481074403E00F5D044 /* PBXTargetDependency */ = {
  2702. isa = PBXTargetDependency;
  2703. target = BEC566AB0761D90300A33029 /* checkkeys */;
  2704. targetProxy = 001799471074403E00F5D044 /* PBXContainerItemProxy */;
  2705. };
  2706. 0017994C1074403E00F5D044 /* PBXTargetDependency */ = {
  2707. isa = PBXTargetDependency;
  2708. target = BEC566C50761D90300A33029 /* loopwave */;
  2709. targetProxy = 0017994B1074403E00F5D044 /* PBXContainerItemProxy */;
  2710. };
  2711. 001799501074403E00F5D044 /* PBXTargetDependency */ = {
  2712. isa = PBXTargetDependency;
  2713. target = 0017957410741F7900F5D044 /* testatomic */;
  2714. targetProxy = 0017994F1074403E00F5D044 /* PBXContainerItemProxy */;
  2715. };
  2716. 001799521074403E00F5D044 /* PBXTargetDependency */ = {
  2717. isa = PBXTargetDependency;
  2718. target = 00179595107421BF00F5D044 /* testaudioinfo */;
  2719. targetProxy = 001799511074403E00F5D044 /* PBXContainerItemProxy */;
  2720. };
  2721. 0017995A1074403E00F5D044 /* PBXTargetDependency */ = {
  2722. isa = PBXTargetDependency;
  2723. target = 00179756107431B300F5D044 /* testdraw */;
  2724. targetProxy = 001799591074403E00F5D044 /* PBXContainerItemProxy */;
  2725. };
  2726. 0017995E1074403E00F5D044 /* PBXTargetDependency */ = {
  2727. isa = PBXTargetDependency;
  2728. target = BEC566FB0761D90300A33029 /* testerror */;
  2729. targetProxy = 0017995D1074403E00F5D044 /* PBXContainerItemProxy */;
  2730. };
  2731. 001799601074403E00F5D044 /* PBXTargetDependency */ = {
  2732. isa = PBXTargetDependency;
  2733. target = 002F340109CA1BFF00EBEB88 /* testfile */;
  2734. targetProxy = 0017995F1074403E00F5D044 /* PBXContainerItemProxy */;
  2735. };
  2736. 001799661074403E00F5D044 /* PBXTargetDependency */ = {
  2737. isa = PBXTargetDependency;
  2738. target = 0017970910742F3200F5D044 /* testgl */;
  2739. targetProxy = 001799651074403E00F5D044 /* PBXContainerItemProxy */;
  2740. };
  2741. 001799681074403E00F5D044 /* PBXTargetDependency */ = {
  2742. isa = PBXTargetDependency;
  2743. target = 00179730107430D600F5D044 /* testhaptic */;
  2744. targetProxy = 001799671074403E00F5D044 /* PBXContainerItemProxy */;
  2745. };
  2746. 0017996A1074403E00F5D044 /* PBXTargetDependency */ = {
  2747. isa = PBXTargetDependency;
  2748. target = BEC567230761D90400A33029 /* testthread */;
  2749. targetProxy = 001799691074403E00F5D044 /* PBXContainerItemProxy */;
  2750. };
  2751. 0017996C1074403E00F5D044 /* PBXTargetDependency */ = {
  2752. isa = PBXTargetDependency;
  2753. target = 002F342009CA1F0300EBEB88 /* testiconv */;
  2754. targetProxy = 0017996B1074403E00F5D044 /* PBXContainerItemProxy */;
  2755. };
  2756. 0017996E1074403E00F5D044 /* PBXTargetDependency */ = {
  2757. isa = PBXTargetDependency;
  2758. target = 00179776107432AE00F5D044 /* testime */;
  2759. targetProxy = 0017996D1074403E00F5D044 /* PBXContainerItemProxy */;
  2760. };
  2761. 001799701074403E00F5D044 /* PBXTargetDependency */ = {
  2762. isa = PBXTargetDependency;
  2763. target = 001797961074334C00F5D044 /* testintersections */;
  2764. targetProxy = 0017996F1074403E00F5D044 /* PBXContainerItemProxy */;
  2765. };
  2766. 001799721074403E00F5D044 /* PBXTargetDependency */ = {
  2767. isa = PBXTargetDependency;
  2768. target = BEC567300761D90400A33029 /* testjoystick */;
  2769. targetProxy = 001799711074403E00F5D044 /* PBXContainerItemProxy */;
  2770. };
  2771. 001799741074403E00F5D044 /* PBXTargetDependency */ = {
  2772. isa = PBXTargetDependency;
  2773. target = BEC5673D0761D90400A33029 /* testkeys */;
  2774. targetProxy = 001799731074403E00F5D044 /* PBXContainerItemProxy */;
  2775. };
  2776. 001799761074403E00F5D044 /* PBXTargetDependency */ = {
  2777. isa = PBXTargetDependency;
  2778. target = 001797B8107433C600F5D044 /* testloadso */;
  2779. targetProxy = 001799751074403E00F5D044 /* PBXContainerItemProxy */;
  2780. };
  2781. 001799781074403E00F5D044 /* PBXTargetDependency */ = {
  2782. isa = PBXTargetDependency;
  2783. target = BEC5674A0761D90400A33029 /* testlock */;
  2784. targetProxy = 001799771074403E00F5D044 /* PBXContainerItemProxy */;
  2785. };
  2786. 0017997C1074403E00F5D044 /* PBXTargetDependency */ = {
  2787. isa = PBXTargetDependency;
  2788. target = 001797FA1074355200F5D044 /* testmultiaudio */;
  2789. targetProxy = 0017997B1074403E00F5D044 /* PBXContainerItemProxy */;
  2790. };
  2791. 001799801074403E00F5D044 /* PBXTargetDependency */ = {
  2792. isa = PBXTargetDependency;
  2793. target = 001798781074392D00F5D044 /* testnative */;
  2794. targetProxy = 0017997F1074403E00F5D044 /* PBXContainerItemProxy */;
  2795. };
  2796. 001799841074403E00F5D044 /* PBXTargetDependency */ = {
  2797. isa = PBXTargetDependency;
  2798. target = 002F343C09CA1FB300EBEB88 /* testoverlay */;
  2799. targetProxy = 001799831074403E00F5D044 /* PBXContainerItemProxy */;
  2800. };
  2801. 001799881074403E00F5D044 /* PBXTargetDependency */ = {
  2802. isa = PBXTargetDependency;
  2803. target = 002F345909CA204F00EBEB88 /* testplatform */;
  2804. targetProxy = 001799871074403E00F5D044 /* PBXContainerItemProxy */;
  2805. };
  2806. 0017998A1074403E00F5D044 /* PBXTargetDependency */ = {
  2807. isa = PBXTargetDependency;
  2808. target = 0017989D107439DF00F5D044 /* testpower */;
  2809. targetProxy = 001799891074403E00F5D044 /* PBXContainerItemProxy */;
  2810. };
  2811. 0017998C1074403E00F5D044 /* PBXTargetDependency */ = {
  2812. isa = PBXTargetDependency;
  2813. target = 001798DA10743BEC00F5D044 /* testresample */;
  2814. targetProxy = 0017998B1074403E00F5D044 /* PBXContainerItemProxy */;
  2815. };
  2816. 0017998E1074403E00F5D044 /* PBXTargetDependency */ = {
  2817. isa = PBXTargetDependency;
  2818. target = BEC567720761D90500A33029 /* testsem */;
  2819. targetProxy = 0017998D1074403E00F5D044 /* PBXContainerItemProxy */;
  2820. };
  2821. 001799921074403E00F5D044 /* PBXTargetDependency */ = {
  2822. isa = PBXTargetDependency;
  2823. target = 001798FE10743F1000F5D044 /* testsprite */;
  2824. targetProxy = 001799911074403E00F5D044 /* PBXContainerItemProxy */;
  2825. };
  2826. 001799941074403E00F5D044 /* PBXTargetDependency */ = {
  2827. isa = PBXTargetDependency;
  2828. target = BEC5678D0761D90500A33029 /* testtimer */;
  2829. targetProxy = 001799931074403E00F5D044 /* PBXContainerItemProxy */;
  2830. };
  2831. 001799961074403E00F5D044 /* PBXTargetDependency */ = {
  2832. isa = PBXTargetDependency;
  2833. target = BEC567A70761D90500A33029 /* testversion */;
  2834. targetProxy = 001799951074403E00F5D044 /* PBXContainerItemProxy */;
  2835. };
  2836. 0017999E1074403E00F5D044 /* PBXTargetDependency */ = {
  2837. isa = PBXTargetDependency;
  2838. target = 0017992010743FB700F5D044 /* testwm */;
  2839. targetProxy = 0017999D1074403E00F5D044 /* PBXContainerItemProxy */;
  2840. };
  2841. 001799A21074403E00F5D044 /* PBXTargetDependency */ = {
  2842. isa = PBXTargetDependency;
  2843. target = BEC567EA0761D90600A33029 /* torturethread */;
  2844. targetProxy = 001799A11074403E00F5D044 /* PBXContainerItemProxy */;
  2845. };
  2846. DB0F490517CA5249008798C5 /* PBXTargetDependency */ = {
  2847. isa = PBXTargetDependency;
  2848. target = DB0F48D917CA51E5008798C5 /* testdrawchessboard */;
  2849. targetProxy = DB0F490417CA5249008798C5 /* PBXContainerItemProxy */;
  2850. };
  2851. DB0F490717CA5249008798C5 /* PBXTargetDependency */ = {
  2852. isa = PBXTargetDependency;
  2853. target = DB0F48EF17CA5212008798C5 /* testfilesystem */;
  2854. targetProxy = DB0F490617CA5249008798C5 /* PBXContainerItemProxy */;
  2855. };
  2856. DB166D6E16A1CEAA00A1396C /* PBXTargetDependency */ = {
  2857. isa = PBXTargetDependency;
  2858. target = BBFC08B7164C6862003E6A99 /* testgamepad */;
  2859. targetProxy = DB166D6D16A1CEAA00A1396C /* PBXContainerItemProxy */;
  2860. };
  2861. DB166D7016A1CEAF00A1396C /* PBXTargetDependency */ = {
  2862. isa = PBXTargetDependency;
  2863. target = 4537749112091504002F0F45 /* testshape */;
  2864. targetProxy = DB166D6F16A1CEAF00A1396C /* PBXContainerItemProxy */;
  2865. };
  2866. DB166DD916A1D38900A1396C /* PBXTargetDependency */ = {
  2867. isa = PBXTargetDependency;
  2868. target = DB166DC416A1D36A00A1396C /* testmessage */;
  2869. targetProxy = DB166DD816A1D38900A1396C /* PBXContainerItemProxy */;
  2870. };
  2871. DB166DF216A1D53700A1396C /* PBXTargetDependency */ = {
  2872. isa = PBXTargetDependency;
  2873. target = DB166DDC16A1D50C00A1396C /* testrelative */;
  2874. targetProxy = DB166DF116A1D53700A1396C /* PBXContainerItemProxy */;
  2875. };
  2876. DB166E0916A1D5A400A1396C /* PBXTargetDependency */ = {
  2877. isa = PBXTargetDependency;
  2878. target = DB166DF316A1D57C00A1396C /* testrendercopyex */;
  2879. targetProxy = DB166E0816A1D5A400A1396C /* PBXContainerItemProxy */;
  2880. };
  2881. DB166E2016A1D5D000A1396C /* PBXTargetDependency */ = {
  2882. isa = PBXTargetDependency;
  2883. target = DB166E0A16A1D5AD00A1396C /* testrendertarget */;
  2884. targetProxy = DB166E1F16A1D5D000A1396C /* PBXContainerItemProxy */;
  2885. };
  2886. DB166E3B16A1D65A00A1396C /* PBXTargetDependency */ = {
  2887. isa = PBXTargetDependency;
  2888. target = DB166E2716A1D64D00A1396C /* testrumble */;
  2889. targetProxy = DB166E3A16A1D65A00A1396C /* PBXContainerItemProxy */;
  2890. };
  2891. DB166E5616A1D6B800A1396C /* PBXTargetDependency */ = {
  2892. isa = PBXTargetDependency;
  2893. target = DB166E3D16A1D69000A1396C /* testscale */;
  2894. targetProxy = DB166E5516A1D6B800A1396C /* PBXContainerItemProxy */;
  2895. };
  2896. DB166E6C16A1D72000A1396C /* PBXTargetDependency */ = {
  2897. isa = PBXTargetDependency;
  2898. target = DB166E5716A1D6F300A1396C /* testshader */;
  2899. targetProxy = DB166E6B16A1D72000A1396C /* PBXContainerItemProxy */;
  2900. };
  2901. DB166E9616A1D7CD00A1396C /* PBXTargetDependency */ = {
  2902. isa = PBXTargetDependency;
  2903. target = DB166E6D16A1D78400A1396C /* testspriteminimal */;
  2904. targetProxy = DB166E9516A1D7CD00A1396C /* PBXContainerItemProxy */;
  2905. };
  2906. DB166E9816A1D7CF00A1396C /* PBXTargetDependency */ = {
  2907. isa = PBXTargetDependency;
  2908. target = DB166E8016A1D78C00A1396C /* teststreaming */;
  2909. targetProxy = DB166E9716A1D7CF00A1396C /* PBXContainerItemProxy */;
  2910. };
  2911. /* End PBXTargetDependency section */
  2912. /* Begin XCBuildConfiguration section */
  2913. 0017958910741F7900F5D044 /* Debug */ = {
  2914. isa = XCBuildConfiguration;
  2915. buildSettings = {
  2916. PRODUCT_NAME = testatomic;
  2917. };
  2918. name = Debug;
  2919. };
  2920. 0017958A10741F7900F5D044 /* Release */ = {
  2921. isa = XCBuildConfiguration;
  2922. buildSettings = {
  2923. PRODUCT_NAME = testatomic;
  2924. };
  2925. name = Release;
  2926. };
  2927. 001795AA107421BF00F5D044 /* Debug */ = {
  2928. isa = XCBuildConfiguration;
  2929. buildSettings = {
  2930. PRODUCT_NAME = testaudioinfo;
  2931. };
  2932. name = Debug;
  2933. };
  2934. 001795AB107421BF00F5D044 /* Release */ = {
  2935. isa = XCBuildConfiguration;
  2936. buildSettings = {
  2937. PRODUCT_NAME = testaudioinfo;
  2938. };
  2939. name = Release;
  2940. };
  2941. 0017971E10742F3200F5D044 /* Debug */ = {
  2942. isa = XCBuildConfiguration;
  2943. buildSettings = {
  2944. GCC_PREPROCESSOR_DEFINITIONS = HAVE_OPENGL;
  2945. PRODUCT_NAME = testgl;
  2946. SUPPORTED_PLATFORMS = macosx;
  2947. };
  2948. name = Debug;
  2949. };
  2950. 0017971F10742F3200F5D044 /* Release */ = {
  2951. isa = XCBuildConfiguration;
  2952. buildSettings = {
  2953. GCC_PREPROCESSOR_DEFINITIONS = HAVE_OPENGL;
  2954. PRODUCT_NAME = testgl;
  2955. SUPPORTED_PLATFORMS = macosx;
  2956. };
  2957. name = Release;
  2958. };
  2959. 00179745107430D600F5D044 /* Debug */ = {
  2960. isa = XCBuildConfiguration;
  2961. buildSettings = {
  2962. PRODUCT_NAME = testhaptic;
  2963. };
  2964. name = Debug;
  2965. };
  2966. 00179746107430D600F5D044 /* Release */ = {
  2967. isa = XCBuildConfiguration;
  2968. buildSettings = {
  2969. PRODUCT_NAME = testhaptic;
  2970. };
  2971. name = Release;
  2972. };
  2973. 0017976B107431B300F5D044 /* Debug */ = {
  2974. isa = XCBuildConfiguration;
  2975. buildSettings = {
  2976. PRODUCT_NAME = testdraw;
  2977. };
  2978. name = Debug;
  2979. };
  2980. 0017976C107431B300F5D044 /* Release */ = {
  2981. isa = XCBuildConfiguration;
  2982. buildSettings = {
  2983. PRODUCT_NAME = testdraw;
  2984. };
  2985. name = Release;
  2986. };
  2987. 0017978B107432AE00F5D044 /* Debug */ = {
  2988. isa = XCBuildConfiguration;
  2989. buildSettings = {
  2990. PRODUCT_NAME = testime;
  2991. };
  2992. name = Debug;
  2993. };
  2994. 0017978C107432AE00F5D044 /* Release */ = {
  2995. isa = XCBuildConfiguration;
  2996. buildSettings = {
  2997. PRODUCT_NAME = testime;
  2998. };
  2999. name = Release;
  3000. };
  3001. 001797AB1074334C00F5D044 /* Debug */ = {
  3002. isa = XCBuildConfiguration;
  3003. buildSettings = {
  3004. PRODUCT_NAME = testintersections;
  3005. };
  3006. name = Debug;
  3007. };
  3008. 001797AC1074334C00F5D044 /* Release */ = {
  3009. isa = XCBuildConfiguration;
  3010. buildSettings = {
  3011. PRODUCT_NAME = testintersections;
  3012. };
  3013. name = Release;
  3014. };
  3015. 001797CD107433C600F5D044 /* Debug */ = {
  3016. isa = XCBuildConfiguration;
  3017. buildSettings = {
  3018. PRODUCT_NAME = testloadso;
  3019. };
  3020. name = Debug;
  3021. };
  3022. 001797CE107433C600F5D044 /* Release */ = {
  3023. isa = XCBuildConfiguration;
  3024. buildSettings = {
  3025. PRODUCT_NAME = testloadso;
  3026. };
  3027. name = Release;
  3028. };
  3029. 0017980F1074355200F5D044 /* Debug */ = {
  3030. isa = XCBuildConfiguration;
  3031. buildSettings = {
  3032. PRODUCT_NAME = testmultiaudio;
  3033. };
  3034. name = Debug;
  3035. };
  3036. 001798101074355200F5D044 /* Release */ = {
  3037. isa = XCBuildConfiguration;
  3038. buildSettings = {
  3039. PRODUCT_NAME = testmultiaudio;
  3040. };
  3041. name = Release;
  3042. };
  3043. 001798911074392D00F5D044 /* Debug */ = {
  3044. isa = XCBuildConfiguration;
  3045. buildSettings = {
  3046. PRODUCT_NAME = testnative;
  3047. SUPPORTED_PLATFORMS = macosx;
  3048. };
  3049. name = Debug;
  3050. };
  3051. 001798921074392D00F5D044 /* Release */ = {
  3052. isa = XCBuildConfiguration;
  3053. buildSettings = {
  3054. PRODUCT_NAME = testnative;
  3055. SUPPORTED_PLATFORMS = macosx;
  3056. };
  3057. name = Release;
  3058. };
  3059. 001798B2107439DF00F5D044 /* Debug */ = {
  3060. isa = XCBuildConfiguration;
  3061. buildSettings = {
  3062. PRODUCT_NAME = testpower;
  3063. };
  3064. name = Debug;
  3065. };
  3066. 001798B3107439DF00F5D044 /* Release */ = {
  3067. isa = XCBuildConfiguration;
  3068. buildSettings = {
  3069. PRODUCT_NAME = testpower;
  3070. };
  3071. name = Release;
  3072. };
  3073. 001798EF10743BEC00F5D044 /* Debug */ = {
  3074. isa = XCBuildConfiguration;
  3075. buildSettings = {
  3076. PRODUCT_NAME = testresample;
  3077. };
  3078. name = Debug;
  3079. };
  3080. 001798F010743BEC00F5D044 /* Release */ = {
  3081. isa = XCBuildConfiguration;
  3082. buildSettings = {
  3083. PRODUCT_NAME = testresample;
  3084. };
  3085. name = Release;
  3086. };
  3087. 0017991310743F1000F5D044 /* Debug */ = {
  3088. isa = XCBuildConfiguration;
  3089. buildSettings = {
  3090. PRODUCT_NAME = testsprite;
  3091. };
  3092. name = Debug;
  3093. };
  3094. 0017991410743F1000F5D044 /* Release */ = {
  3095. isa = XCBuildConfiguration;
  3096. buildSettings = {
  3097. PRODUCT_NAME = testsprite;
  3098. };
  3099. name = Release;
  3100. };
  3101. 0017993510743FB700F5D044 /* Debug */ = {
  3102. isa = XCBuildConfiguration;
  3103. buildSettings = {
  3104. PRODUCT_NAME = testwm;
  3105. };
  3106. name = Debug;
  3107. };
  3108. 0017993610743FB700F5D044 /* Release */ = {
  3109. isa = XCBuildConfiguration;
  3110. buildSettings = {
  3111. PRODUCT_NAME = testwm;
  3112. };
  3113. name = Release;
  3114. };
  3115. 002A85B21073008E007319AE /* Debug */ = {
  3116. isa = XCBuildConfiguration;
  3117. baseConfigurationReference = F3C17C6A28E3FD4400E1A26D /* config.xcconfig */;
  3118. buildSettings = {
  3119. ALLOW_TARGET_PLATFORM_SPECIALIZATION = YES;
  3120. COPY_PHASE_STRIP = NO;
  3121. CURRENT_PROJECT_VERSION = 1;
  3122. DEBUG_INFORMATION_FORMAT = dwarf;
  3123. ENABLE_TESTABILITY = YES;
  3124. GCC_OPTIMIZATION_LEVEL = 0;
  3125. GCC_SYMBOLS_PRIVATE_EXTERN = YES;
  3126. GENERATE_INFOPLIST_FILE = YES;
  3127. HEADER_SEARCH_PATHS = ../../include;
  3128. INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
  3129. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  3130. LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
  3131. "LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
  3132. MACOSX_DEPLOYMENT_TARGET = 10.9;
  3133. MARKETING_VERSION = 1.0;
  3134. ONLY_ACTIVE_ARCH = YES;
  3135. OTHER_LDFLAGS = "$(CONFIG_FRAMEWORK_LDFLAGS)";
  3136. PRODUCT_BUNDLE_IDENTIFIER = "org.libsdl.$(PRODUCT_NAME)";
  3137. SUPPORTED_PLATFORMS = "macosx iphonesimulator iphoneos appletvsimulator appletvos";
  3138. SUPPORTS_MACCATALYST = YES;
  3139. TVOS_DEPLOYMENT_TARGET = 9.0;
  3140. };
  3141. name = Debug;
  3142. };
  3143. 002A85B31073008E007319AE /* Debug */ = {
  3144. isa = XCBuildConfiguration;
  3145. buildSettings = {
  3146. PRODUCT_NAME = "Build All";
  3147. };
  3148. name = Debug;
  3149. };
  3150. 002A85B41073008E007319AE /* Debug */ = {
  3151. isa = XCBuildConfiguration;
  3152. buildSettings = {
  3153. PRODUCT_NAME = checkkeys;
  3154. };
  3155. name = Debug;
  3156. };
  3157. 002A85B61073008E007319AE /* Debug */ = {
  3158. isa = XCBuildConfiguration;
  3159. buildSettings = {
  3160. PRODUCT_NAME = loopwave;
  3161. };
  3162. name = Debug;
  3163. };
  3164. 002A85BC1073008E007319AE /* Debug */ = {
  3165. isa = XCBuildConfiguration;
  3166. buildSettings = {
  3167. PRODUCT_NAME = testerror;
  3168. };
  3169. name = Debug;
  3170. };
  3171. 002A85BD1073008E007319AE /* Debug */ = {
  3172. isa = XCBuildConfiguration;
  3173. buildSettings = {
  3174. PRODUCT_NAME = testfile;
  3175. };
  3176. name = Debug;
  3177. };
  3178. 002A85C01073008E007319AE /* Debug */ = {
  3179. isa = XCBuildConfiguration;
  3180. buildSettings = {
  3181. PRODUCT_NAME = testiconv;
  3182. };
  3183. name = Debug;
  3184. };
  3185. 002A85C11073008E007319AE /* Debug */ = {
  3186. isa = XCBuildConfiguration;
  3187. buildSettings = {
  3188. PRODUCT_NAME = testjoystick;
  3189. };
  3190. name = Debug;
  3191. };
  3192. 002A85C21073008E007319AE /* Debug */ = {
  3193. isa = XCBuildConfiguration;
  3194. buildSettings = {
  3195. PRODUCT_NAME = testkeys;
  3196. };
  3197. name = Debug;
  3198. };
  3199. 002A85C31073008E007319AE /* Debug */ = {
  3200. isa = XCBuildConfiguration;
  3201. buildSettings = {
  3202. PRODUCT_NAME = testlock;
  3203. };
  3204. name = Debug;
  3205. };
  3206. 002A85C51073008E007319AE /* Debug */ = {
  3207. isa = XCBuildConfiguration;
  3208. buildSettings = {
  3209. PRODUCT_NAME = testoverlay;
  3210. };
  3211. name = Debug;
  3212. };
  3213. 002A85C71073008E007319AE /* Debug */ = {
  3214. isa = XCBuildConfiguration;
  3215. buildSettings = {
  3216. PRODUCT_NAME = testplatform;
  3217. };
  3218. name = Debug;
  3219. };
  3220. 002A85C81073008E007319AE /* Debug */ = {
  3221. isa = XCBuildConfiguration;
  3222. buildSettings = {
  3223. PRODUCT_NAME = testsem;
  3224. };
  3225. name = Debug;
  3226. };
  3227. 002A85CA1073008E007319AE /* Debug */ = {
  3228. isa = XCBuildConfiguration;
  3229. buildSettings = {
  3230. PRODUCT_NAME = testthread;
  3231. };
  3232. name = Debug;
  3233. };
  3234. 002A85CB1073008E007319AE /* Debug */ = {
  3235. isa = XCBuildConfiguration;
  3236. buildSettings = {
  3237. PRODUCT_NAME = testtimer;
  3238. };
  3239. name = Debug;
  3240. };
  3241. 002A85CC1073008E007319AE /* Debug */ = {
  3242. isa = XCBuildConfiguration;
  3243. buildSettings = {
  3244. PRODUCT_NAME = testversion;
  3245. };
  3246. name = Debug;
  3247. };
  3248. 002A85D11073008E007319AE /* Debug */ = {
  3249. isa = XCBuildConfiguration;
  3250. buildSettings = {
  3251. PRODUCT_NAME = torturethread;
  3252. };
  3253. name = Debug;
  3254. };
  3255. 002A85D41073009D007319AE /* Release */ = {
  3256. isa = XCBuildConfiguration;
  3257. baseConfigurationReference = F3C17C6A28E3FD4400E1A26D /* config.xcconfig */;
  3258. buildSettings = {
  3259. ALLOW_TARGET_PLATFORM_SPECIALIZATION = YES;
  3260. CURRENT_PROJECT_VERSION = 1;
  3261. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  3262. DEPLOYMENT_POSTPROCESSING = YES;
  3263. GCC_SYMBOLS_PRIVATE_EXTERN = YES;
  3264. GENERATE_INFOPLIST_FILE = YES;
  3265. HEADER_SEARCH_PATHS = ../../include;
  3266. INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
  3267. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  3268. LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
  3269. "LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
  3270. MACOSX_DEPLOYMENT_TARGET = 10.9;
  3271. MARKETING_VERSION = 1.0;
  3272. OTHER_LDFLAGS = "$(CONFIG_FRAMEWORK_LDFLAGS)";
  3273. PRODUCT_BUNDLE_IDENTIFIER = "org.libsdl.$(PRODUCT_NAME)";
  3274. SUPPORTED_PLATFORMS = "macosx iphonesimulator iphoneos appletvsimulator appletvos";
  3275. SUPPORTS_MACCATALYST = YES;
  3276. TVOS_DEPLOYMENT_TARGET = 9.0;
  3277. };
  3278. name = Release;
  3279. };
  3280. 002A85D51073009D007319AE /* Release */ = {
  3281. isa = XCBuildConfiguration;
  3282. buildSettings = {
  3283. PRODUCT_NAME = "Build All";
  3284. };
  3285. name = Release;
  3286. };
  3287. 002A85D61073009D007319AE /* Release */ = {
  3288. isa = XCBuildConfiguration;
  3289. buildSettings = {
  3290. PRODUCT_NAME = checkkeys;
  3291. };
  3292. name = Release;
  3293. };
  3294. 002A85D81073009D007319AE /* Release */ = {
  3295. isa = XCBuildConfiguration;
  3296. buildSettings = {
  3297. PRODUCT_NAME = loopwave;
  3298. };
  3299. name = Release;
  3300. };
  3301. 002A85DE1073009D007319AE /* Release */ = {
  3302. isa = XCBuildConfiguration;
  3303. buildSettings = {
  3304. PRODUCT_NAME = testerror;
  3305. };
  3306. name = Release;
  3307. };
  3308. 002A85DF1073009D007319AE /* Release */ = {
  3309. isa = XCBuildConfiguration;
  3310. buildSettings = {
  3311. PRODUCT_NAME = testfile;
  3312. };
  3313. name = Release;
  3314. };
  3315. 002A85E21073009D007319AE /* Release */ = {
  3316. isa = XCBuildConfiguration;
  3317. buildSettings = {
  3318. PRODUCT_NAME = testiconv;
  3319. };
  3320. name = Release;
  3321. };
  3322. 002A85E31073009D007319AE /* Release */ = {
  3323. isa = XCBuildConfiguration;
  3324. buildSettings = {
  3325. PRODUCT_NAME = testjoystick;
  3326. };
  3327. name = Release;
  3328. };
  3329. 002A85E41073009D007319AE /* Release */ = {
  3330. isa = XCBuildConfiguration;
  3331. buildSettings = {
  3332. PRODUCT_NAME = testkeys;
  3333. };
  3334. name = Release;
  3335. };
  3336. 002A85E51073009D007319AE /* Release */ = {
  3337. isa = XCBuildConfiguration;
  3338. buildSettings = {
  3339. PRODUCT_NAME = testlock;
  3340. };
  3341. name = Release;
  3342. };
  3343. 002A85E71073009D007319AE /* Release */ = {
  3344. isa = XCBuildConfiguration;
  3345. buildSettings = {
  3346. PRODUCT_NAME = testoverlay;
  3347. };
  3348. name = Release;
  3349. };
  3350. 002A85E91073009D007319AE /* Release */ = {
  3351. isa = XCBuildConfiguration;
  3352. buildSettings = {
  3353. PRODUCT_NAME = testplatform;
  3354. };
  3355. name = Release;
  3356. };
  3357. 002A85EA1073009D007319AE /* Release */ = {
  3358. isa = XCBuildConfiguration;
  3359. buildSettings = {
  3360. PRODUCT_NAME = testsem;
  3361. };
  3362. name = Release;
  3363. };
  3364. 002A85EC1073009D007319AE /* Release */ = {
  3365. isa = XCBuildConfiguration;
  3366. buildSettings = {
  3367. PRODUCT_NAME = testthread;
  3368. };
  3369. name = Release;
  3370. };
  3371. 002A85ED1073009D007319AE /* Release */ = {
  3372. isa = XCBuildConfiguration;
  3373. buildSettings = {
  3374. PRODUCT_NAME = testtimer;
  3375. };
  3376. name = Release;
  3377. };
  3378. 002A85EE1073009D007319AE /* Release */ = {
  3379. isa = XCBuildConfiguration;
  3380. buildSettings = {
  3381. PRODUCT_NAME = testversion;
  3382. };
  3383. name = Release;
  3384. };
  3385. 002A85F31073009D007319AE /* Release */ = {
  3386. isa = XCBuildConfiguration;
  3387. buildSettings = {
  3388. PRODUCT_NAME = torturethread;
  3389. };
  3390. name = Release;
  3391. };
  3392. 4537749712091509002F0F45 /* Debug */ = {
  3393. isa = XCBuildConfiguration;
  3394. buildSettings = {
  3395. PRODUCT_NAME = testshape;
  3396. };
  3397. name = Debug;
  3398. };
  3399. 4537749812091509002F0F45 /* Release */ = {
  3400. isa = XCBuildConfiguration;
  3401. buildSettings = {
  3402. PRODUCT_NAME = testshape;
  3403. };
  3404. name = Release;
  3405. };
  3406. BBFC08CB164C6862003E6A99 /* Debug */ = {
  3407. isa = XCBuildConfiguration;
  3408. buildSettings = {
  3409. PRODUCT_NAME = testgamepad;
  3410. };
  3411. name = Debug;
  3412. };
  3413. BBFC08CC164C6862003E6A99 /* Release */ = {
  3414. isa = XCBuildConfiguration;
  3415. buildSettings = {
  3416. PRODUCT_NAME = testgamepad;
  3417. };
  3418. name = Release;
  3419. };
  3420. DB0F48EA17CA51E5008798C5 /* Debug */ = {
  3421. isa = XCBuildConfiguration;
  3422. buildSettings = {
  3423. PRODUCT_NAME = testdrawchessboard;
  3424. };
  3425. name = Debug;
  3426. };
  3427. DB0F48EB17CA51E5008798C5 /* Release */ = {
  3428. isa = XCBuildConfiguration;
  3429. buildSettings = {
  3430. PRODUCT_NAME = testdrawchessboard;
  3431. };
  3432. name = Release;
  3433. };
  3434. DB0F48FF17CA5212008798C5 /* Debug */ = {
  3435. isa = XCBuildConfiguration;
  3436. buildSettings = {
  3437. PRODUCT_NAME = testfilesystem;
  3438. };
  3439. name = Debug;
  3440. };
  3441. DB0F490017CA5212008798C5 /* Release */ = {
  3442. isa = XCBuildConfiguration;
  3443. buildSettings = {
  3444. PRODUCT_NAME = testfilesystem;
  3445. };
  3446. name = Release;
  3447. };
  3448. DB166D8116A1D12400A1396C /* Debug */ = {
  3449. isa = XCBuildConfiguration;
  3450. buildSettings = {
  3451. ALLOW_TARGET_PLATFORM_SPECIALIZATION = YES;
  3452. EXECUTABLE_PREFIX = lib;
  3453. PRODUCT_NAME = "$(TARGET_NAME)";
  3454. SUPPORTED_PLATFORMS = "watchsimulator watchos macosx iphonesimulator iphoneos driverkit appletvsimulator appletvos";
  3455. SUPPORTS_MACCATALYST = YES;
  3456. };
  3457. name = Debug;
  3458. };
  3459. DB166D8216A1D12400A1396C /* Release */ = {
  3460. isa = XCBuildConfiguration;
  3461. buildSettings = {
  3462. ALLOW_TARGET_PLATFORM_SPECIALIZATION = YES;
  3463. EXECUTABLE_PREFIX = lib;
  3464. PRODUCT_NAME = "$(TARGET_NAME)";
  3465. SUPPORTED_PLATFORMS = "watchsimulator watchos macosx iphonesimulator iphoneos driverkit appletvsimulator appletvos";
  3466. SUPPORTS_MACCATALYST = YES;
  3467. };
  3468. name = Release;
  3469. };
  3470. DB166DD316A1D36A00A1396C /* Debug */ = {
  3471. isa = XCBuildConfiguration;
  3472. buildSettings = {
  3473. PRODUCT_NAME = testmessage;
  3474. };
  3475. name = Debug;
  3476. };
  3477. DB166DD416A1D36A00A1396C /* Release */ = {
  3478. isa = XCBuildConfiguration;
  3479. buildSettings = {
  3480. PRODUCT_NAME = testmessage;
  3481. };
  3482. name = Release;
  3483. };
  3484. DB166DEC16A1D50C00A1396C /* Debug */ = {
  3485. isa = XCBuildConfiguration;
  3486. buildSettings = {
  3487. PRODUCT_NAME = testrelative;
  3488. };
  3489. name = Debug;
  3490. };
  3491. DB166DED16A1D50C00A1396C /* Release */ = {
  3492. isa = XCBuildConfiguration;
  3493. buildSettings = {
  3494. PRODUCT_NAME = testrelative;
  3495. };
  3496. name = Release;
  3497. };
  3498. DB166E0316A1D57C00A1396C /* Debug */ = {
  3499. isa = XCBuildConfiguration;
  3500. buildSettings = {
  3501. PRODUCT_NAME = testrendercopyex;
  3502. };
  3503. name = Debug;
  3504. };
  3505. DB166E0416A1D57C00A1396C /* Release */ = {
  3506. isa = XCBuildConfiguration;
  3507. buildSettings = {
  3508. PRODUCT_NAME = testrendercopyex;
  3509. };
  3510. name = Release;
  3511. };
  3512. DB166E1A16A1D5AD00A1396C /* Debug */ = {
  3513. isa = XCBuildConfiguration;
  3514. buildSettings = {
  3515. PRODUCT_NAME = testrendertarget;
  3516. };
  3517. name = Debug;
  3518. };
  3519. DB166E1B16A1D5AD00A1396C /* Release */ = {
  3520. isa = XCBuildConfiguration;
  3521. buildSettings = {
  3522. PRODUCT_NAME = testrendertarget;
  3523. };
  3524. name = Release;
  3525. };
  3526. DB166E3616A1D64D00A1396C /* Debug */ = {
  3527. isa = XCBuildConfiguration;
  3528. buildSettings = {
  3529. PRODUCT_NAME = testrumble;
  3530. };
  3531. name = Debug;
  3532. };
  3533. DB166E3716A1D64D00A1396C /* Release */ = {
  3534. isa = XCBuildConfiguration;
  3535. buildSettings = {
  3536. PRODUCT_NAME = testrumble;
  3537. };
  3538. name = Release;
  3539. };
  3540. DB166E5016A1D69000A1396C /* Debug */ = {
  3541. isa = XCBuildConfiguration;
  3542. buildSettings = {
  3543. PRODUCT_NAME = testscale;
  3544. };
  3545. name = Debug;
  3546. };
  3547. DB166E5116A1D69000A1396C /* Release */ = {
  3548. isa = XCBuildConfiguration;
  3549. buildSettings = {
  3550. PRODUCT_NAME = testscale;
  3551. };
  3552. name = Release;
  3553. };
  3554. DB166E6616A1D6F300A1396C /* Debug */ = {
  3555. isa = XCBuildConfiguration;
  3556. buildSettings = {
  3557. PRODUCT_NAME = testshader;
  3558. };
  3559. name = Debug;
  3560. };
  3561. DB166E6716A1D6F300A1396C /* Release */ = {
  3562. isa = XCBuildConfiguration;
  3563. buildSettings = {
  3564. PRODUCT_NAME = testshader;
  3565. };
  3566. name = Release;
  3567. };
  3568. DB166E7C16A1D78400A1396C /* Debug */ = {
  3569. isa = XCBuildConfiguration;
  3570. buildSettings = {
  3571. PRODUCT_NAME = testspriteminimal;
  3572. };
  3573. name = Debug;
  3574. };
  3575. DB166E7D16A1D78400A1396C /* Release */ = {
  3576. isa = XCBuildConfiguration;
  3577. buildSettings = {
  3578. PRODUCT_NAME = testspriteminimal;
  3579. };
  3580. name = Release;
  3581. };
  3582. DB166E8F16A1D78C00A1396C /* Debug */ = {
  3583. isa = XCBuildConfiguration;
  3584. buildSettings = {
  3585. PRODUCT_NAME = teststreaming;
  3586. };
  3587. name = Debug;
  3588. };
  3589. DB166E9016A1D78C00A1396C /* Release */ = {
  3590. isa = XCBuildConfiguration;
  3591. buildSettings = {
  3592. PRODUCT_NAME = teststreaming;
  3593. };
  3594. name = Release;
  3595. };
  3596. DB445EF618184B7000B306B0 /* Debug */ = {
  3597. isa = XCBuildConfiguration;
  3598. buildSettings = {
  3599. INFOPLIST_FILE = "TestDropFile-Info.plist";
  3600. PRODUCT_NAME = testdropfile;
  3601. };
  3602. name = Debug;
  3603. };
  3604. DB445EF718184B7000B306B0 /* Release */ = {
  3605. isa = XCBuildConfiguration;
  3606. buildSettings = {
  3607. INFOPLIST_FILE = "TestDropFile-Info.plist";
  3608. PRODUCT_NAME = testdropfile;
  3609. };
  3610. name = Release;
  3611. };
  3612. DB89957C18A19ABA0092407C /* Debug */ = {
  3613. isa = XCBuildConfiguration;
  3614. buildSettings = {
  3615. PRODUCT_NAME = testhotplug;
  3616. };
  3617. name = Debug;
  3618. };
  3619. DB89957D18A19ABA0092407C /* Release */ = {
  3620. isa = XCBuildConfiguration;
  3621. buildSettings = {
  3622. PRODUCT_NAME = testhotplug;
  3623. };
  3624. name = Release;
  3625. };
  3626. DBEC54E81A1A81C3005B1EAB /* Debug */ = {
  3627. isa = XCBuildConfiguration;
  3628. buildSettings = {
  3629. PRODUCT_NAME = gamepadmap;
  3630. };
  3631. name = Debug;
  3632. };
  3633. DBEC54E91A1A81C3005B1EAB /* Release */ = {
  3634. isa = XCBuildConfiguration;
  3635. buildSettings = {
  3636. PRODUCT_NAME = gamepadmap;
  3637. };
  3638. name = Release;
  3639. };
  3640. F3C17CE928E416D000E1A26D /* Debug */ = {
  3641. isa = XCBuildConfiguration;
  3642. buildSettings = {
  3643. PRODUCT_NAME = "$(TARGET_NAME)";
  3644. };
  3645. name = Debug;
  3646. };
  3647. F3C17CEA28E416D000E1A26D /* Release */ = {
  3648. isa = XCBuildConfiguration;
  3649. buildSettings = {
  3650. PRODUCT_NAME = "$(TARGET_NAME)";
  3651. };
  3652. name = Release;
  3653. };
  3654. /* End XCBuildConfiguration section */
  3655. /* Begin XCConfigurationList section */
  3656. 0017958610741F7900F5D044 /* Build configuration list for PBXNativeTarget "testatomic" */ = {
  3657. isa = XCConfigurationList;
  3658. buildConfigurations = (
  3659. 0017958910741F7900F5D044 /* Debug */,
  3660. 0017958A10741F7900F5D044 /* Release */,
  3661. );
  3662. defaultConfigurationIsVisible = 0;
  3663. defaultConfigurationName = Debug;
  3664. };
  3665. 001795A7107421BF00F5D044 /* Build configuration list for PBXNativeTarget "testaudioinfo" */ = {
  3666. isa = XCConfigurationList;
  3667. buildConfigurations = (
  3668. 001795AA107421BF00F5D044 /* Debug */,
  3669. 001795AB107421BF00F5D044 /* Release */,
  3670. );
  3671. defaultConfigurationIsVisible = 0;
  3672. defaultConfigurationName = Debug;
  3673. };
  3674. 0017971B10742F3200F5D044 /* Build configuration list for PBXNativeTarget "testgl" */ = {
  3675. isa = XCConfigurationList;
  3676. buildConfigurations = (
  3677. 0017971E10742F3200F5D044 /* Debug */,
  3678. 0017971F10742F3200F5D044 /* Release */,
  3679. );
  3680. defaultConfigurationIsVisible = 0;
  3681. defaultConfigurationName = Debug;
  3682. };
  3683. 00179742107430D600F5D044 /* Build configuration list for PBXNativeTarget "testhaptic" */ = {
  3684. isa = XCConfigurationList;
  3685. buildConfigurations = (
  3686. 00179745107430D600F5D044 /* Debug */,
  3687. 00179746107430D600F5D044 /* Release */,
  3688. );
  3689. defaultConfigurationIsVisible = 0;
  3690. defaultConfigurationName = Debug;
  3691. };
  3692. 00179768107431B300F5D044 /* Build configuration list for PBXNativeTarget "testdraw" */ = {
  3693. isa = XCConfigurationList;
  3694. buildConfigurations = (
  3695. 0017976B107431B300F5D044 /* Debug */,
  3696. 0017976C107431B300F5D044 /* Release */,
  3697. );
  3698. defaultConfigurationIsVisible = 0;
  3699. defaultConfigurationName = Debug;
  3700. };
  3701. 00179788107432AE00F5D044 /* Build configuration list for PBXNativeTarget "testime" */ = {
  3702. isa = XCConfigurationList;
  3703. buildConfigurations = (
  3704. 0017978B107432AE00F5D044 /* Debug */,
  3705. 0017978C107432AE00F5D044 /* Release */,
  3706. );
  3707. defaultConfigurationIsVisible = 0;
  3708. defaultConfigurationName = Debug;
  3709. };
  3710. 001797A81074334C00F5D044 /* Build configuration list for PBXNativeTarget "testintersections" */ = {
  3711. isa = XCConfigurationList;
  3712. buildConfigurations = (
  3713. 001797AB1074334C00F5D044 /* Debug */,
  3714. 001797AC1074334C00F5D044 /* Release */,
  3715. );
  3716. defaultConfigurationIsVisible = 0;
  3717. defaultConfigurationName = Debug;
  3718. };
  3719. 001797CA107433C600F5D044 /* Build configuration list for PBXNativeTarget "testloadso" */ = {
  3720. isa = XCConfigurationList;
  3721. buildConfigurations = (
  3722. 001797CD107433C600F5D044 /* Debug */,
  3723. 001797CE107433C600F5D044 /* Release */,
  3724. );
  3725. defaultConfigurationIsVisible = 0;
  3726. defaultConfigurationName = Debug;
  3727. };
  3728. 0017980C1074355200F5D044 /* Build configuration list for PBXNativeTarget "testmultiaudio" */ = {
  3729. isa = XCConfigurationList;
  3730. buildConfigurations = (
  3731. 0017980F1074355200F5D044 /* Debug */,
  3732. 001798101074355200F5D044 /* Release */,
  3733. );
  3734. defaultConfigurationIsVisible = 0;
  3735. defaultConfigurationName = Debug;
  3736. };
  3737. 0017988E1074392D00F5D044 /* Build configuration list for PBXNativeTarget "testnative" */ = {
  3738. isa = XCConfigurationList;
  3739. buildConfigurations = (
  3740. 001798911074392D00F5D044 /* Debug */,
  3741. 001798921074392D00F5D044 /* Release */,
  3742. );
  3743. defaultConfigurationIsVisible = 0;
  3744. defaultConfigurationName = Debug;
  3745. };
  3746. 001798AF107439DF00F5D044 /* Build configuration list for PBXNativeTarget "testpower" */ = {
  3747. isa = XCConfigurationList;
  3748. buildConfigurations = (
  3749. 001798B2107439DF00F5D044 /* Debug */,
  3750. 001798B3107439DF00F5D044 /* Release */,
  3751. );
  3752. defaultConfigurationIsVisible = 0;
  3753. defaultConfigurationName = Debug;
  3754. };
  3755. 001798EC10743BEC00F5D044 /* Build configuration list for PBXNativeTarget "testresample" */ = {
  3756. isa = XCConfigurationList;
  3757. buildConfigurations = (
  3758. 001798EF10743BEC00F5D044 /* Debug */,
  3759. 001798F010743BEC00F5D044 /* Release */,
  3760. );
  3761. defaultConfigurationIsVisible = 0;
  3762. defaultConfigurationName = Debug;
  3763. };
  3764. 0017991010743F1000F5D044 /* Build configuration list for PBXNativeTarget "testsprite" */ = {
  3765. isa = XCConfigurationList;
  3766. buildConfigurations = (
  3767. 0017991310743F1000F5D044 /* Debug */,
  3768. 0017991410743F1000F5D044 /* Release */,
  3769. );
  3770. defaultConfigurationIsVisible = 0;
  3771. defaultConfigurationName = Debug;
  3772. };
  3773. 0017993210743FB700F5D044 /* Build configuration list for PBXNativeTarget "testwm" */ = {
  3774. isa = XCConfigurationList;
  3775. buildConfigurations = (
  3776. 0017993510743FB700F5D044 /* Debug */,
  3777. 0017993610743FB700F5D044 /* Release */,
  3778. );
  3779. defaultConfigurationIsVisible = 0;
  3780. defaultConfigurationName = Debug;
  3781. };
  3782. 001B593808BDB826006539E9 /* Build configuration list for PBXNativeTarget "checkkeys" */ = {
  3783. isa = XCConfigurationList;
  3784. buildConfigurations = (
  3785. 002A85B41073008E007319AE /* Debug */,
  3786. 002A85D61073009D007319AE /* Release */,
  3787. );
  3788. defaultConfigurationIsVisible = 0;
  3789. defaultConfigurationName = Debug;
  3790. };
  3791. 001B594008BDB826006539E9 /* Build configuration list for PBXNativeTarget "loopwave" */ = {
  3792. isa = XCConfigurationList;
  3793. buildConfigurations = (
  3794. 002A85B61073008E007319AE /* Debug */,
  3795. 002A85D81073009D007319AE /* Release */,
  3796. );
  3797. defaultConfigurationIsVisible = 0;
  3798. defaultConfigurationName = Debug;
  3799. };
  3800. 001B595008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testerror" */ = {
  3801. isa = XCConfigurationList;
  3802. buildConfigurations = (
  3803. 002A85BC1073008E007319AE /* Debug */,
  3804. 002A85DE1073009D007319AE /* Release */,
  3805. );
  3806. defaultConfigurationIsVisible = 0;
  3807. defaultConfigurationName = Debug;
  3808. };
  3809. 001B595C08BDB826006539E9 /* Build configuration list for PBXNativeTarget "testthread" */ = {
  3810. isa = XCConfigurationList;
  3811. buildConfigurations = (
  3812. 002A85CA1073008E007319AE /* Debug */,
  3813. 002A85EC1073009D007319AE /* Release */,
  3814. );
  3815. defaultConfigurationIsVisible = 0;
  3816. defaultConfigurationName = Debug;
  3817. };
  3818. 001B596008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testjoystick" */ = {
  3819. isa = XCConfigurationList;
  3820. buildConfigurations = (
  3821. 002A85C11073008E007319AE /* Debug */,
  3822. 002A85E31073009D007319AE /* Release */,
  3823. );
  3824. defaultConfigurationIsVisible = 0;
  3825. defaultConfigurationName = Debug;
  3826. };
  3827. 001B596408BDB826006539E9 /* Build configuration list for PBXNativeTarget "testkeys" */ = {
  3828. isa = XCConfigurationList;
  3829. buildConfigurations = (
  3830. 002A85C21073008E007319AE /* Debug */,
  3831. 002A85E41073009D007319AE /* Release */,
  3832. );
  3833. defaultConfigurationIsVisible = 0;
  3834. defaultConfigurationName = Debug;
  3835. };
  3836. 001B596808BDB826006539E9 /* Build configuration list for PBXNativeTarget "testlock" */ = {
  3837. isa = XCConfigurationList;
  3838. buildConfigurations = (
  3839. 002A85C31073008E007319AE /* Debug */,
  3840. 002A85E51073009D007319AE /* Release */,
  3841. );
  3842. defaultConfigurationIsVisible = 0;
  3843. defaultConfigurationName = Debug;
  3844. };
  3845. 001B597008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testsem" */ = {
  3846. isa = XCConfigurationList;
  3847. buildConfigurations = (
  3848. 002A85C81073008E007319AE /* Debug */,
  3849. 002A85EA1073009D007319AE /* Release */,
  3850. );
  3851. defaultConfigurationIsVisible = 0;
  3852. defaultConfigurationName = Debug;
  3853. };
  3854. 001B597808BDB826006539E9 /* Build configuration list for PBXNativeTarget "testtimer" */ = {
  3855. isa = XCConfigurationList;
  3856. buildConfigurations = (
  3857. 002A85CB1073008E007319AE /* Debug */,
  3858. 002A85ED1073009D007319AE /* Release */,
  3859. );
  3860. defaultConfigurationIsVisible = 0;
  3861. defaultConfigurationName = Debug;
  3862. };
  3863. 001B598008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testversion" */ = {
  3864. isa = XCConfigurationList;
  3865. buildConfigurations = (
  3866. 002A85CC1073008E007319AE /* Debug */,
  3867. 002A85EE1073009D007319AE /* Release */,
  3868. );
  3869. defaultConfigurationIsVisible = 0;
  3870. defaultConfigurationName = Debug;
  3871. };
  3872. 001B599408BDB826006539E9 /* Build configuration list for PBXNativeTarget "torturethread" */ = {
  3873. isa = XCConfigurationList;
  3874. buildConfigurations = (
  3875. 002A85D11073008E007319AE /* Debug */,
  3876. 002A85F31073009D007319AE /* Release */,
  3877. );
  3878. defaultConfigurationIsVisible = 0;
  3879. defaultConfigurationName = Debug;
  3880. };
  3881. 001B599808BDB826006539E9 /* Build configuration list for PBXAggregateTarget "All" */ = {
  3882. isa = XCConfigurationList;
  3883. buildConfigurations = (
  3884. 002A85B31073008E007319AE /* Debug */,
  3885. 002A85D51073009D007319AE /* Release */,
  3886. );
  3887. defaultConfigurationIsVisible = 0;
  3888. defaultConfigurationName = Debug;
  3889. };
  3890. 001B5A0C08BDB826006539E9 /* Build configuration list for PBXProject "SDLTest" */ = {
  3891. isa = XCConfigurationList;
  3892. buildConfigurations = (
  3893. 002A85B21073008E007319AE /* Debug */,
  3894. 002A85D41073009D007319AE /* Release */,
  3895. );
  3896. defaultConfigurationIsVisible = 0;
  3897. defaultConfigurationName = Debug;
  3898. };
  3899. 002F340E09CA1BFF00EBEB88 /* Build configuration list for PBXNativeTarget "testfile" */ = {
  3900. isa = XCConfigurationList;
  3901. buildConfigurations = (
  3902. 002A85BD1073008E007319AE /* Debug */,
  3903. 002A85DF1073009D007319AE /* Release */,
  3904. );
  3905. defaultConfigurationIsVisible = 0;
  3906. defaultConfigurationName = Debug;
  3907. };
  3908. 002F342D09CA1F0300EBEB88 /* Build configuration list for PBXNativeTarget "testiconv" */ = {
  3909. isa = XCConfigurationList;
  3910. buildConfigurations = (
  3911. 002A85C01073008E007319AE /* Debug */,
  3912. 002A85E21073009D007319AE /* Release */,
  3913. );
  3914. defaultConfigurationIsVisible = 0;
  3915. defaultConfigurationName = Debug;
  3916. };
  3917. 002F344909CA1FB300EBEB88 /* Build configuration list for PBXNativeTarget "testoverlay" */ = {
  3918. isa = XCConfigurationList;
  3919. buildConfigurations = (
  3920. 002A85C51073008E007319AE /* Debug */,
  3921. 002A85E71073009D007319AE /* Release */,
  3922. );
  3923. defaultConfigurationIsVisible = 0;
  3924. defaultConfigurationName = Debug;
  3925. };
  3926. 002F346609CA204F00EBEB88 /* Build configuration list for PBXNativeTarget "testplatform" */ = {
  3927. isa = XCConfigurationList;
  3928. buildConfigurations = (
  3929. 002A85C71073008E007319AE /* Debug */,
  3930. 002A85E91073009D007319AE /* Release */,
  3931. );
  3932. defaultConfigurationIsVisible = 0;
  3933. defaultConfigurationName = Debug;
  3934. };
  3935. 4537749A1209150C002F0F45 /* Build configuration list for PBXNativeTarget "testshape" */ = {
  3936. isa = XCConfigurationList;
  3937. buildConfigurations = (
  3938. 4537749712091509002F0F45 /* Debug */,
  3939. 4537749812091509002F0F45 /* Release */,
  3940. );
  3941. defaultConfigurationIsVisible = 0;
  3942. defaultConfigurationName = Debug;
  3943. };
  3944. BBFC08CA164C6862003E6A99 /* Build configuration list for PBXNativeTarget "testgamepad" */ = {
  3945. isa = XCConfigurationList;
  3946. buildConfigurations = (
  3947. BBFC08CB164C6862003E6A99 /* Debug */,
  3948. BBFC08CC164C6862003E6A99 /* Release */,
  3949. );
  3950. defaultConfigurationIsVisible = 0;
  3951. defaultConfigurationName = Debug;
  3952. };
  3953. DB0F48E917CA51E5008798C5 /* Build configuration list for PBXNativeTarget "testdrawchessboard" */ = {
  3954. isa = XCConfigurationList;
  3955. buildConfigurations = (
  3956. DB0F48EA17CA51E5008798C5 /* Debug */,
  3957. DB0F48EB17CA51E5008798C5 /* Release */,
  3958. );
  3959. defaultConfigurationIsVisible = 0;
  3960. defaultConfigurationName = Debug;
  3961. };
  3962. DB0F48FE17CA5212008798C5 /* Build configuration list for PBXNativeTarget "testfilesystem" */ = {
  3963. isa = XCConfigurationList;
  3964. buildConfigurations = (
  3965. DB0F48FF17CA5212008798C5 /* Debug */,
  3966. DB0F490017CA5212008798C5 /* Release */,
  3967. );
  3968. defaultConfigurationIsVisible = 0;
  3969. defaultConfigurationName = Debug;
  3970. };
  3971. DB166D8016A1D12400A1396C /* Build configuration list for PBXNativeTarget "SDL_test" */ = {
  3972. isa = XCConfigurationList;
  3973. buildConfigurations = (
  3974. DB166D8116A1D12400A1396C /* Debug */,
  3975. DB166D8216A1D12400A1396C /* Release */,
  3976. );
  3977. defaultConfigurationIsVisible = 0;
  3978. defaultConfigurationName = Debug;
  3979. };
  3980. DB166DD216A1D36A00A1396C /* Build configuration list for PBXNativeTarget "testmessage" */ = {
  3981. isa = XCConfigurationList;
  3982. buildConfigurations = (
  3983. DB166DD316A1D36A00A1396C /* Debug */,
  3984. DB166DD416A1D36A00A1396C /* Release */,
  3985. );
  3986. defaultConfigurationIsVisible = 0;
  3987. defaultConfigurationName = Debug;
  3988. };
  3989. DB166DEB16A1D50C00A1396C /* Build configuration list for PBXNativeTarget "testrelative" */ = {
  3990. isa = XCConfigurationList;
  3991. buildConfigurations = (
  3992. DB166DEC16A1D50C00A1396C /* Debug */,
  3993. DB166DED16A1D50C00A1396C /* Release */,
  3994. );
  3995. defaultConfigurationIsVisible = 0;
  3996. defaultConfigurationName = Debug;
  3997. };
  3998. DB166E0216A1D57C00A1396C /* Build configuration list for PBXNativeTarget "testrendercopyex" */ = {
  3999. isa = XCConfigurationList;
  4000. buildConfigurations = (
  4001. DB166E0316A1D57C00A1396C /* Debug */,
  4002. DB166E0416A1D57C00A1396C /* Release */,
  4003. );
  4004. defaultConfigurationIsVisible = 0;
  4005. defaultConfigurationName = Debug;
  4006. };
  4007. DB166E1916A1D5AD00A1396C /* Build configuration list for PBXNativeTarget "testrendertarget" */ = {
  4008. isa = XCConfigurationList;
  4009. buildConfigurations = (
  4010. DB166E1A16A1D5AD00A1396C /* Debug */,
  4011. DB166E1B16A1D5AD00A1396C /* Release */,
  4012. );
  4013. defaultConfigurationIsVisible = 0;
  4014. defaultConfigurationName = Debug;
  4015. };
  4016. DB166E3516A1D64D00A1396C /* Build configuration list for PBXNativeTarget "testrumble" */ = {
  4017. isa = XCConfigurationList;
  4018. buildConfigurations = (
  4019. DB166E3616A1D64D00A1396C /* Debug */,
  4020. DB166E3716A1D64D00A1396C /* Release */,
  4021. );
  4022. defaultConfigurationIsVisible = 0;
  4023. defaultConfigurationName = Debug;
  4024. };
  4025. DB166E4F16A1D69000A1396C /* Build configuration list for PBXNativeTarget "testscale" */ = {
  4026. isa = XCConfigurationList;
  4027. buildConfigurations = (
  4028. DB166E5016A1D69000A1396C /* Debug */,
  4029. DB166E5116A1D69000A1396C /* Release */,
  4030. );
  4031. defaultConfigurationIsVisible = 0;
  4032. defaultConfigurationName = Debug;
  4033. };
  4034. DB166E6516A1D6F300A1396C /* Build configuration list for PBXNativeTarget "testshader" */ = {
  4035. isa = XCConfigurationList;
  4036. buildConfigurations = (
  4037. DB166E6616A1D6F300A1396C /* Debug */,
  4038. DB166E6716A1D6F300A1396C /* Release */,
  4039. );
  4040. defaultConfigurationIsVisible = 0;
  4041. defaultConfigurationName = Debug;
  4042. };
  4043. DB166E7B16A1D78400A1396C /* Build configuration list for PBXNativeTarget "testspriteminimal" */ = {
  4044. isa = XCConfigurationList;
  4045. buildConfigurations = (
  4046. DB166E7C16A1D78400A1396C /* Debug */,
  4047. DB166E7D16A1D78400A1396C /* Release */,
  4048. );
  4049. defaultConfigurationIsVisible = 0;
  4050. defaultConfigurationName = Debug;
  4051. };
  4052. DB166E8E16A1D78C00A1396C /* Build configuration list for PBXNativeTarget "teststreaming" */ = {
  4053. isa = XCConfigurationList;
  4054. buildConfigurations = (
  4055. DB166E8F16A1D78C00A1396C /* Debug */,
  4056. DB166E9016A1D78C00A1396C /* Release */,
  4057. );
  4058. defaultConfigurationIsVisible = 0;
  4059. defaultConfigurationName = Debug;
  4060. };
  4061. DB445EF518184B7000B306B0 /* Build configuration list for PBXNativeTarget "testdropfile" */ = {
  4062. isa = XCConfigurationList;
  4063. buildConfigurations = (
  4064. DB445EF618184B7000B306B0 /* Debug */,
  4065. DB445EF718184B7000B306B0 /* Release */,
  4066. );
  4067. defaultConfigurationIsVisible = 0;
  4068. defaultConfigurationName = Debug;
  4069. };
  4070. DB89957B18A19ABA0092407C /* Build configuration list for PBXNativeTarget "testhotplug" */ = {
  4071. isa = XCConfigurationList;
  4072. buildConfigurations = (
  4073. DB89957C18A19ABA0092407C /* Debug */,
  4074. DB89957D18A19ABA0092407C /* Release */,
  4075. );
  4076. defaultConfigurationIsVisible = 0;
  4077. defaultConfigurationName = Debug;
  4078. };
  4079. DBEC54E71A1A81C3005B1EAB /* Build configuration list for PBXNativeTarget "gamepadmap" */ = {
  4080. isa = XCConfigurationList;
  4081. buildConfigurations = (
  4082. DBEC54E81A1A81C3005B1EAB /* Debug */,
  4083. DBEC54E91A1A81C3005B1EAB /* Release */,
  4084. );
  4085. defaultConfigurationIsVisible = 0;
  4086. defaultConfigurationName = Debug;
  4087. };
  4088. F3C17CE828E416D000E1A26D /* Build configuration list for PBXNativeTarget "testgeometry" */ = {
  4089. isa = XCConfigurationList;
  4090. buildConfigurations = (
  4091. F3C17CE928E416D000E1A26D /* Debug */,
  4092. F3C17CEA28E416D000E1A26D /* Release */,
  4093. );
  4094. defaultConfigurationIsVisible = 0;
  4095. defaultConfigurationName = Debug;
  4096. };
  4097. /* End XCConfigurationList section */
  4098. };
  4099. rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
  4100. }