project.pbxproj 183 KB

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