project.pbxproj 218 KB

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