project.pbxproj 177 KB

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