project.pbxproj 219 KB

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