project.pbxproj 220 KB

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