project.pbxproj 214 KB

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