123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305 |
- // !$*UTF8*$!
- {
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 46;
- objects = {
- /* Begin PBXAggregateTarget section */
- BEC566920761D90300A33029 /* All */ = {
- isa = PBXAggregateTarget;
- buildConfigurationList = 001B599808BDB826006539E9 /* Build configuration list for PBXAggregateTarget "All" */;
- buildPhases = (
- );
- dependencies = (
- DB0F490517CA5249008798C5 /* PBXTargetDependency */,
- DB0F490717CA5249008798C5 /* PBXTargetDependency */,
- DB166E9816A1D7CF00A1396C /* PBXTargetDependency */,
- DB166E9616A1D7CD00A1396C /* PBXTargetDependency */,
- DB166E6C16A1D72000A1396C /* PBXTargetDependency */,
- DB166E5616A1D6B800A1396C /* PBXTargetDependency */,
- DB166E3B16A1D65A00A1396C /* PBXTargetDependency */,
- DB166E2016A1D5D000A1396C /* PBXTargetDependency */,
- DB166E0916A1D5A400A1396C /* PBXTargetDependency */,
- DB166DF216A1D53700A1396C /* PBXTargetDependency */,
- DB166DD916A1D38900A1396C /* PBXTargetDependency */,
- 001799481074403E00F5D044 /* PBXTargetDependency */,
- 0017994C1074403E00F5D044 /* PBXTargetDependency */,
- 001799501074403E00F5D044 /* PBXTargetDependency */,
- 001799521074403E00F5D044 /* PBXTargetDependency */,
- 0017995A1074403E00F5D044 /* PBXTargetDependency */,
- 0017995E1074403E00F5D044 /* PBXTargetDependency */,
- 001799601074403E00F5D044 /* PBXTargetDependency */,
- 001799661074403E00F5D044 /* PBXTargetDependency */,
- 001799681074403E00F5D044 /* PBXTargetDependency */,
- 0017996A1074403E00F5D044 /* PBXTargetDependency */,
- 0017996C1074403E00F5D044 /* PBXTargetDependency */,
- 0017996E1074403E00F5D044 /* PBXTargetDependency */,
- 001799701074403E00F5D044 /* PBXTargetDependency */,
- 001799721074403E00F5D044 /* PBXTargetDependency */,
- 001799741074403E00F5D044 /* PBXTargetDependency */,
- 001799761074403E00F5D044 /* PBXTargetDependency */,
- 001799781074403E00F5D044 /* PBXTargetDependency */,
- 0017997C1074403E00F5D044 /* PBXTargetDependency */,
- 001799801074403E00F5D044 /* PBXTargetDependency */,
- 001799841074403E00F5D044 /* PBXTargetDependency */,
- 001799881074403E00F5D044 /* PBXTargetDependency */,
- 0017998A1074403E00F5D044 /* PBXTargetDependency */,
- 0017998C1074403E00F5D044 /* PBXTargetDependency */,
- 0017998E1074403E00F5D044 /* PBXTargetDependency */,
- 001799921074403E00F5D044 /* PBXTargetDependency */,
- 001799941074403E00F5D044 /* PBXTargetDependency */,
- 001799961074403E00F5D044 /* PBXTargetDependency */,
- 0017999E1074403E00F5D044 /* PBXTargetDependency */,
- 001799A21074403E00F5D044 /* PBXTargetDependency */,
- DB166D7016A1CEAF00A1396C /* PBXTargetDependency */,
- DB166D6E16A1CEAA00A1396C /* PBXTargetDependency */,
- DB166DC316A1D32C00A1396C /* PBXTargetDependency */,
- );
- name = All;
- productName = "Build All";
- };
- /* End PBXAggregateTarget section */
- /* Begin PBXBuildFile section */
- 001795901074216E00F5D044 /* testatomic.c in Sources */ = {isa = PBXBuildFile; fileRef = 0017958F1074216E00F5D044 /* testatomic.c */; };
- 001795B11074222D00F5D044 /* testaudioinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 001795B01074222D00F5D044 /* testaudioinfo.c */; };
- 0017972810742FB900F5D044 /* testgl2.c in Sources */ = {isa = PBXBuildFile; fileRef = 0017972710742FB900F5D044 /* testgl2.c */; };
- 0017974F1074315700F5D044 /* testhaptic.c in Sources */ = {isa = PBXBuildFile; fileRef = 0017974E1074315700F5D044 /* testhaptic.c */; };
- 001797721074320D00F5D044 /* testdraw2.c in Sources */ = {isa = PBXBuildFile; fileRef = 001797711074320D00F5D044 /* testdraw2.c */; };
- 00179792107432FA00F5D044 /* testime.c in Sources */ = {isa = PBXBuildFile; fileRef = 00179791107432FA00F5D044 /* testime.c */; };
- 001797B41074339C00F5D044 /* testintersections.c in Sources */ = {isa = PBXBuildFile; fileRef = 001797B31074339C00F5D044 /* testintersections.c */; };
- 001797D41074343E00F5D044 /* testloadso.c in Sources */ = {isa = PBXBuildFile; fileRef = 001797D31074343E00F5D044 /* testloadso.c */; };
- 001798161074359B00F5D044 /* testmultiaudio.c in Sources */ = {isa = PBXBuildFile; fileRef = 001798151074359B00F5D044 /* testmultiaudio.c */; };
- 0017987F1074392D00F5D044 /* testnative.c in Sources */ = {isa = PBXBuildFile; fileRef = 0017985A107436ED00F5D044 /* testnative.c */; };
- 001798801074392D00F5D044 /* testnativecocoa.m in Sources */ = {isa = PBXBuildFile; fileRef = 0017985C107436ED00F5D044 /* testnativecocoa.m */; };
- 001798BA10743A4900F5D044 /* testpower.c in Sources */ = {isa = PBXBuildFile; fileRef = 001798B910743A4900F5D044 /* testpower.c */; };
- 001798FA10743E9200F5D044 /* testresample.c in Sources */ = {isa = PBXBuildFile; fileRef = 001798F910743E9200F5D044 /* testresample.c */; };
- 0017991A10743F5300F5D044 /* testsprite2.c in Sources */ = {isa = PBXBuildFile; fileRef = 0017991910743F5300F5D044 /* testsprite2.c */; };
- 0017993C10743FEF00F5D044 /* testwm2.c in Sources */ = {isa = PBXBuildFile; fileRef = 0017993B10743FEF00F5D044 /* testwm2.c */; };
- 002F341809CA1C5B00EBEB88 /* testfile.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F341709CA1C5B00EBEB88 /* testfile.c */; };
- 002F343709CA1F6F00EBEB88 /* testiconv.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F343609CA1F6F00EBEB88 /* testiconv.c */; };
- 002F345409CA202000EBEB88 /* testoverlay2.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F345209CA201C00EBEB88 /* testoverlay2.c */; };
- 002F347009CA20A600EBEB88 /* testplatform.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F346F09CA20A600EBEB88 /* testplatform.c */; };
- 00794E6609D20865003FC8A1 /* sample.wav in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E6209D20839003FC8A1 /* sample.wav */; };
- 00794EF009D23739003FC8A1 /* utf8.txt in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E6309D20839003FC8A1 /* utf8.txt */; };
- 00794EF709D237DE003FC8A1 /* moose.dat in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E5E09D20839003FC8A1 /* moose.dat */; };
- 453774A5120915E3002F0F45 /* testshape.c in Sources */ = {isa = PBXBuildFile; fileRef = 453774A4120915E3002F0F45 /* testshape.c */; };
- 66E88E8B203B778F0004D44E /* testyuv_cvt.c in Sources */ = {isa = PBXBuildFile; fileRef = 66E88E8A203B778F0004D44E /* testyuv_cvt.c */; };
- AAF02FFA1F90092700B9A9FB /* SDL_test_memory.c in Sources */ = {isa = PBXBuildFile; fileRef = AAF02FF41F90089800B9A9FB /* SDL_test_memory.c */; };
- BBFC08D0164C6876003E6A99 /* testgamecontroller.c in Sources */ = {isa = PBXBuildFile; fileRef = BBFC088E164C6820003E6A99 /* testgamecontroller.c */; };
- BEC566B10761D90300A33029 /* checkkeys.c in Sources */ = {isa = PBXBuildFile; fileRef = 092D6D10FFB30A2C7F000001 /* checkkeys.c */; };
- BEC566CB0761D90300A33029 /* loopwave.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E4872006D84C97F000001 /* loopwave.c */; };
- BEC567010761D90300A33029 /* testerror.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E4878006D85357F000001 /* testerror.c */; };
- BEC567290761D90400A33029 /* testthread.c in Sources */ = {isa = PBXBuildFile; fileRef = 092D6D58FFB311A97F000001 /* testthread.c */; };
- BEC567360761D90400A33029 /* testjoystick.c in Sources */ = {isa = PBXBuildFile; fileRef = 092D6D62FFB312AA7F000001 /* testjoystick.c */; };
- BEC567430761D90400A33029 /* testkeys.c in Sources */ = {isa = PBXBuildFile; fileRef = 092D6D6CFFB313437F000001 /* testkeys.c */; };
- BEC567500761D90400A33029 /* testlock.c in Sources */ = {isa = PBXBuildFile; fileRef = 092D6D75FFB313BB7F000001 /* testlock.c */; };
- BEC567780761D90500A33029 /* testsem.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E487E006D86A17F000001 /* testsem.c */; };
- BEC567930761D90500A33029 /* testtimer.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E4880006D86A17F000001 /* testtimer.c */; };
- BEC567AD0761D90500A33029 /* testver.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E4882006D86A17F000001 /* testver.c */; };
- BEC567F00761D90600A33029 /* torturethread.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E4887006D86A17F000001 /* torturethread.c */; };
- DB0F48EE17CA51F8008798C5 /* testdrawchessboard.c in Sources */ = {isa = PBXBuildFile; fileRef = DB0F48D717CA51D2008798C5 /* testdrawchessboard.c */; };
- DB0F490317CA5225008798C5 /* testfilesystem.c in Sources */ = {isa = PBXBuildFile; fileRef = DB0F48D817CA51D2008798C5 /* testfilesystem.c */; };
- DB166D9316A1D1A500A1396C /* SDL_test_assert.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8416A1D1A500A1396C /* SDL_test_assert.c */; };
- DB166D9416A1D1A500A1396C /* SDL_test_common.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8516A1D1A500A1396C /* SDL_test_common.c */; };
- DB166D9516A1D1A500A1396C /* SDL_test_compare.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8616A1D1A500A1396C /* SDL_test_compare.c */; };
- DB166D9616A1D1A500A1396C /* SDL_test_crc32.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8716A1D1A500A1396C /* SDL_test_crc32.c */; };
- DB166D9716A1D1A500A1396C /* SDL_test_font.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8816A1D1A500A1396C /* SDL_test_font.c */; };
- DB166D9816A1D1A500A1396C /* SDL_test_fuzzer.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8916A1D1A500A1396C /* SDL_test_fuzzer.c */; };
- DB166D9916A1D1A500A1396C /* SDL_test_harness.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8A16A1D1A500A1396C /* SDL_test_harness.c */; };
- DB166D9A16A1D1A500A1396C /* SDL_test_imageBlit.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8B16A1D1A500A1396C /* SDL_test_imageBlit.c */; };
- DB166D9B16A1D1A500A1396C /* SDL_test_imageBlitBlend.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8C16A1D1A500A1396C /* SDL_test_imageBlitBlend.c */; };
- DB166D9C16A1D1A500A1396C /* SDL_test_imageFace.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8D16A1D1A500A1396C /* SDL_test_imageFace.c */; };
- DB166D9D16A1D1A500A1396C /* SDL_test_imagePrimitives.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8E16A1D1A500A1396C /* SDL_test_imagePrimitives.c */; };
- DB166D9E16A1D1A500A1396C /* SDL_test_imagePrimitivesBlend.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8F16A1D1A500A1396C /* SDL_test_imagePrimitivesBlend.c */; };
- DB166D9F16A1D1A500A1396C /* SDL_test_log.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D9016A1D1A500A1396C /* SDL_test_log.c */; };
- DB166DA016A1D1A500A1396C /* SDL_test_md5.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D9116A1D1A500A1396C /* SDL_test_md5.c */; };
- DB166DA116A1D1A500A1396C /* SDL_test_random.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D9216A1D1A500A1396C /* SDL_test_random.c */; };
- DB166DA216A1D1E900A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; };
- DB166DA316A1D1FA00A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; };
- DB166DA416A1D21700A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; };
- DB166DA716A1D24D00A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; };
- DB166DAA16A1D27700A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; };
- DB166DAB16A1D27C00A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; };
- DB166DAC16A1D29000A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; };
- DB166DC116A1D31E00A1396C /* testgesture.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166CBB16A1C74100A1396C /* testgesture.c */; };
- DB166DD716A1D37800A1396C /* testmessage.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166CBD16A1C74100A1396C /* testmessage.c */; };
- DB166DDB16A1D42F00A1396C /* icon.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E5D09D20839003FC8A1 /* icon.bmp */; };
- DB166DEA16A1D50C00A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; };
- DB166DF016A1D52500A1396C /* testrelative.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166CBF16A1C74100A1396C /* testrelative.c */; };
- DB166E0116A1D57C00A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; };
- DB166E0716A1D59400A1396C /* testrendercopyex.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166CC016A1C74100A1396C /* testrendercopyex.c */; };
- DB166E1816A1D5AD00A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; };
- DB166E1E16A1D5C300A1396C /* testrendertarget.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166CC116A1C74100A1396C /* testrendertarget.c */; };
- DB166E2216A1D5EC00A1396C /* sample.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E6109D20839003FC8A1 /* sample.bmp */; };
- DB166E2316A1D60B00A1396C /* icon.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E5D09D20839003FC8A1 /* icon.bmp */; };
- DB166E2516A1D61900A1396C /* icon.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E5D09D20839003FC8A1 /* icon.bmp */; };
- DB166E2616A1D61900A1396C /* sample.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E6109D20839003FC8A1 /* sample.bmp */; };
- DB166E3C16A1D66500A1396C /* testrumble.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166CC216A1C74100A1396C /* testrumble.c */; };
- DB166E4B16A1D69000A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; };
- DB166E4D16A1D69000A1396C /* icon.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E5D09D20839003FC8A1 /* icon.bmp */; };
- DB166E4E16A1D69000A1396C /* sample.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E6109D20839003FC8A1 /* sample.bmp */; };
- DB166E5416A1D6A300A1396C /* testscale.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166CC316A1C74100A1396C /* testscale.c */; };
- DB166E6A16A1D70C00A1396C /* testshader.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166CC416A1C74100A1396C /* testshader.c */; };
- DB166E9316A1D7BC00A1396C /* testspriteminimal.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166CC516A1C74100A1396C /* testspriteminimal.c */; };
- DB166E9416A1D7C700A1396C /* teststreaming.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166CC616A1C74100A1396C /* teststreaming.c */; };
- DB166E9A16A1D7F700A1396C /* moose.dat in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E5E09D20839003FC8A1 /* moose.dat */; };
- DB166E9C16A1D80900A1396C /* icon.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E5D09D20839003FC8A1 /* icon.bmp */; };
- DB166ED016A1D88100A1396C /* shapes in CopyFiles */ = {isa = PBXBuildFile; fileRef = DB166ECF16A1D87000A1396C /* shapes */; };
- DB445EF418184B7000B306B0 /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; };
- DB445EFB18184BB600B306B0 /* testdropfile.c in Sources */ = {isa = PBXBuildFile; fileRef = DB445EFA18184BB600B306B0 /* testdropfile.c */; };
- DB89958418A19B130092407C /* testhotplug.c in Sources */ = {isa = PBXBuildFile; fileRef = DB89958318A19B130092407C /* testhotplug.c */; };
- DBEC54EB1A1A8205005B1EAB /* controllermap.c in Sources */ = {isa = PBXBuildFile; fileRef = DBEC54D11A1A811D005B1EAB /* controllermap.c */; };
- DBEC54ED1A1A828A005B1EAB /* axis.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = DBEC54D61A1A8145005B1EAB /* axis.bmp */; };
- DBEC54EE1A1A828D005B1EAB /* button.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = DBEC54D71A1A8145005B1EAB /* button.bmp */; };
- DBEC54EF1A1A828F005B1EAB /* controllermap.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = DBEC54D81A1A8145005B1EAB /* controllermap.bmp */; };
- F3C17C6B28E4022A00E1A26D /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; };
- F3C17C7428E40AF000E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
- F3C17C7628E40BA200E1A26D /* controllermap_back.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = F3C17C7528E40B6B00E1A26D /* controllermap_back.bmp */; };
- F3C17C7728E40BC800E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
- F3C17C7928E40C6E00E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
- F3C17C7A28E40CA600E1A26D /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; };
- F3C17C7B28E40D4E00E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
- F3C17C7C28E40D7400E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
- F3C17C7D28E40F9D00E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
- F3C17C7E28E40FDD00E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
- F3C17C7F28E4101000E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
- F3C17C8028E410A400E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
- F3C17C8128E410C900E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
- F3C17C8228E4112900E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
- F3C17C8328E4124400E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
- F3C17C8428E4126400E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
- F3C17C8528E4127D00E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
- F3C17CEB28E4177600E1A26D /* testgeometry.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CD628E416AC00E1A26D /* testgeometry.c */; };
- F3C17CEC28E417EB00E1A26D /* testutils.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17C7328E40ADE00E1A26D /* testutils.c */; };
- F3C17CED28E417F400E1A26D /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; };
- F3C17CEE28E4184700E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17CEF28E41D5800E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17CFC28E41E9800E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17CFD28E41EA100E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17CFE28E41EAC00E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17CFF28E41EB000E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D0028E41EB400E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D0128E41EB800E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D0228E41EBC00E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D0328E41EC500E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D0428E41EC800E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D0528E41ECB00E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D0628E41ECF00E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D0728E41ED300E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D0828E41EDB00E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D0928E41EE100E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D0A28E41EE700E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D0B28E41EEB00E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D0C28E41EF000E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D0D28E41EF400E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D0E28E41EF900E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D0F28E41EFE00E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D1028E41F0200E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D1128E41F0600E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D1228E41F0A00E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D1328E41F0D00E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D1428E41F1100E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D1528E41F1F00E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D1628E41F2400E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D1728E41F2800E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D1828E41F2C00E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D1928E41F3100E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D1A28E41F3500E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D1B28E41F3800E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D1C28E41F3C00E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D1D28E41F4000E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D1E28E41F4500E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D1F28E41F4800E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D2028E41F4D00E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D2228E41F5F00E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D2328E41F6200E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D2428E41F6600E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D2528E41F6A00E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D2628E41F6E00E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D2728E41FD800E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D2828E41FDC00E1A26D /* SDL_uikit_main.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */; };
- F3C17D3928E424B800E1A26D /* sample.wav in Resources */ = {isa = PBXBuildFile; fileRef = 00794E6209D20839003FC8A1 /* sample.wav */; };
- F3C17D3B28E4252900E1A26D /* icon.bmp in Resources */ = {isa = PBXBuildFile; fileRef = 00794E5D09D20839003FC8A1 /* icon.bmp */; };
- F3C17D3C28E4277D00E1A26D /* axis.bmp in Resources */ = {isa = PBXBuildFile; fileRef = DBEC54D61A1A8145005B1EAB /* axis.bmp */; };
- F3C17D3D28E4277D00E1A26D /* button.bmp in Resources */ = {isa = PBXBuildFile; fileRef = DBEC54D71A1A8145005B1EAB /* button.bmp */; };
- F3C17D3E28E4277D00E1A26D /* controllermap_back.bmp in Resources */ = {isa = PBXBuildFile; fileRef = F3C17C7528E40B6B00E1A26D /* controllermap_back.bmp */; };
- F3C17D3F28E4277D00E1A26D /* controllermap.bmp in Resources */ = {isa = PBXBuildFile; fileRef = DBEC54D81A1A8145005B1EAB /* controllermap.bmp */; };
- /* End PBXBuildFile section */
- /* Begin PBXContainerItemProxy section */
- 001799471074403E00F5D044 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = BEC566AB0761D90300A33029;
- remoteInfo = checkkeys;
- };
- 0017994B1074403E00F5D044 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = BEC566C50761D90300A33029;
- remoteInfo = loopwave;
- };
- 0017994F1074403E00F5D044 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 0017957410741F7900F5D044;
- remoteInfo = testatomic;
- };
- 001799511074403E00F5D044 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 00179595107421BF00F5D044;
- remoteInfo = testaudioinfo;
- };
- 001799591074403E00F5D044 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 00179756107431B300F5D044;
- remoteInfo = testdraw2;
- };
- 0017995D1074403E00F5D044 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = BEC566FB0761D90300A33029;
- remoteInfo = testerror;
- };
- 0017995F1074403E00F5D044 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 002F340109CA1BFF00EBEB88;
- remoteInfo = testfile;
- };
- 001799651074403E00F5D044 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 0017970910742F3200F5D044;
- remoteInfo = testgl2;
- };
- 001799671074403E00F5D044 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 00179730107430D600F5D044;
- remoteInfo = testhaptic;
- };
- 001799691074403E00F5D044 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = BEC567230761D90400A33029;
- remoteInfo = testthread;
- };
- 0017996B1074403E00F5D044 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 002F342009CA1F0300EBEB88;
- remoteInfo = testiconv;
- };
- 0017996D1074403E00F5D044 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 00179776107432AE00F5D044;
- remoteInfo = testime;
- };
- 0017996F1074403E00F5D044 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 001797961074334C00F5D044;
- remoteInfo = testintersections;
- };
- 001799711074403E00F5D044 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = BEC567300761D90400A33029;
- remoteInfo = testjoystick;
- };
- 001799731074403E00F5D044 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = BEC5673D0761D90400A33029;
- remoteInfo = testkeys;
- };
- 001799751074403E00F5D044 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 001797B8107433C600F5D044;
- remoteInfo = testloadso;
- };
- 001799771074403E00F5D044 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = BEC5674A0761D90400A33029;
- remoteInfo = testlock;
- };
- 0017997B1074403E00F5D044 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 001797FA1074355200F5D044;
- remoteInfo = testmultiaudio;
- };
- 0017997F1074403E00F5D044 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 001798781074392D00F5D044;
- remoteInfo = testnativex11;
- };
- 001799831074403E00F5D044 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 002F343C09CA1FB300EBEB88;
- remoteInfo = testoverlay2;
- };
- 001799871074403E00F5D044 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 002F345909CA204F00EBEB88;
- remoteInfo = testplatform;
- };
- 001799891074403E00F5D044 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 0017989D107439DF00F5D044;
- remoteInfo = testpower;
- };
- 0017998B1074403E00F5D044 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 001798DA10743BEC00F5D044;
- remoteInfo = testresample;
- };
- 0017998D1074403E00F5D044 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = BEC567720761D90500A33029;
- remoteInfo = testsem;
- };
- 001799911074403E00F5D044 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 001798FE10743F1000F5D044;
- remoteInfo = testsprite2;
- };
- 001799931074403E00F5D044 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = BEC5678D0761D90500A33029;
- remoteInfo = testtimer;
- };
- 001799951074403E00F5D044 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = BEC567A70761D90500A33029;
- remoteInfo = testversion;
- };
- 0017999D1074403E00F5D044 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 0017992010743FB700F5D044;
- remoteInfo = testwm2;
- };
- 001799A11074403E00F5D044 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = BEC567EA0761D90600A33029;
- remoteInfo = torturethread;
- };
- 003FA642093FFD41000C53B3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = BECDF66C0761BA81005FE872;
- remoteInfo = Framework;
- };
- 003FA644093FFD41000C53B3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = BECDF6B30761BA81005FE872;
- remoteInfo = "Static Library";
- };
- 003FA648093FFD41000C53B3 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = BECDF6BE0761BA81005FE872;
- remoteInfo = "Standard DMG";
- };
- DB0F490417CA5249008798C5 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = DB0F48D917CA51E5008798C5;
- remoteInfo = testdrawchessboard;
- };
- DB0F490617CA5249008798C5 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = DB0F48EF17CA5212008798C5;
- remoteInfo = testfilesystem;
- };
- DB166D6D16A1CEAA00A1396C /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = BBFC08B7164C6862003E6A99;
- remoteInfo = testgamecontroller;
- };
- DB166D6F16A1CEAF00A1396C /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 4537749112091504002F0F45;
- remoteInfo = testshape;
- };
- DB166DC216A1D32C00A1396C /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = DB166DAD16A1D2F600A1396C;
- remoteInfo = testgesture;
- };
- DB166DD816A1D38900A1396C /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = DB166DC416A1D36A00A1396C;
- remoteInfo = testmessage;
- };
- DB166DF116A1D53700A1396C /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = DB166DDC16A1D50C00A1396C;
- remoteInfo = testrelative;
- };
- DB166E0816A1D5A400A1396C /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = DB166DF316A1D57C00A1396C;
- remoteInfo = testrendercopyex;
- };
- DB166E1F16A1D5D000A1396C /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = DB166E0A16A1D5AD00A1396C;
- remoteInfo = testrendertarget;
- };
- DB166E3A16A1D65A00A1396C /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = DB166E2716A1D64D00A1396C;
- remoteInfo = testrumble;
- };
- DB166E5516A1D6B800A1396C /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = DB166E3D16A1D69000A1396C;
- remoteInfo = testscale;
- };
- DB166E6B16A1D72000A1396C /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = DB166E5716A1D6F300A1396C;
- remoteInfo = testshader;
- };
- DB166E9516A1D7CD00A1396C /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = DB166E6D16A1D78400A1396C;
- remoteInfo = testspriteminimal;
- };
- DB166E9716A1D7CF00A1396C /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = DB166E8016A1D78C00A1396C;
- remoteInfo = teststreaming;
- };
- DB1D40D617B3F30D00D74CFC /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = DB31407717554B71006C0E22;
- remoteInfo = "Shared Library";
- };
- F3C17C5C28E3FB2900E1A26D /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = A7D88B5423E2437C00DCD162;
- remoteInfo = "Framework-iOS";
- };
- F3C17C5E28E3FB2900E1A26D /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = A7D88D1523E24BED00DCD162;
- remoteInfo = "Framework-tvOS";
- };
- F3C17C6028E3FB2900E1A26D /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = E2D187CF28A5673500D2B4F1;
- remoteInfo = "xcFramework-iOS";
- };
- F3C17C6228E3FB2900E1A26D /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = A7D88E5423E24D3B00DCD162;
- remoteInfo = "Static Library-iOS";
- };
- F3C17C6428E3FB2900E1A26D /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = A769B23D23E259AE00872273;
- remoteInfo = "Static Library-tvOS";
- };
- F3C17C6628E3FB2900E1A26D /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = A75FCEB323E25AB700529352;
- remoteInfo = "Shared Library-iOS";
- };
- F3C17C6828E3FB2900E1A26D /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = A75FD06C23E25AC700529352;
- remoteInfo = "Shared Library-tvOS";
- };
- /* End PBXContainerItemProxy section */
- /* Begin PBXCopyFilesBuildPhase section */
- 00794E6409D2084F003FC8A1 /* CopyFiles */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = "";
- dstSubfolderSpec = 7;
- files = (
- 00794E6609D20865003FC8A1 /* sample.wav in CopyFiles */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 00794EEC09D2371F003FC8A1 /* CopyFiles */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = "";
- dstSubfolderSpec = 7;
- files = (
- 00794EF009D23739003FC8A1 /* utf8.txt in CopyFiles */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 00794EF409D237C7003FC8A1 /* CopyFiles */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = "";
- dstSubfolderSpec = 7;
- files = (
- 00794EF709D237DE003FC8A1 /* moose.dat in CopyFiles */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB166DDA16A1D40F00A1396C /* CopyFiles */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = "";
- dstSubfolderSpec = 7;
- files = (
- DB166DDB16A1D42F00A1396C /* icon.bmp in CopyFiles */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB166E2116A1D5DF00A1396C /* CopyFiles */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = "";
- dstSubfolderSpec = 7;
- files = (
- DB166E2316A1D60B00A1396C /* icon.bmp in CopyFiles */,
- DB166E2216A1D5EC00A1396C /* sample.bmp in CopyFiles */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB166E2416A1D61000A1396C /* CopyFiles */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = "";
- dstSubfolderSpec = 7;
- files = (
- DB166E2516A1D61900A1396C /* icon.bmp in CopyFiles */,
- DB166E2616A1D61900A1396C /* sample.bmp in CopyFiles */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB166E4C16A1D69000A1396C /* CopyFiles */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = "";
- dstSubfolderSpec = 7;
- files = (
- DB166E4D16A1D69000A1396C /* icon.bmp in CopyFiles */,
- DB166E4E16A1D69000A1396C /* sample.bmp in CopyFiles */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB166E9916A1D7EE00A1396C /* CopyFiles */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = "";
- dstSubfolderSpec = 7;
- files = (
- DB166E9A16A1D7F700A1396C /* moose.dat in CopyFiles */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB166E9B16A1D7FC00A1396C /* CopyFiles */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = "";
- dstSubfolderSpec = 7;
- files = (
- DB166E9C16A1D80900A1396C /* icon.bmp in CopyFiles */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB166ECE16A1D85400A1396C /* CopyFiles */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = "";
- dstSubfolderSpec = 7;
- files = (
- DB166ED016A1D88100A1396C /* shapes in CopyFiles */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DBEC54EC1A1A827C005B1EAB /* CopyFiles */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = "";
- dstSubfolderSpec = 7;
- files = (
- DBEC54ED1A1A828A005B1EAB /* axis.bmp in CopyFiles */,
- DBEC54EE1A1A828D005B1EAB /* button.bmp in CopyFiles */,
- DBEC54EF1A1A828F005B1EAB /* controllermap.bmp in CopyFiles */,
- F3C17C7628E40BA200E1A26D /* controllermap_back.bmp in CopyFiles */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXCopyFilesBuildPhase section */
- /* Begin PBXFileReference section */
- 0017958C10741F7900F5D044 /* testatomic */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testatomic; path = testatomic.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 0017958F1074216E00F5D044 /* testatomic.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testatomic.c; sourceTree = "<group>"; };
- 001795AD107421BF00F5D044 /* testaudioinfo */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testaudioinfo; path = testaudioinfo.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 001795B01074222D00F5D044 /* testaudioinfo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testaudioinfo.c; sourceTree = "<group>"; };
- 0017972110742F3200F5D044 /* testgl2.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testgl2.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 0017972710742FB900F5D044 /* testgl2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testgl2.c; sourceTree = "<group>"; };
- 00179748107430D600F5D044 /* testhaptic */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testhaptic; path = testhaptic.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 0017974E1074315700F5D044 /* testhaptic.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testhaptic.c; sourceTree = "<group>"; };
- 0017976E107431B300F5D044 /* testdraw2 */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testdraw2; path = testdraw2.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 001797711074320D00F5D044 /* testdraw2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testdraw2.c; sourceTree = "<group>"; };
- 0017978E107432AE00F5D044 /* testime */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testime; path = testime.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 00179791107432FA00F5D044 /* testime.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testime.c; sourceTree = "<group>"; };
- 001797AE1074334C00F5D044 /* testintersections */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testintersections; path = testintersections.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 001797B31074339C00F5D044 /* testintersections.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testintersections.c; sourceTree = "<group>"; };
- 001797D0107433C600F5D044 /* testloadso */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testloadso; path = testloadso.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 001797D31074343E00F5D044 /* testloadso.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testloadso.c; sourceTree = "<group>"; };
- 001798121074355200F5D044 /* testmultiaudio */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testmultiaudio; path = testmultiaudio.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 001798151074359B00F5D044 /* testmultiaudio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testmultiaudio.c; sourceTree = "<group>"; };
- 0017985A107436ED00F5D044 /* testnative.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testnative.c; sourceTree = "<group>"; };
- 0017985B107436ED00F5D044 /* testnative.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = testnative.h; sourceTree = "<group>"; };
- 0017985C107436ED00F5D044 /* testnativecocoa.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = testnativecocoa.m; sourceTree = "<group>"; };
- 00179872107438D000F5D044 /* testnativex11.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testnativex11.c; sourceTree = "<group>"; };
- 001798941074392D00F5D044 /* testnative.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testnative.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 001798B5107439DF00F5D044 /* testpower */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testpower; path = testpower.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 001798B910743A4900F5D044 /* testpower.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testpower.c; sourceTree = "<group>"; };
- 001798F210743BEC00F5D044 /* testresample */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testresample; path = testresample.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 001798F910743E9200F5D044 /* testresample.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testresample.c; sourceTree = "<group>"; };
- 0017991610743F1000F5D044 /* testsprite2 */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testsprite2; path = testsprite2.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 0017991910743F5300F5D044 /* testsprite2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testsprite2.c; sourceTree = "<group>"; };
- 0017993810743FB700F5D044 /* testwm2 */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testwm2; path = testwm2.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 0017993B10743FEF00F5D044 /* testwm2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testwm2.c; sourceTree = "<group>"; };
- 002F341209CA1BFF00EBEB88 /* testfile */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testfile; path = testfile.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 002F341709CA1C5B00EBEB88 /* testfile.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = testfile.c; sourceTree = "<group>"; };
- 002F343109CA1F0300EBEB88 /* testiconv */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testiconv; path = testiconv.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 002F343609CA1F6F00EBEB88 /* testiconv.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = testiconv.c; sourceTree = "<group>"; };
- 002F344D09CA1FB300EBEB88 /* testoverlay2 */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testoverlay2; path = testoverlay2.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 002F345209CA201C00EBEB88 /* testoverlay2.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = testoverlay2.c; sourceTree = "<group>"; };
- 002F346A09CA204F00EBEB88 /* testplatform */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testplatform; path = testplatform.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 002F346F09CA20A600EBEB88 /* testplatform.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = testplatform.c; sourceTree = "<group>"; };
- 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = SDL.xcodeproj; path = ../SDL/SDL.xcodeproj; sourceTree = SOURCE_ROOT; };
- 00794E5D09D20839003FC8A1 /* icon.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = icon.bmp; sourceTree = "<group>"; };
- 00794E5E09D20839003FC8A1 /* moose.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = moose.dat; sourceTree = "<group>"; };
- 00794E5F09D20839003FC8A1 /* picture.xbm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = picture.xbm; sourceTree = "<group>"; };
- 00794E6109D20839003FC8A1 /* sample.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = sample.bmp; sourceTree = "<group>"; };
- 00794E6209D20839003FC8A1 /* sample.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = sample.wav; sourceTree = "<group>"; };
- 00794E6309D20839003FC8A1 /* utf8.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = utf8.txt; sourceTree = "<group>"; };
- 083E4872006D84C97F000001 /* loopwave.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = loopwave.c; sourceTree = "<group>"; };
- 083E4878006D85357F000001 /* testerror.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = testerror.c; sourceTree = "<group>"; };
- 083E487E006D86A17F000001 /* testsem.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = testsem.c; sourceTree = "<group>"; };
- 083E4880006D86A17F000001 /* testtimer.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = testtimer.c; sourceTree = "<group>"; };
- 083E4882006D86A17F000001 /* testver.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = testver.c; sourceTree = "<group>"; };
- 083E4887006D86A17F000001 /* torturethread.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = torturethread.c; sourceTree = "<group>"; };
- 092D6D10FFB30A2C7F000001 /* checkkeys.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = checkkeys.c; sourceTree = "<group>"; };
- 092D6D58FFB311A97F000001 /* testthread.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = testthread.c; sourceTree = "<group>"; };
- 092D6D62FFB312AA7F000001 /* testjoystick.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = testjoystick.c; sourceTree = "<group>"; };
- 092D6D6CFFB313437F000001 /* testkeys.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = testkeys.c; sourceTree = "<group>"; };
- 092D6D75FFB313BB7F000001 /* testlock.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = testlock.c; sourceTree = "<group>"; };
- 4537749212091504002F0F45 /* testshape */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testshape; path = testshape.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 453774A4120915E3002F0F45 /* testshape.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testshape.c; sourceTree = "<group>"; };
- 66E88E8A203B778F0004D44E /* testyuv_cvt.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testyuv_cvt.c; sourceTree = "<group>"; };
- AAF02FF41F90089800B9A9FB /* SDL_test_memory.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_test_memory.c; sourceTree = "<group>"; };
- BBFC088E164C6820003E6A99 /* testgamecontroller.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testgamecontroller.c; sourceTree = "<group>"; };
- BBFC08CD164C6862003E6A99 /* testgamecontroller */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testgamecontroller; path = testgamecontroller.app; sourceTree = BUILT_PRODUCTS_DIR; };
- BEC566B60761D90300A33029 /* checkkeys */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = checkkeys; path = checkkeys.app; sourceTree = BUILT_PRODUCTS_DIR; };
- BEC566D10761D90300A33029 /* loopwave */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = loopwave; path = loopwave.app; sourceTree = BUILT_PRODUCTS_DIR; };
- BEC567060761D90400A33029 /* testerror */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testerror; path = testerror.app; sourceTree = BUILT_PRODUCTS_DIR; };
- BEC5672E0761D90400A33029 /* testthread */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testthread; path = testthread.app; sourceTree = BUILT_PRODUCTS_DIR; };
- BEC5673B0761D90400A33029 /* testjoystick */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testjoystick; path = testjoystick.app; sourceTree = BUILT_PRODUCTS_DIR; };
- BEC567480761D90400A33029 /* testkeys */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testkeys; path = testkeys.app; sourceTree = BUILT_PRODUCTS_DIR; };
- BEC567550761D90400A33029 /* testlock */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testlock; path = testlock.app; sourceTree = BUILT_PRODUCTS_DIR; };
- BEC5677D0761D90500A33029 /* testsem */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testsem; path = testsem.app; sourceTree = BUILT_PRODUCTS_DIR; };
- BEC567980761D90500A33029 /* testtimer */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testtimer; path = testtimer.app; sourceTree = BUILT_PRODUCTS_DIR; };
- BEC567B20761D90500A33029 /* testversion */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testversion; path = testversion.app; sourceTree = BUILT_PRODUCTS_DIR; };
- BEC567F50761D90600A33029 /* torturethread */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = torturethread; path = torturethread.app; sourceTree = BUILT_PRODUCTS_DIR; };
- DB0F48D717CA51D2008798C5 /* testdrawchessboard.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testdrawchessboard.c; sourceTree = "<group>"; };
- DB0F48D817CA51D2008798C5 /* testfilesystem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testfilesystem.c; sourceTree = "<group>"; };
- DB0F48EC17CA51E5008798C5 /* testdrawchessboard */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testdrawchessboard; path = testdrawchessboard.app; sourceTree = BUILT_PRODUCTS_DIR; };
- DB0F490117CA5212008798C5 /* testfilesystem */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testfilesystem; path = testfilesystem.app; sourceTree = BUILT_PRODUCTS_DIR; };
- DB166CBB16A1C74100A1396C /* testgesture.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testgesture.c; sourceTree = "<group>"; };
- DB166CBC16A1C74100A1396C /* testgles.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testgles.c; sourceTree = "<group>"; };
- DB166CBD16A1C74100A1396C /* testmessage.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testmessage.c; sourceTree = "<group>"; };
- DB166CBF16A1C74100A1396C /* testrelative.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testrelative.c; sourceTree = "<group>"; };
- DB166CC016A1C74100A1396C /* testrendercopyex.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testrendercopyex.c; sourceTree = "<group>"; };
- DB166CC116A1C74100A1396C /* testrendertarget.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testrendertarget.c; sourceTree = "<group>"; };
- DB166CC216A1C74100A1396C /* testrumble.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testrumble.c; sourceTree = "<group>"; };
- DB166CC316A1C74100A1396C /* testscale.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testscale.c; sourceTree = "<group>"; };
- DB166CC416A1C74100A1396C /* testshader.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testshader.c; sourceTree = "<group>"; };
- DB166CC516A1C74100A1396C /* testspriteminimal.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testspriteminimal.c; sourceTree = "<group>"; };
- DB166CC616A1C74100A1396C /* teststreaming.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = teststreaming.c; sourceTree = "<group>"; };
- DB166D7F16A1D12400A1396C /* libSDL_test.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libSDL_test.a; sourceTree = BUILT_PRODUCTS_DIR; };
- DB166D8416A1D1A500A1396C /* SDL_test_assert.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_test_assert.c; sourceTree = "<group>"; };
- DB166D8516A1D1A500A1396C /* SDL_test_common.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_test_common.c; sourceTree = "<group>"; };
- DB166D8616A1D1A500A1396C /* SDL_test_compare.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_test_compare.c; sourceTree = "<group>"; };
- DB166D8716A1D1A500A1396C /* SDL_test_crc32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_test_crc32.c; sourceTree = "<group>"; };
- DB166D8816A1D1A500A1396C /* SDL_test_font.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_test_font.c; sourceTree = "<group>"; };
- DB166D8916A1D1A500A1396C /* SDL_test_fuzzer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_test_fuzzer.c; sourceTree = "<group>"; };
- DB166D8A16A1D1A500A1396C /* SDL_test_harness.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_test_harness.c; sourceTree = "<group>"; };
- DB166D8B16A1D1A500A1396C /* SDL_test_imageBlit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_test_imageBlit.c; sourceTree = "<group>"; };
- DB166D8C16A1D1A500A1396C /* SDL_test_imageBlitBlend.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_test_imageBlitBlend.c; sourceTree = "<group>"; };
- DB166D8D16A1D1A500A1396C /* SDL_test_imageFace.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_test_imageFace.c; sourceTree = "<group>"; };
- DB166D8E16A1D1A500A1396C /* SDL_test_imagePrimitives.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_test_imagePrimitives.c; sourceTree = "<group>"; };
- DB166D8F16A1D1A500A1396C /* SDL_test_imagePrimitivesBlend.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_test_imagePrimitivesBlend.c; sourceTree = "<group>"; };
- DB166D9016A1D1A500A1396C /* SDL_test_log.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_test_log.c; sourceTree = "<group>"; };
- DB166D9116A1D1A500A1396C /* SDL_test_md5.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_test_md5.c; sourceTree = "<group>"; };
- DB166D9216A1D1A500A1396C /* SDL_test_random.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_test_random.c; sourceTree = "<group>"; };
- DB166DBF16A1D2F600A1396C /* testgesture */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testgesture; path = testgesture.app; sourceTree = BUILT_PRODUCTS_DIR; };
- DB166DD516A1D36A00A1396C /* testmessage */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testmessage; path = testmessage.app; sourceTree = BUILT_PRODUCTS_DIR; };
- DB166DEE16A1D50C00A1396C /* testrelative */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testrelative; path = testrelative.app; sourceTree = BUILT_PRODUCTS_DIR; };
- DB166E0516A1D57C00A1396C /* testrendercopyex */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testrendercopyex; path = testrendercopyex.app; sourceTree = BUILT_PRODUCTS_DIR; };
- DB166E1C16A1D5AD00A1396C /* testrendertarget */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testrendertarget; path = testrendertarget.app; sourceTree = BUILT_PRODUCTS_DIR; };
- DB166E3816A1D64D00A1396C /* testrumble */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testrumble; path = testrumble.app; sourceTree = BUILT_PRODUCTS_DIR; };
- DB166E5216A1D69000A1396C /* testscale */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testscale; path = testscale.app; sourceTree = BUILT_PRODUCTS_DIR; };
- DB166E6816A1D6F300A1396C /* testshader */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testshader; path = testshader.app; sourceTree = BUILT_PRODUCTS_DIR; };
- DB166E7E16A1D78400A1396C /* testspriteminimal */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testspriteminimal; path = testspriteminimal.app; sourceTree = BUILT_PRODUCTS_DIR; };
- DB166E9116A1D78C00A1396C /* teststreaming */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = teststreaming; path = teststreaming.app; sourceTree = BUILT_PRODUCTS_DIR; };
- DB166ECF16A1D87000A1396C /* shapes */ = {isa = PBXFileReference; lastKnownFileType = folder; path = shapes; sourceTree = "<group>"; };
- DB445EF818184B7000B306B0 /* testdropfile.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testdropfile.app; sourceTree = BUILT_PRODUCTS_DIR; };
- DB445EFA18184BB600B306B0 /* testdropfile.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testdropfile.c; sourceTree = "<group>"; };
- DB89957E18A19ABA0092407C /* testhotplug */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = testhotplug; path = testhotplug.app; sourceTree = BUILT_PRODUCTS_DIR; };
- DB89958318A19B130092407C /* testhotplug.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testhotplug.c; sourceTree = "<group>"; };
- DBBC552C182831D700F3CA8D /* TestDropFile-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "TestDropFile-Info.plist"; sourceTree = SOURCE_ROOT; };
- DBEC54D11A1A811D005B1EAB /* controllermap.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = controllermap.c; sourceTree = "<group>"; };
- DBEC54D61A1A8145005B1EAB /* axis.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = axis.bmp; sourceTree = "<group>"; };
- DBEC54D71A1A8145005B1EAB /* button.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = button.bmp; sourceTree = "<group>"; };
- DBEC54D81A1A8145005B1EAB /* controllermap.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = controllermap.bmp; sourceTree = "<group>"; };
- DBEC54EA1A1A81C3005B1EAB /* controllermap */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = controllermap; path = controllermap.app; sourceTree = BUILT_PRODUCTS_DIR; };
- F3C17C6A28E3FD4400E1A26D /* config.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = config.xcconfig; sourceTree = "<group>"; };
- F3C17C7328E40ADE00E1A26D /* testutils.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = testutils.c; sourceTree = "<group>"; };
- F3C17C7528E40B6B00E1A26D /* controllermap_back.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = controllermap_back.bmp; sourceTree = "<group>"; };
- F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_uikit_main.c; path = ../src/main/uikit/SDL_uikit_main.c; sourceTree = "<group>"; };
- F3C17CD628E416AC00E1A26D /* testgeometry.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testgeometry.c; sourceTree = "<group>"; };
- F3C17CDC28E416CF00E1A26D /* testgeometry.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testgeometry.app; sourceTree = BUILT_PRODUCTS_DIR; };
- /* End PBXFileReference section */
- /* Begin PBXFrameworksBuildPhase section */
- 0017957A10741F7900F5D044 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 0017959B107421BF00F5D044 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 0017970F10742F3200F5D044 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DB166DA316A1D1FA00A1396C /* libSDL_test.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 00179736107430D600F5D044 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 0017975C107431B300F5D044 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DB166DA216A1D1E900A1396C /* libSDL_test.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 0017977C107432AE00F5D044 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DB166DA716A1D24D00A1396C /* libSDL_test.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 0017979C1074334C00F5D044 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DB166DAA16A1D27700A1396C /* libSDL_test.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 001797BE107433C600F5D044 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 001798001074355200F5D044 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 001798821074392D00F5D044 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 001798A3107439DF00F5D044 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 001798E010743BEC00F5D044 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 0017990410743F1000F5D044 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DB166DAB16A1D27C00A1396C /* libSDL_test.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 0017992610743FB700F5D044 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DB166DAC16A1D29000A1396C /* libSDL_test.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 002F340809CA1BFF00EBEB88 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 002F342709CA1F0300EBEB88 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 002F344309CA1FB300EBEB88 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 002F346009CA204F00EBEB88 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 4537749012091504002F0F45 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DB166DA416A1D21700A1396C /* libSDL_test.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- BBFC08BE164C6862003E6A99 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- BEC566B20761D90300A33029 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17C6B28E4022A00E1A26D /* libSDL_test.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- BEC566CC0761D90300A33029 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- BEC567020761D90300A33029 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- BEC5672A0761D90400A33029 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- BEC567370761D90400A33029 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- BEC567440761D90400A33029 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- BEC567510761D90400A33029 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- BEC567790761D90500A33029 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- BEC567940761D90500A33029 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- BEC567AE0761D90500A33029 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- BEC567F10761D90600A33029 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB0F48DC17CA51E5008798C5 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB0F48F217CA5212008798C5 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB166D7C16A1D12400A1396C /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB166DB016A1D2F600A1396C /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17C7A28E40CA600E1A26D /* libSDL_test.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB166DC716A1D36A00A1396C /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB166DDF16A1D50C00A1396C /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DB166DEA16A1D50C00A1396C /* libSDL_test.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB166DF616A1D57C00A1396C /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DB166E0116A1D57C00A1396C /* libSDL_test.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB166E0D16A1D5AD00A1396C /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DB166E1816A1D5AD00A1396C /* libSDL_test.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB166E2A16A1D64D00A1396C /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB166E4016A1D69000A1396C /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DB166E4B16A1D69000A1396C /* libSDL_test.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB166E5A16A1D6F300A1396C /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB166E7016A1D78400A1396C /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB166E8316A1D78C00A1396C /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB445EE918184B7000B306B0 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DB445EF418184B7000B306B0 /* libSDL_test.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB89957018A19ABA0092407C /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DBEC54DC1A1A81C3005B1EAB /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F3C17CD928E416CF00E1A26D /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17CED28E417F400E1A26D /* libSDL_test.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXFrameworksBuildPhase section */
- /* Begin PBXGroup section */
- 003FA63B093FFD41000C53B3 /* Products */ = {
- isa = PBXGroup;
- children = (
- 003FA643093FFD41000C53B3 /* SDL3.framework */,
- F3C17C5D28E3FB2900E1A26D /* SDL3.framework */,
- F3C17C5F28E3FB2900E1A26D /* SDL3.framework */,
- F3C17C6128E3FB2900E1A26D /* SDL3.framework */,
- 003FA645093FFD41000C53B3 /* libSDL3.a */,
- F3C17C6328E3FB2900E1A26D /* libSDL3.a */,
- F3C17C6528E3FB2900E1A26D /* libSDL3.a */,
- DB1D40D717B3F30D00D74CFC /* libSDL3.dylib */,
- F3C17C6728E3FB2900E1A26D /* libSDL3.dylib */,
- F3C17C6928E3FB2900E1A26D /* libSDL3.dylib */,
- 003FA649093FFD41000C53B3 /* SDL3 */,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 00794E4609D207B4003FC8A1 /* Resources */ = {
- isa = PBXGroup;
- children = (
- DBEC54D61A1A8145005B1EAB /* axis.bmp */,
- DBEC54D71A1A8145005B1EAB /* button.bmp */,
- F3C17C7528E40B6B00E1A26D /* controllermap_back.bmp */,
- DBEC54D81A1A8145005B1EAB /* controllermap.bmp */,
- 00794E5D09D20839003FC8A1 /* icon.bmp */,
- 00794E5E09D20839003FC8A1 /* moose.dat */,
- 00794E5F09D20839003FC8A1 /* picture.xbm */,
- 00794E6109D20839003FC8A1 /* sample.bmp */,
- 00794E6209D20839003FC8A1 /* sample.wav */,
- DB166ECF16A1D87000A1396C /* shapes */,
- DBBC552C182831D700F3CA8D /* TestDropFile-Info.plist */,
- 00794E6309D20839003FC8A1 /* utf8.txt */,
- );
- name = Resources;
- path = ../../test;
- sourceTree = "<group>";
- };
- 08FB7794FE84155DC02AAC07 /* SDLTest */ = {
- isa = PBXGroup;
- children = (
- F3C17C6A28E3FD4400E1A26D /* config.xcconfig */,
- 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */,
- 08FB7795FE84155DC02AAC07 /* Source */,
- DB166D8316A1D17E00A1396C /* SDL_Test */,
- 00794E4609D207B4003FC8A1 /* Resources */,
- 1AB674ADFE9D54B511CA2CBB /* Products */,
- );
- 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";
- name = SDLTest;
- sourceTree = "<group>";
- };
- 08FB7795FE84155DC02AAC07 /* Source */ = {
- isa = PBXGroup;
- children = (
- F3C17CAC28E414F100E1A26D /* SDL_uikit_main.c */,
- 092D6D10FFB30A2C7F000001 /* checkkeys.c */,
- DBEC54D11A1A811D005B1EAB /* controllermap.c */,
- 083E4872006D84C97F000001 /* loopwave.c */,
- 0017958F1074216E00F5D044 /* testatomic.c */,
- 001795B01074222D00F5D044 /* testaudioinfo.c */,
- 001797711074320D00F5D044 /* testdraw2.c */,
- DB0F48D717CA51D2008798C5 /* testdrawchessboard.c */,
- DB445EFA18184BB600B306B0 /* testdropfile.c */,
- 083E4878006D85357F000001 /* testerror.c */,
- 002F341709CA1C5B00EBEB88 /* testfile.c */,
- DB0F48D817CA51D2008798C5 /* testfilesystem.c */,
- BBFC088E164C6820003E6A99 /* testgamecontroller.c */,
- F3C17CD628E416AC00E1A26D /* testgeometry.c */,
- DB166CBB16A1C74100A1396C /* testgesture.c */,
- 0017972710742FB900F5D044 /* testgl2.c */,
- DB166CBC16A1C74100A1396C /* testgles.c */,
- 0017974E1074315700F5D044 /* testhaptic.c */,
- DB89958318A19B130092407C /* testhotplug.c */,
- 002F343609CA1F6F00EBEB88 /* testiconv.c */,
- 00179791107432FA00F5D044 /* testime.c */,
- 001797B31074339C00F5D044 /* testintersections.c */,
- 092D6D62FFB312AA7F000001 /* testjoystick.c */,
- 092D6D6CFFB313437F000001 /* testkeys.c */,
- 001797D31074343E00F5D044 /* testloadso.c */,
- 092D6D75FFB313BB7F000001 /* testlock.c */,
- DB166CBD16A1C74100A1396C /* testmessage.c */,
- 001798151074359B00F5D044 /* testmultiaudio.c */,
- 0017985A107436ED00F5D044 /* testnative.c */,
- 0017985B107436ED00F5D044 /* testnative.h */,
- 0017985C107436ED00F5D044 /* testnativecocoa.m */,
- 00179872107438D000F5D044 /* testnativex11.c */,
- 002F345209CA201C00EBEB88 /* testoverlay2.c */,
- 002F346F09CA20A600EBEB88 /* testplatform.c */,
- 001798B910743A4900F5D044 /* testpower.c */,
- DB166CBF16A1C74100A1396C /* testrelative.c */,
- DB166CC016A1C74100A1396C /* testrendercopyex.c */,
- DB166CC116A1C74100A1396C /* testrendertarget.c */,
- 001798F910743E9200F5D044 /* testresample.c */,
- DB166CC216A1C74100A1396C /* testrumble.c */,
- DB166CC316A1C74100A1396C /* testscale.c */,
- 083E487E006D86A17F000001 /* testsem.c */,
- DB166CC416A1C74100A1396C /* testshader.c */,
- 453774A4120915E3002F0F45 /* testshape.c */,
- 0017991910743F5300F5D044 /* testsprite2.c */,
- DB166CC516A1C74100A1396C /* testspriteminimal.c */,
- DB166CC616A1C74100A1396C /* teststreaming.c */,
- 092D6D58FFB311A97F000001 /* testthread.c */,
- 083E4880006D86A17F000001 /* testtimer.c */,
- F3C17C7328E40ADE00E1A26D /* testutils.c */,
- 083E4882006D86A17F000001 /* testver.c */,
- 0017993B10743FEF00F5D044 /* testwm2.c */,
- 66E88E8A203B778F0004D44E /* testyuv_cvt.c */,
- 083E4887006D86A17F000001 /* torturethread.c */,
- );
- name = Source;
- path = ../../test;
- sourceTree = "<group>";
- };
- 1AB674ADFE9D54B511CA2CBB /* Products */ = {
- isa = PBXGroup;
- children = (
- BEC566B60761D90300A33029 /* checkkeys */,
- BEC566D10761D90300A33029 /* loopwave */,
- BEC567060761D90400A33029 /* testerror */,
- BEC5672E0761D90400A33029 /* testthread */,
- BEC5673B0761D90400A33029 /* testjoystick */,
- BEC567480761D90400A33029 /* testkeys */,
- BEC567550761D90400A33029 /* testlock */,
- BEC5677D0761D90500A33029 /* testsem */,
- BEC567980761D90500A33029 /* testtimer */,
- BEC567B20761D90500A33029 /* testversion */,
- BEC567F50761D90600A33029 /* torturethread */,
- 002F341209CA1BFF00EBEB88 /* testfile */,
- 002F343109CA1F0300EBEB88 /* testiconv */,
- 002F344D09CA1FB300EBEB88 /* testoverlay2 */,
- 002F346A09CA204F00EBEB88 /* testplatform */,
- 0017958C10741F7900F5D044 /* testatomic */,
- 001795AD107421BF00F5D044 /* testaudioinfo */,
- 0017972110742F3200F5D044 /* testgl2.app */,
- 00179748107430D600F5D044 /* testhaptic */,
- 0017976E107431B300F5D044 /* testdraw2 */,
- 0017978E107432AE00F5D044 /* testime */,
- 001797AE1074334C00F5D044 /* testintersections */,
- 001797D0107433C600F5D044 /* testloadso */,
- 001798121074355200F5D044 /* testmultiaudio */,
- 001798941074392D00F5D044 /* testnative.app */,
- 001798B5107439DF00F5D044 /* testpower */,
- 001798F210743BEC00F5D044 /* testresample */,
- 0017991610743F1000F5D044 /* testsprite2 */,
- 0017993810743FB700F5D044 /* testwm2 */,
- 4537749212091504002F0F45 /* testshape */,
- BBFC08CD164C6862003E6A99 /* testgamecontroller */,
- DB166D7F16A1D12400A1396C /* libSDL_test.a */,
- DB166DBF16A1D2F600A1396C /* testgesture */,
- DB166DD516A1D36A00A1396C /* testmessage */,
- DB166DEE16A1D50C00A1396C /* testrelative */,
- DB166E0516A1D57C00A1396C /* testrendercopyex */,
- DB166E1C16A1D5AD00A1396C /* testrendertarget */,
- DB166E3816A1D64D00A1396C /* testrumble */,
- DB166E5216A1D69000A1396C /* testscale */,
- DB166E6816A1D6F300A1396C /* testshader */,
- DB166E7E16A1D78400A1396C /* testspriteminimal */,
- DB166E9116A1D78C00A1396C /* teststreaming */,
- DB0F48EC17CA51E5008798C5 /* testdrawchessboard */,
- DB0F490117CA5212008798C5 /* testfilesystem */,
- DB89957E18A19ABA0092407C /* testhotplug */,
- DB445EF818184B7000B306B0 /* testdropfile.app */,
- DBEC54EA1A1A81C3005B1EAB /* controllermap */,
- F3C17CDC28E416CF00E1A26D /* testgeometry.app */,
- );
- name = Products;
- sourceTree = "<group>";
- };
- DB166D8316A1D17E00A1396C /* SDL_Test */ = {
- isa = PBXGroup;
- children = (
- DB166D8416A1D1A500A1396C /* SDL_test_assert.c */,
- DB166D8516A1D1A500A1396C /* SDL_test_common.c */,
- DB166D8616A1D1A500A1396C /* SDL_test_compare.c */,
- DB166D8716A1D1A500A1396C /* SDL_test_crc32.c */,
- DB166D8816A1D1A500A1396C /* SDL_test_font.c */,
- DB166D8916A1D1A500A1396C /* SDL_test_fuzzer.c */,
- DB166D8A16A1D1A500A1396C /* SDL_test_harness.c */,
- DB166D8B16A1D1A500A1396C /* SDL_test_imageBlit.c */,
- DB166D8C16A1D1A500A1396C /* SDL_test_imageBlitBlend.c */,
- DB166D8D16A1D1A500A1396C /* SDL_test_imageFace.c */,
- DB166D8E16A1D1A500A1396C /* SDL_test_imagePrimitives.c */,
- DB166D8F16A1D1A500A1396C /* SDL_test_imagePrimitivesBlend.c */,
- DB166D9016A1D1A500A1396C /* SDL_test_log.c */,
- DB166D9116A1D1A500A1396C /* SDL_test_md5.c */,
- AAF02FF41F90089800B9A9FB /* SDL_test_memory.c */,
- DB166D9216A1D1A500A1396C /* SDL_test_random.c */,
- );
- name = SDL_Test;
- path = ../../src/test;
- sourceTree = "<group>";
- };
- /* End PBXGroup section */
- /* Begin PBXHeadersBuildPhase section */
- DB166D7D16A1D12400A1396C /* Headers */ = {
- isa = PBXHeadersBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXHeadersBuildPhase section */
- /* Begin PBXNativeTarget section */
- 0017957410741F7900F5D044 /* testatomic */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 0017958610741F7900F5D044 /* Build configuration list for PBXNativeTarget "testatomic" */;
- buildPhases = (
- 0017957910741F7900F5D044 /* Sources */,
- 0017957A10741F7900F5D044 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testatomic;
- productName = testalpha;
- productReference = 0017958C10741F7900F5D044 /* testatomic */;
- productType = "com.apple.product-type.application";
- };
- 00179595107421BF00F5D044 /* testaudioinfo */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 001795A7107421BF00F5D044 /* Build configuration list for PBXNativeTarget "testaudioinfo" */;
- buildPhases = (
- 0017959A107421BF00F5D044 /* Sources */,
- 0017959B107421BF00F5D044 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testaudioinfo;
- productName = testalpha;
- productReference = 001795AD107421BF00F5D044 /* testaudioinfo */;
- productType = "com.apple.product-type.application";
- };
- 0017970910742F3200F5D044 /* testgl2 */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 0017971B10742F3200F5D044 /* Build configuration list for PBXNativeTarget "testgl2" */;
- buildPhases = (
- 0017970E10742F3200F5D044 /* Sources */,
- 0017970F10742F3200F5D044 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testgl2;
- productName = testalpha;
- productReference = 0017972110742F3200F5D044 /* testgl2.app */;
- productType = "com.apple.product-type.application";
- };
- 00179730107430D600F5D044 /* testhaptic */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 00179742107430D600F5D044 /* Build configuration list for PBXNativeTarget "testhaptic" */;
- buildPhases = (
- 00179735107430D600F5D044 /* Sources */,
- 00179736107430D600F5D044 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testhaptic;
- productName = testalpha;
- productReference = 00179748107430D600F5D044 /* testhaptic */;
- productType = "com.apple.product-type.application";
- };
- 00179756107431B300F5D044 /* testdraw2 */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 00179768107431B300F5D044 /* Build configuration list for PBXNativeTarget "testdraw2" */;
- buildPhases = (
- 0017975B107431B300F5D044 /* Sources */,
- 0017975C107431B300F5D044 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testdraw2;
- productName = testalpha;
- productReference = 0017976E107431B300F5D044 /* testdraw2 */;
- productType = "com.apple.product-type.application";
- };
- 00179776107432AE00F5D044 /* testime */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 00179788107432AE00F5D044 /* Build configuration list for PBXNativeTarget "testime" */;
- buildPhases = (
- 0017977B107432AE00F5D044 /* Sources */,
- 0017977C107432AE00F5D044 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testime;
- productName = testalpha;
- productReference = 0017978E107432AE00F5D044 /* testime */;
- productType = "com.apple.product-type.application";
- };
- 001797961074334C00F5D044 /* testintersections */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 001797A81074334C00F5D044 /* Build configuration list for PBXNativeTarget "testintersections" */;
- buildPhases = (
- 0017979B1074334C00F5D044 /* Sources */,
- 0017979C1074334C00F5D044 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testintersections;
- productName = testalpha;
- productReference = 001797AE1074334C00F5D044 /* testintersections */;
- productType = "com.apple.product-type.application";
- };
- 001797B8107433C600F5D044 /* testloadso */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 001797CA107433C600F5D044 /* Build configuration list for PBXNativeTarget "testloadso" */;
- buildPhases = (
- 001797BD107433C600F5D044 /* Sources */,
- 001797BE107433C600F5D044 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testloadso;
- productName = testalpha;
- productReference = 001797D0107433C600F5D044 /* testloadso */;
- productType = "com.apple.product-type.application";
- };
- 001797FA1074355200F5D044 /* testmultiaudio */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 0017980C1074355200F5D044 /* Build configuration list for PBXNativeTarget "testmultiaudio" */;
- buildPhases = (
- 001797FF1074355200F5D044 /* Sources */,
- 001798001074355200F5D044 /* Frameworks */,
- F3C17D3828E424B100E1A26D /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testmultiaudio;
- productName = testalpha;
- productReference = 001798121074355200F5D044 /* testmultiaudio */;
- productType = "com.apple.product-type.application";
- };
- 001798781074392D00F5D044 /* testnative */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 0017988E1074392D00F5D044 /* Build configuration list for PBXNativeTarget "testnative" */;
- buildPhases = (
- 0017987E1074392D00F5D044 /* Sources */,
- 001798821074392D00F5D044 /* Frameworks */,
- DB166DDA16A1D40F00A1396C /* CopyFiles */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testnative;
- productName = testalpha;
- productReference = 001798941074392D00F5D044 /* testnative.app */;
- productType = "com.apple.product-type.application";
- };
- 0017989D107439DF00F5D044 /* testpower */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 001798AF107439DF00F5D044 /* Build configuration list for PBXNativeTarget "testpower" */;
- buildPhases = (
- 001798A2107439DF00F5D044 /* Sources */,
- 001798A3107439DF00F5D044 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testpower;
- productName = testalpha;
- productReference = 001798B5107439DF00F5D044 /* testpower */;
- productType = "com.apple.product-type.application";
- };
- 001798DA10743BEC00F5D044 /* testresample */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 001798EC10743BEC00F5D044 /* Build configuration list for PBXNativeTarget "testresample" */;
- buildPhases = (
- 001798DF10743BEC00F5D044 /* Sources */,
- 001798E010743BEC00F5D044 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testresample;
- productName = testalpha;
- productReference = 001798F210743BEC00F5D044 /* testresample */;
- productType = "com.apple.product-type.application";
- };
- 001798FE10743F1000F5D044 /* testsprite2 */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 0017991010743F1000F5D044 /* Build configuration list for PBXNativeTarget "testsprite2" */;
- buildPhases = (
- 0017990310743F1000F5D044 /* Sources */,
- 0017990410743F1000F5D044 /* Frameworks */,
- F3C17D3A28E4252200E1A26D /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testsprite2;
- productName = testalpha;
- productReference = 0017991610743F1000F5D044 /* testsprite2 */;
- productType = "com.apple.product-type.application";
- };
- 0017992010743FB700F5D044 /* testwm2 */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 0017993210743FB700F5D044 /* Build configuration list for PBXNativeTarget "testwm2" */;
- buildPhases = (
- 0017992510743FB700F5D044 /* Sources */,
- 0017992610743FB700F5D044 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testwm2;
- productName = testalpha;
- productReference = 0017993810743FB700F5D044 /* testwm2 */;
- productType = "com.apple.product-type.application";
- };
- 002F340109CA1BFF00EBEB88 /* testfile */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 002F340E09CA1BFF00EBEB88 /* Build configuration list for PBXNativeTarget "testfile" */;
- buildPhases = (
- 002F340709CA1BFF00EBEB88 /* Sources */,
- 002F340809CA1BFF00EBEB88 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testfile;
- productName = testalpha;
- productReference = 002F341209CA1BFF00EBEB88 /* testfile */;
- productType = "com.apple.product-type.application";
- };
- 002F342009CA1F0300EBEB88 /* testiconv */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 002F342D09CA1F0300EBEB88 /* Build configuration list for PBXNativeTarget "testiconv" */;
- buildPhases = (
- 002F342609CA1F0300EBEB88 /* Sources */,
- 002F342709CA1F0300EBEB88 /* Frameworks */,
- 00794EEC09D2371F003FC8A1 /* CopyFiles */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testiconv;
- productName = testalpha;
- productReference = 002F343109CA1F0300EBEB88 /* testiconv */;
- productType = "com.apple.product-type.application";
- };
- 002F343C09CA1FB300EBEB88 /* testoverlay2 */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 002F344909CA1FB300EBEB88 /* Build configuration list for PBXNativeTarget "testoverlay2" */;
- buildPhases = (
- 002F344209CA1FB300EBEB88 /* Sources */,
- 002F344309CA1FB300EBEB88 /* Frameworks */,
- 00794EF409D237C7003FC8A1 /* CopyFiles */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testoverlay2;
- productName = testalpha;
- productReference = 002F344D09CA1FB300EBEB88 /* testoverlay2 */;
- productType = "com.apple.product-type.application";
- };
- 002F345909CA204F00EBEB88 /* testplatform */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 002F346609CA204F00EBEB88 /* Build configuration list for PBXNativeTarget "testplatform" */;
- buildPhases = (
- 002F345F09CA204F00EBEB88 /* Sources */,
- 002F346009CA204F00EBEB88 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testplatform;
- productName = testalpha;
- productReference = 002F346A09CA204F00EBEB88 /* testplatform */;
- productType = "com.apple.product-type.application";
- };
- 4537749112091504002F0F45 /* testshape */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 4537749A1209150C002F0F45 /* Build configuration list for PBXNativeTarget "testshape" */;
- buildPhases = (
- 4537748F12091504002F0F45 /* Sources */,
- 4537749012091504002F0F45 /* Frameworks */,
- DB166ECE16A1D85400A1396C /* CopyFiles */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testshape;
- productName = testshape;
- productReference = 4537749212091504002F0F45 /* testshape */;
- productType = "com.apple.product-type.application";
- };
- BBFC08B7164C6862003E6A99 /* testgamecontroller */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = BBFC08CA164C6862003E6A99 /* Build configuration list for PBXNativeTarget "testgamecontroller" */;
- buildPhases = (
- BBFC08BC164C6862003E6A99 /* Sources */,
- BBFC08BE164C6862003E6A99 /* Frameworks */,
- F3C17D3528E4242100E1A26D /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testgamecontroller;
- productName = testjoystick;
- productReference = BBFC08CD164C6862003E6A99 /* testgamecontroller */;
- productType = "com.apple.product-type.application";
- };
- BEC566AB0761D90300A33029 /* checkkeys */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 001B593808BDB826006539E9 /* Build configuration list for PBXNativeTarget "checkkeys" */;
- buildPhases = (
- BEC566B00761D90300A33029 /* Sources */,
- BEC566B20761D90300A33029 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = checkkeys;
- productName = checkkeys;
- productReference = BEC566B60761D90300A33029 /* checkkeys */;
- productType = "com.apple.product-type.application";
- };
- BEC566C50761D90300A33029 /* loopwave */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 001B594008BDB826006539E9 /* Build configuration list for PBXNativeTarget "loopwave" */;
- buildPhases = (
- BEC566CA0761D90300A33029 /* Sources */,
- BEC566CC0761D90300A33029 /* Frameworks */,
- 00794E6409D2084F003FC8A1 /* CopyFiles */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = loopwave;
- productName = loopwave;
- productReference = BEC566D10761D90300A33029 /* loopwave */;
- productType = "com.apple.product-type.application";
- };
- BEC566FB0761D90300A33029 /* testerror */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 001B595008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testerror" */;
- buildPhases = (
- BEC567000761D90300A33029 /* Sources */,
- BEC567020761D90300A33029 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testerror;
- productName = testerror;
- productReference = BEC567060761D90400A33029 /* testerror */;
- productType = "com.apple.product-type.application";
- };
- BEC567230761D90400A33029 /* testthread */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 001B595C08BDB826006539E9 /* Build configuration list for PBXNativeTarget "testthread" */;
- buildPhases = (
- BEC567280761D90400A33029 /* Sources */,
- BEC5672A0761D90400A33029 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testthread;
- productName = testthread;
- productReference = BEC5672E0761D90400A33029 /* testthread */;
- productType = "com.apple.product-type.application";
- };
- BEC567300761D90400A33029 /* testjoystick */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 001B596008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testjoystick" */;
- buildPhases = (
- BEC567350761D90400A33029 /* Sources */,
- BEC567370761D90400A33029 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testjoystick;
- productName = testjoystick;
- productReference = BEC5673B0761D90400A33029 /* testjoystick */;
- productType = "com.apple.product-type.application";
- };
- BEC5673D0761D90400A33029 /* testkeys */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 001B596408BDB826006539E9 /* Build configuration list for PBXNativeTarget "testkeys" */;
- buildPhases = (
- BEC567420761D90400A33029 /* Sources */,
- BEC567440761D90400A33029 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testkeys;
- productName = testkeys;
- productReference = BEC567480761D90400A33029 /* testkeys */;
- productType = "com.apple.product-type.application";
- };
- BEC5674A0761D90400A33029 /* testlock */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 001B596808BDB826006539E9 /* Build configuration list for PBXNativeTarget "testlock" */;
- buildPhases = (
- BEC5674F0761D90400A33029 /* Sources */,
- BEC567510761D90400A33029 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testlock;
- productName = testlock;
- productReference = BEC567550761D90400A33029 /* testlock */;
- productType = "com.apple.product-type.application";
- };
- BEC567720761D90500A33029 /* testsem */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 001B597008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testsem" */;
- buildPhases = (
- BEC567770761D90500A33029 /* Sources */,
- BEC567790761D90500A33029 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testsem;
- productName = testsem;
- productReference = BEC5677D0761D90500A33029 /* testsem */;
- productType = "com.apple.product-type.application";
- };
- BEC5678D0761D90500A33029 /* testtimer */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 001B597808BDB826006539E9 /* Build configuration list for PBXNativeTarget "testtimer" */;
- buildPhases = (
- BEC567920761D90500A33029 /* Sources */,
- BEC567940761D90500A33029 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testtimer;
- productName = testtimer;
- productReference = BEC567980761D90500A33029 /* testtimer */;
- productType = "com.apple.product-type.application";
- };
- BEC567A70761D90500A33029 /* testversion */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 001B598008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testversion" */;
- buildPhases = (
- BEC567AC0761D90500A33029 /* Sources */,
- BEC567AE0761D90500A33029 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testversion;
- productName = testversion;
- productReference = BEC567B20761D90500A33029 /* testversion */;
- productType = "com.apple.product-type.application";
- };
- BEC567EA0761D90600A33029 /* torturethread */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 001B599408BDB826006539E9 /* Build configuration list for PBXNativeTarget "torturethread" */;
- buildPhases = (
- BEC567EF0761D90600A33029 /* Sources */,
- BEC567F10761D90600A33029 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = torturethread;
- productName = torturethread;
- productReference = BEC567F50761D90600A33029 /* torturethread */;
- productType = "com.apple.product-type.application";
- };
- DB0F48D917CA51E5008798C5 /* testdrawchessboard */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = DB0F48E917CA51E5008798C5 /* Build configuration list for PBXNativeTarget "testdrawchessboard" */;
- buildPhases = (
- DB0F48DA17CA51E5008798C5 /* Sources */,
- DB0F48DC17CA51E5008798C5 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testdrawchessboard;
- productName = testalpha;
- productReference = DB0F48EC17CA51E5008798C5 /* testdrawchessboard */;
- productType = "com.apple.product-type.application";
- };
- DB0F48EF17CA5212008798C5 /* testfilesystem */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = DB0F48FE17CA5212008798C5 /* Build configuration list for PBXNativeTarget "testfilesystem" */;
- buildPhases = (
- DB0F48F017CA5212008798C5 /* Sources */,
- DB0F48F217CA5212008798C5 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testfilesystem;
- productName = testalpha;
- productReference = DB0F490117CA5212008798C5 /* testfilesystem */;
- productType = "com.apple.product-type.application";
- };
- DB166D7E16A1D12400A1396C /* SDL_test */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = DB166D8016A1D12400A1396C /* Build configuration list for PBXNativeTarget "SDL_test" */;
- buildPhases = (
- DB166D7B16A1D12400A1396C /* Sources */,
- DB166D7C16A1D12400A1396C /* Frameworks */,
- DB166D7D16A1D12400A1396C /* Headers */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = SDL_test;
- productName = SDL_test;
- productReference = DB166D7F16A1D12400A1396C /* libSDL_test.a */;
- productType = "com.apple.product-type.library.static";
- };
- DB166DAD16A1D2F600A1396C /* testgesture */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = DB166DBC16A1D2F600A1396C /* Build configuration list for PBXNativeTarget "testgesture" */;
- buildPhases = (
- DB166DAE16A1D2F600A1396C /* Sources */,
- DB166DB016A1D2F600A1396C /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testgesture;
- productName = testalpha;
- productReference = DB166DBF16A1D2F600A1396C /* testgesture */;
- productType = "com.apple.product-type.application";
- };
- DB166DC416A1D36A00A1396C /* testmessage */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = DB166DD216A1D36A00A1396C /* Build configuration list for PBXNativeTarget "testmessage" */;
- buildPhases = (
- DB166DC516A1D36A00A1396C /* Sources */,
- DB166DC716A1D36A00A1396C /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testmessage;
- productName = testalpha;
- productReference = DB166DD516A1D36A00A1396C /* testmessage */;
- productType = "com.apple.product-type.application";
- };
- DB166DDC16A1D50C00A1396C /* testrelative */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = DB166DEB16A1D50C00A1396C /* Build configuration list for PBXNativeTarget "testrelative" */;
- buildPhases = (
- DB166DDD16A1D50C00A1396C /* Sources */,
- DB166DDF16A1D50C00A1396C /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testrelative;
- productName = testalpha;
- productReference = DB166DEE16A1D50C00A1396C /* testrelative */;
- productType = "com.apple.product-type.application";
- };
- DB166DF316A1D57C00A1396C /* testrendercopyex */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = DB166E0216A1D57C00A1396C /* Build configuration list for PBXNativeTarget "testrendercopyex" */;
- buildPhases = (
- DB166DF416A1D57C00A1396C /* Sources */,
- DB166DF616A1D57C00A1396C /* Frameworks */,
- DB166E2116A1D5DF00A1396C /* CopyFiles */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testrendercopyex;
- productName = testalpha;
- productReference = DB166E0516A1D57C00A1396C /* testrendercopyex */;
- productType = "com.apple.product-type.application";
- };
- DB166E0A16A1D5AD00A1396C /* testrendertarget */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = DB166E1916A1D5AD00A1396C /* Build configuration list for PBXNativeTarget "testrendertarget" */;
- buildPhases = (
- DB166E0B16A1D5AD00A1396C /* Sources */,
- DB166E0D16A1D5AD00A1396C /* Frameworks */,
- DB166E2416A1D61000A1396C /* CopyFiles */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testrendertarget;
- productName = testalpha;
- productReference = DB166E1C16A1D5AD00A1396C /* testrendertarget */;
- productType = "com.apple.product-type.application";
- };
- DB166E2716A1D64D00A1396C /* testrumble */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = DB166E3516A1D64D00A1396C /* Build configuration list for PBXNativeTarget "testrumble" */;
- buildPhases = (
- DB166E2816A1D64D00A1396C /* Sources */,
- DB166E2A16A1D64D00A1396C /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testrumble;
- productName = testalpha;
- productReference = DB166E3816A1D64D00A1396C /* testrumble */;
- productType = "com.apple.product-type.application";
- };
- DB166E3D16A1D69000A1396C /* testscale */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = DB166E4F16A1D69000A1396C /* Build configuration list for PBXNativeTarget "testscale" */;
- buildPhases = (
- DB166E3E16A1D69000A1396C /* Sources */,
- DB166E4016A1D69000A1396C /* Frameworks */,
- DB166E4C16A1D69000A1396C /* CopyFiles */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testscale;
- productName = testalpha;
- productReference = DB166E5216A1D69000A1396C /* testscale */;
- productType = "com.apple.product-type.application";
- };
- DB166E5716A1D6F300A1396C /* testshader */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = DB166E6516A1D6F300A1396C /* Build configuration list for PBXNativeTarget "testshader" */;
- buildPhases = (
- DB166E5816A1D6F300A1396C /* Sources */,
- DB166E5A16A1D6F300A1396C /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testshader;
- productName = testsem;
- productReference = DB166E6816A1D6F300A1396C /* testshader */;
- productType = "com.apple.product-type.application";
- };
- DB166E6D16A1D78400A1396C /* testspriteminimal */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = DB166E7B16A1D78400A1396C /* Build configuration list for PBXNativeTarget "testspriteminimal" */;
- buildPhases = (
- DB166E6E16A1D78400A1396C /* Sources */,
- DB166E7016A1D78400A1396C /* Frameworks */,
- DB166E9B16A1D7FC00A1396C /* CopyFiles */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testspriteminimal;
- productName = testspriteminimal;
- productReference = DB166E7E16A1D78400A1396C /* testspriteminimal */;
- productType = "com.apple.product-type.application";
- };
- DB166E8016A1D78C00A1396C /* teststreaming */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = DB166E8E16A1D78C00A1396C /* Build configuration list for PBXNativeTarget "teststreaming" */;
- buildPhases = (
- DB166E8116A1D78C00A1396C /* Sources */,
- DB166E8316A1D78C00A1396C /* Frameworks */,
- DB166E9916A1D7EE00A1396C /* CopyFiles */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = teststreaming;
- productName = teststreaming;
- productReference = DB166E9116A1D78C00A1396C /* teststreaming */;
- productType = "com.apple.product-type.application";
- };
- DB445EE618184B7000B306B0 /* testdropfile */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = DB445EF518184B7000B306B0 /* Build configuration list for PBXNativeTarget "testdropfile" */;
- buildPhases = (
- DB445EE718184B7000B306B0 /* Sources */,
- DB445EE918184B7000B306B0 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testdropfile;
- productName = testdropfile;
- productReference = DB445EF818184B7000B306B0 /* testdropfile.app */;
- productType = "com.apple.product-type.application";
- };
- DB89956D18A19ABA0092407C /* testhotplug */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = DB89957B18A19ABA0092407C /* Build configuration list for PBXNativeTarget "testhotplug" */;
- buildPhases = (
- DB89956E18A19ABA0092407C /* Sources */,
- DB89957018A19ABA0092407C /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testhotplug;
- productName = testalpha;
- productReference = DB89957E18A19ABA0092407C /* testhotplug */;
- productType = "com.apple.product-type.application";
- };
- DBEC54D91A1A81C3005B1EAB /* controllermap */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = DBEC54E71A1A81C3005B1EAB /* Build configuration list for PBXNativeTarget "controllermap" */;
- buildPhases = (
- DBEC54DA1A1A81C3005B1EAB /* Sources */,
- DBEC54DC1A1A81C3005B1EAB /* Frameworks */,
- DBEC54EC1A1A827C005B1EAB /* CopyFiles */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = controllermap;
- productName = checkkeys;
- productReference = DBEC54EA1A1A81C3005B1EAB /* controllermap */;
- productType = "com.apple.product-type.application";
- };
- F3C17CDB28E416CF00E1A26D /* testgeometry */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = F3C17CE828E416D000E1A26D /* Build configuration list for PBXNativeTarget "testgeometry" */;
- buildPhases = (
- F3C17CD828E416CF00E1A26D /* Sources */,
- F3C17CD928E416CF00E1A26D /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = testgeometry;
- productName = testgeometry;
- productReference = F3C17CDC28E416CF00E1A26D /* testgeometry.app */;
- productType = "com.apple.product-type.application";
- };
- /* End PBXNativeTarget section */
- /* Begin PBXProject section */
- 08FB7793FE84155DC02AAC07 /* Project object */ = {
- isa = PBXProject;
- attributes = {
- LastSwiftUpdateCheck = 1400;
- LastUpgradeCheck = 0420;
- TargetAttributes = {
- F3C17CDB28E416CF00E1A26D = {
- CreatedOnToolsVersion = 14.0.1;
- };
- };
- };
- buildConfigurationList = 001B5A0C08BDB826006539E9 /* Build configuration list for PBXProject "SDLTest" */;
- compatibilityVersion = "Xcode 3.2";
- developmentRegion = English;
- hasScannedForEncodings = 1;
- knownRegions = (
- English,
- Japanese,
- French,
- German,
- en,
- Base,
- );
- mainGroup = 08FB7794FE84155DC02AAC07 /* SDLTest */;
- projectDirPath = "";
- projectReferences = (
- {
- ProductGroup = 003FA63B093FFD41000C53B3 /* Products */;
- ProjectRef = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */;
- },
- );
- projectRoot = "";
- targets = (
- BEC566920761D90300A33029 /* All */,
- DB166D7E16A1D12400A1396C /* SDL_test */,
- BEC566AB0761D90300A33029 /* checkkeys */,
- DBEC54D91A1A81C3005B1EAB /* controllermap */,
- BEC566C50761D90300A33029 /* loopwave */,
- 0017957410741F7900F5D044 /* testatomic */,
- 00179595107421BF00F5D044 /* testaudioinfo */,
- 00179756107431B300F5D044 /* testdraw2 */,
- DB0F48D917CA51E5008798C5 /* testdrawchessboard */,
- DB445EE618184B7000B306B0 /* testdropfile */,
- BEC566FB0761D90300A33029 /* testerror */,
- 002F340109CA1BFF00EBEB88 /* testfile */,
- DB0F48EF17CA5212008798C5 /* testfilesystem */,
- BBFC08B7164C6862003E6A99 /* testgamecontroller */,
- F3C17CDB28E416CF00E1A26D /* testgeometry */,
- DB166DAD16A1D2F600A1396C /* testgesture */,
- 0017970910742F3200F5D044 /* testgl2 */,
- 00179730107430D600F5D044 /* testhaptic */,
- DB89956D18A19ABA0092407C /* testhotplug */,
- 002F342009CA1F0300EBEB88 /* testiconv */,
- 00179776107432AE00F5D044 /* testime */,
- 001797961074334C00F5D044 /* testintersections */,
- BEC567300761D90400A33029 /* testjoystick */,
- BEC5673D0761D90400A33029 /* testkeys */,
- 001797B8107433C600F5D044 /* testloadso */,
- BEC5674A0761D90400A33029 /* testlock */,
- DB166DC416A1D36A00A1396C /* testmessage */,
- 001797FA1074355200F5D044 /* testmultiaudio */,
- 001798781074392D00F5D044 /* testnative */,
- 002F343C09CA1FB300EBEB88 /* testoverlay2 */,
- 002F345909CA204F00EBEB88 /* testplatform */,
- 0017989D107439DF00F5D044 /* testpower */,
- DB166DDC16A1D50C00A1396C /* testrelative */,
- DB166DF316A1D57C00A1396C /* testrendercopyex */,
- DB166E0A16A1D5AD00A1396C /* testrendertarget */,
- 001798DA10743BEC00F5D044 /* testresample */,
- DB166E2716A1D64D00A1396C /* testrumble */,
- DB166E3D16A1D69000A1396C /* testscale */,
- BEC567720761D90500A33029 /* testsem */,
- DB166E5716A1D6F300A1396C /* testshader */,
- 4537749112091504002F0F45 /* testshape */,
- 001798FE10743F1000F5D044 /* testsprite2 */,
- DB166E6D16A1D78400A1396C /* testspriteminimal */,
- DB166E8016A1D78C00A1396C /* teststreaming */,
- BEC567230761D90400A33029 /* testthread */,
- BEC5678D0761D90500A33029 /* testtimer */,
- BEC567A70761D90500A33029 /* testversion */,
- 0017992010743FB700F5D044 /* testwm2 */,
- BEC567EA0761D90600A33029 /* torturethread */,
- );
- };
- /* End PBXProject section */
- /* Begin PBXReferenceProxy section */
- 003FA643093FFD41000C53B3 /* SDL3.framework */ = {
- isa = PBXReferenceProxy;
- fileType = wrapper.framework;
- path = SDL3.framework;
- remoteRef = 003FA642093FFD41000C53B3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 003FA645093FFD41000C53B3 /* libSDL3.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libSDL3.a;
- remoteRef = 003FA644093FFD41000C53B3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 003FA649093FFD41000C53B3 /* SDL3 */ = {
- isa = PBXReferenceProxy;
- fileType = "compiled.mach-o.executable";
- path = SDL3;
- remoteRef = 003FA648093FFD41000C53B3 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- DB1D40D717B3F30D00D74CFC /* libSDL3.dylib */ = {
- isa = PBXReferenceProxy;
- fileType = "compiled.mach-o.dylib";
- path = libSDL3.dylib;
- remoteRef = DB1D40D617B3F30D00D74CFC /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- F3C17C5D28E3FB2900E1A26D /* SDL3.framework */ = {
- isa = PBXReferenceProxy;
- fileType = wrapper.framework;
- path = SDL3.framework;
- remoteRef = F3C17C5C28E3FB2900E1A26D /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- F3C17C5F28E3FB2900E1A26D /* SDL3.framework */ = {
- isa = PBXReferenceProxy;
- fileType = wrapper.framework;
- path = SDL3.framework;
- remoteRef = F3C17C5E28E3FB2900E1A26D /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- F3C17C6128E3FB2900E1A26D /* SDL3.framework */ = {
- isa = PBXReferenceProxy;
- fileType = wrapper.framework;
- path = SDL3.framework;
- remoteRef = F3C17C6028E3FB2900E1A26D /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- F3C17C6328E3FB2900E1A26D /* libSDL3.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libSDL3.a;
- remoteRef = F3C17C6228E3FB2900E1A26D /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- F3C17C6528E3FB2900E1A26D /* libSDL3.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libSDL3.a;
- remoteRef = F3C17C6428E3FB2900E1A26D /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- F3C17C6728E3FB2900E1A26D /* libSDL3.dylib */ = {
- isa = PBXReferenceProxy;
- fileType = "compiled.mach-o.dylib";
- path = libSDL3.dylib;
- remoteRef = F3C17C6628E3FB2900E1A26D /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- F3C17C6928E3FB2900E1A26D /* libSDL3.dylib */ = {
- isa = PBXReferenceProxy;
- fileType = "compiled.mach-o.dylib";
- path = libSDL3.dylib;
- remoteRef = F3C17C6828E3FB2900E1A26D /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- /* End PBXReferenceProxy section */
- /* Begin PBXResourcesBuildPhase section */
- F3C17D3528E4242100E1A26D /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D3C28E4277D00E1A26D /* axis.bmp in Resources */,
- F3C17D3D28E4277D00E1A26D /* button.bmp in Resources */,
- F3C17D3E28E4277D00E1A26D /* controllermap_back.bmp in Resources */,
- F3C17D3F28E4277D00E1A26D /* controllermap.bmp in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F3C17D3828E424B100E1A26D /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D3928E424B800E1A26D /* sample.wav in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F3C17D3A28E4252200E1A26D /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D3B28E4252900E1A26D /* icon.bmp in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXResourcesBuildPhase section */
- /* Begin PBXSourcesBuildPhase section */
- 0017957910741F7900F5D044 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17CFF28E41EB000E1A26D /* SDL_uikit_main.c in Sources */,
- 001795901074216E00F5D044 /* testatomic.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 0017959A107421BF00F5D044 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D0028E41EB400E1A26D /* SDL_uikit_main.c in Sources */,
- 001795B11074222D00F5D044 /* testaudioinfo.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 0017970E10742F3200F5D044 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D0928E41EE100E1A26D /* SDL_uikit_main.c in Sources */,
- 0017972810742FB900F5D044 /* testgl2.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 00179735107430D600F5D044 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D0A28E41EE700E1A26D /* SDL_uikit_main.c in Sources */,
- 0017974F1074315700F5D044 /* testhaptic.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 0017975B107431B300F5D044 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D0128E41EB800E1A26D /* SDL_uikit_main.c in Sources */,
- 001797721074320D00F5D044 /* testdraw2.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 0017977B107432AE00F5D044 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D0D28E41EF400E1A26D /* SDL_uikit_main.c in Sources */,
- 00179792107432FA00F5D044 /* testime.c in Sources */,
- F3C17C7C28E40D7400E1A26D /* testutils.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 0017979B1074334C00F5D044 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D0E28E41EF900E1A26D /* SDL_uikit_main.c in Sources */,
- 001797B41074339C00F5D044 /* testintersections.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 001797BD107433C600F5D044 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D1128E41F0600E1A26D /* SDL_uikit_main.c in Sources */,
- 001797D41074343E00F5D044 /* testloadso.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 001797FF1074355200F5D044 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D1428E41F1100E1A26D /* SDL_uikit_main.c in Sources */,
- 001798161074359B00F5D044 /* testmultiaudio.c in Sources */,
- F3C17C7D28E40F9D00E1A26D /* testutils.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 0017987E1074392D00F5D044 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 0017987F1074392D00F5D044 /* testnative.c in Sources */,
- 001798801074392D00F5D044 /* testnativecocoa.m in Sources */,
- F3C17C7E28E40FDD00E1A26D /* testutils.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 001798A2107439DF00F5D044 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D1728E41F2800E1A26D /* SDL_uikit_main.c in Sources */,
- 001798BA10743A4900F5D044 /* testpower.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 001798DF10743BEC00F5D044 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D1B28E41F3800E1A26D /* SDL_uikit_main.c in Sources */,
- 001798FA10743E9200F5D044 /* testresample.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 0017990310743F1000F5D044 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17CEF28E41D5800E1A26D /* SDL_uikit_main.c in Sources */,
- 0017991A10743F5300F5D044 /* testsprite2.c in Sources */,
- F3C17C8328E4124400E1A26D /* testutils.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 0017992510743FB700F5D044 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D2728E41FD800E1A26D /* SDL_uikit_main.c in Sources */,
- 0017993C10743FEF00F5D044 /* testwm2.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 002F340709CA1BFF00EBEB88 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D0528E41ECB00E1A26D /* SDL_uikit_main.c in Sources */,
- 002F341809CA1C5B00EBEB88 /* testfile.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 002F342609CA1F0300EBEB88 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D0C28E41EF000E1A26D /* SDL_uikit_main.c in Sources */,
- 002F343709CA1F6F00EBEB88 /* testiconv.c in Sources */,
- F3C17C7B28E40D4E00E1A26D /* testutils.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 002F344209CA1FB300EBEB88 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D1528E41F1F00E1A26D /* SDL_uikit_main.c in Sources */,
- 002F345409CA202000EBEB88 /* testoverlay2.c in Sources */,
- 66E88E8B203B778F0004D44E /* testyuv_cvt.c in Sources */,
- F3C17C7F28E4101000E1A26D /* testutils.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 002F345F09CA204F00EBEB88 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D1628E41F2400E1A26D /* SDL_uikit_main.c in Sources */,
- 002F347009CA20A600EBEB88 /* testplatform.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 4537748F12091504002F0F45 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D2028E41F4D00E1A26D /* SDL_uikit_main.c in Sources */,
- 453774A5120915E3002F0F45 /* testshape.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- BBFC08BC164C6862003E6A99 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D0728E41ED300E1A26D /* SDL_uikit_main.c in Sources */,
- BBFC08D0164C6876003E6A99 /* testgamecontroller.c in Sources */,
- F3C17C7928E40C6E00E1A26D /* testutils.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- BEC566B00761D90300A33029 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17CFC28E41E9800E1A26D /* SDL_uikit_main.c in Sources */,
- BEC566B10761D90300A33029 /* checkkeys.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- BEC566CA0761D90300A33029 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17CFE28E41EAC00E1A26D /* SDL_uikit_main.c in Sources */,
- BEC566CB0761D90300A33029 /* loopwave.c in Sources */,
- F3C17C7728E40BC800E1A26D /* testutils.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- BEC567000761D90300A33029 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D0428E41EC800E1A26D /* SDL_uikit_main.c in Sources */,
- BEC567010761D90300A33029 /* testerror.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- BEC567280761D90400A33029 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D2428E41F6600E1A26D /* SDL_uikit_main.c in Sources */,
- BEC567290761D90400A33029 /* testthread.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- BEC567350761D90400A33029 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D0F28E41EFE00E1A26D /* SDL_uikit_main.c in Sources */,
- BEC567360761D90400A33029 /* testjoystick.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- BEC567420761D90400A33029 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D1028E41F0200E1A26D /* SDL_uikit_main.c in Sources */,
- BEC567430761D90400A33029 /* testkeys.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- BEC5674F0761D90400A33029 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D1228E41F0A00E1A26D /* SDL_uikit_main.c in Sources */,
- BEC567500761D90400A33029 /* testlock.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- BEC567770761D90500A33029 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D1E28E41F4500E1A26D /* SDL_uikit_main.c in Sources */,
- BEC567780761D90500A33029 /* testsem.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- BEC567920761D90500A33029 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D2528E41F6A00E1A26D /* SDL_uikit_main.c in Sources */,
- BEC567930761D90500A33029 /* testtimer.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- BEC567AC0761D90500A33029 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D2628E41F6E00E1A26D /* SDL_uikit_main.c in Sources */,
- BEC567AD0761D90500A33029 /* testver.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- BEC567EF0761D90600A33029 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D2828E41FDC00E1A26D /* SDL_uikit_main.c in Sources */,
- BEC567F00761D90600A33029 /* torturethread.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB0F48DA17CA51E5008798C5 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D0228E41EBC00E1A26D /* SDL_uikit_main.c in Sources */,
- DB0F48EE17CA51F8008798C5 /* testdrawchessboard.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB0F48F017CA5212008798C5 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D0628E41ECF00E1A26D /* SDL_uikit_main.c in Sources */,
- DB0F490317CA5225008798C5 /* testfilesystem.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB166D7B16A1D12400A1396C /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DB166D9316A1D1A500A1396C /* SDL_test_assert.c in Sources */,
- DB166D9416A1D1A500A1396C /* SDL_test_common.c in Sources */,
- DB166D9516A1D1A500A1396C /* SDL_test_compare.c in Sources */,
- DB166D9616A1D1A500A1396C /* SDL_test_crc32.c in Sources */,
- DB166D9716A1D1A500A1396C /* SDL_test_font.c in Sources */,
- DB166D9816A1D1A500A1396C /* SDL_test_fuzzer.c in Sources */,
- DB166D9916A1D1A500A1396C /* SDL_test_harness.c in Sources */,
- DB166D9A16A1D1A500A1396C /* SDL_test_imageBlit.c in Sources */,
- DB166D9B16A1D1A500A1396C /* SDL_test_imageBlitBlend.c in Sources */,
- DB166D9C16A1D1A500A1396C /* SDL_test_imageFace.c in Sources */,
- DB166D9D16A1D1A500A1396C /* SDL_test_imagePrimitives.c in Sources */,
- DB166D9E16A1D1A500A1396C /* SDL_test_imagePrimitivesBlend.c in Sources */,
- DB166D9F16A1D1A500A1396C /* SDL_test_log.c in Sources */,
- DB166DA016A1D1A500A1396C /* SDL_test_md5.c in Sources */,
- AAF02FFA1F90092700B9A9FB /* SDL_test_memory.c in Sources */,
- DB166DA116A1D1A500A1396C /* SDL_test_random.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB166DAE16A1D2F600A1396C /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D0828E41EDB00E1A26D /* SDL_uikit_main.c in Sources */,
- DB166DC116A1D31E00A1396C /* testgesture.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB166DC516A1D36A00A1396C /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D1328E41F0D00E1A26D /* SDL_uikit_main.c in Sources */,
- DB166DD716A1D37800A1396C /* testmessage.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB166DDD16A1D50C00A1396C /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D1828E41F2C00E1A26D /* SDL_uikit_main.c in Sources */,
- DB166DF016A1D52500A1396C /* testrelative.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB166DF416A1D57C00A1396C /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D1928E41F3100E1A26D /* SDL_uikit_main.c in Sources */,
- DB166E0716A1D59400A1396C /* testrendercopyex.c in Sources */,
- F3C17C8028E410A400E1A26D /* testutils.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB166E0B16A1D5AD00A1396C /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D1A28E41F3500E1A26D /* SDL_uikit_main.c in Sources */,
- DB166E1E16A1D5C300A1396C /* testrendertarget.c in Sources */,
- F3C17C8128E410C900E1A26D /* testutils.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB166E2816A1D64D00A1396C /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D1C28E41F3C00E1A26D /* SDL_uikit_main.c in Sources */,
- DB166E3C16A1D66500A1396C /* testrumble.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB166E3E16A1D69000A1396C /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D1D28E41F4000E1A26D /* SDL_uikit_main.c in Sources */,
- DB166E5416A1D6A300A1396C /* testscale.c in Sources */,
- F3C17C8228E4112900E1A26D /* testutils.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB166E5816A1D6F300A1396C /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D1F28E41F4800E1A26D /* SDL_uikit_main.c in Sources */,
- DB166E6A16A1D70C00A1396C /* testshader.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB166E6E16A1D78400A1396C /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D2228E41F5F00E1A26D /* SDL_uikit_main.c in Sources */,
- DB166E9316A1D7BC00A1396C /* testspriteminimal.c in Sources */,
- F3C17C8428E4126400E1A26D /* testutils.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB166E8116A1D78C00A1396C /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D2328E41F6200E1A26D /* SDL_uikit_main.c in Sources */,
- DB166E9416A1D7C700A1396C /* teststreaming.c in Sources */,
- F3C17C8528E4127D00E1A26D /* testutils.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB445EE718184B7000B306B0 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D0328E41EC500E1A26D /* SDL_uikit_main.c in Sources */,
- DB445EFB18184BB600B306B0 /* testdropfile.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DB89956E18A19ABA0092407C /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17D0B28E41EEB00E1A26D /* SDL_uikit_main.c in Sources */,
- DB89958418A19B130092407C /* testhotplug.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DBEC54DA1A1A81C3005B1EAB /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17CFD28E41EA100E1A26D /* SDL_uikit_main.c in Sources */,
- DBEC54EB1A1A8205005B1EAB /* controllermap.c in Sources */,
- F3C17C7428E40AF000E1A26D /* testutils.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F3C17CD828E416CF00E1A26D /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F3C17CEE28E4184700E1A26D /* SDL_uikit_main.c in Sources */,
- F3C17CEB28E4177600E1A26D /* testgeometry.c in Sources */,
- F3C17CEC28E417EB00E1A26D /* testutils.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXSourcesBuildPhase section */
- /* Begin PBXTargetDependency section */
- 001799481074403E00F5D044 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = BEC566AB0761D90300A33029 /* checkkeys */;
- targetProxy = 001799471074403E00F5D044 /* PBXContainerItemProxy */;
- };
- 0017994C1074403E00F5D044 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = BEC566C50761D90300A33029 /* loopwave */;
- targetProxy = 0017994B1074403E00F5D044 /* PBXContainerItemProxy */;
- };
- 001799501074403E00F5D044 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 0017957410741F7900F5D044 /* testatomic */;
- targetProxy = 0017994F1074403E00F5D044 /* PBXContainerItemProxy */;
- };
- 001799521074403E00F5D044 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 00179595107421BF00F5D044 /* testaudioinfo */;
- targetProxy = 001799511074403E00F5D044 /* PBXContainerItemProxy */;
- };
- 0017995A1074403E00F5D044 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 00179756107431B300F5D044 /* testdraw2 */;
- targetProxy = 001799591074403E00F5D044 /* PBXContainerItemProxy */;
- };
- 0017995E1074403E00F5D044 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = BEC566FB0761D90300A33029 /* testerror */;
- targetProxy = 0017995D1074403E00F5D044 /* PBXContainerItemProxy */;
- };
- 001799601074403E00F5D044 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 002F340109CA1BFF00EBEB88 /* testfile */;
- targetProxy = 0017995F1074403E00F5D044 /* PBXContainerItemProxy */;
- };
- 001799661074403E00F5D044 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 0017970910742F3200F5D044 /* testgl2 */;
- targetProxy = 001799651074403E00F5D044 /* PBXContainerItemProxy */;
- };
- 001799681074403E00F5D044 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 00179730107430D600F5D044 /* testhaptic */;
- targetProxy = 001799671074403E00F5D044 /* PBXContainerItemProxy */;
- };
- 0017996A1074403E00F5D044 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = BEC567230761D90400A33029 /* testthread */;
- targetProxy = 001799691074403E00F5D044 /* PBXContainerItemProxy */;
- };
- 0017996C1074403E00F5D044 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 002F342009CA1F0300EBEB88 /* testiconv */;
- targetProxy = 0017996B1074403E00F5D044 /* PBXContainerItemProxy */;
- };
- 0017996E1074403E00F5D044 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 00179776107432AE00F5D044 /* testime */;
- targetProxy = 0017996D1074403E00F5D044 /* PBXContainerItemProxy */;
- };
- 001799701074403E00F5D044 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 001797961074334C00F5D044 /* testintersections */;
- targetProxy = 0017996F1074403E00F5D044 /* PBXContainerItemProxy */;
- };
- 001799721074403E00F5D044 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = BEC567300761D90400A33029 /* testjoystick */;
- targetProxy = 001799711074403E00F5D044 /* PBXContainerItemProxy */;
- };
- 001799741074403E00F5D044 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = BEC5673D0761D90400A33029 /* testkeys */;
- targetProxy = 001799731074403E00F5D044 /* PBXContainerItemProxy */;
- };
- 001799761074403E00F5D044 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 001797B8107433C600F5D044 /* testloadso */;
- targetProxy = 001799751074403E00F5D044 /* PBXContainerItemProxy */;
- };
- 001799781074403E00F5D044 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = BEC5674A0761D90400A33029 /* testlock */;
- targetProxy = 001799771074403E00F5D044 /* PBXContainerItemProxy */;
- };
- 0017997C1074403E00F5D044 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 001797FA1074355200F5D044 /* testmultiaudio */;
- targetProxy = 0017997B1074403E00F5D044 /* PBXContainerItemProxy */;
- };
- 001799801074403E00F5D044 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 001798781074392D00F5D044 /* testnative */;
- targetProxy = 0017997F1074403E00F5D044 /* PBXContainerItemProxy */;
- };
- 001799841074403E00F5D044 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 002F343C09CA1FB300EBEB88 /* testoverlay2 */;
- targetProxy = 001799831074403E00F5D044 /* PBXContainerItemProxy */;
- };
- 001799881074403E00F5D044 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 002F345909CA204F00EBEB88 /* testplatform */;
- targetProxy = 001799871074403E00F5D044 /* PBXContainerItemProxy */;
- };
- 0017998A1074403E00F5D044 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 0017989D107439DF00F5D044 /* testpower */;
- targetProxy = 001799891074403E00F5D044 /* PBXContainerItemProxy */;
- };
- 0017998C1074403E00F5D044 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 001798DA10743BEC00F5D044 /* testresample */;
- targetProxy = 0017998B1074403E00F5D044 /* PBXContainerItemProxy */;
- };
- 0017998E1074403E00F5D044 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = BEC567720761D90500A33029 /* testsem */;
- targetProxy = 0017998D1074403E00F5D044 /* PBXContainerItemProxy */;
- };
- 001799921074403E00F5D044 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 001798FE10743F1000F5D044 /* testsprite2 */;
- targetProxy = 001799911074403E00F5D044 /* PBXContainerItemProxy */;
- };
- 001799941074403E00F5D044 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = BEC5678D0761D90500A33029 /* testtimer */;
- targetProxy = 001799931074403E00F5D044 /* PBXContainerItemProxy */;
- };
- 001799961074403E00F5D044 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = BEC567A70761D90500A33029 /* testversion */;
- targetProxy = 001799951074403E00F5D044 /* PBXContainerItemProxy */;
- };
- 0017999E1074403E00F5D044 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 0017992010743FB700F5D044 /* testwm2 */;
- targetProxy = 0017999D1074403E00F5D044 /* PBXContainerItemProxy */;
- };
- 001799A21074403E00F5D044 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = BEC567EA0761D90600A33029 /* torturethread */;
- targetProxy = 001799A11074403E00F5D044 /* PBXContainerItemProxy */;
- };
- DB0F490517CA5249008798C5 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = DB0F48D917CA51E5008798C5 /* testdrawchessboard */;
- targetProxy = DB0F490417CA5249008798C5 /* PBXContainerItemProxy */;
- };
- DB0F490717CA5249008798C5 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = DB0F48EF17CA5212008798C5 /* testfilesystem */;
- targetProxy = DB0F490617CA5249008798C5 /* PBXContainerItemProxy */;
- };
- DB166D6E16A1CEAA00A1396C /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = BBFC08B7164C6862003E6A99 /* testgamecontroller */;
- targetProxy = DB166D6D16A1CEAA00A1396C /* PBXContainerItemProxy */;
- };
- DB166D7016A1CEAF00A1396C /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 4537749112091504002F0F45 /* testshape */;
- targetProxy = DB166D6F16A1CEAF00A1396C /* PBXContainerItemProxy */;
- };
- DB166DC316A1D32C00A1396C /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = DB166DAD16A1D2F600A1396C /* testgesture */;
- targetProxy = DB166DC216A1D32C00A1396C /* PBXContainerItemProxy */;
- };
- DB166DD916A1D38900A1396C /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = DB166DC416A1D36A00A1396C /* testmessage */;
- targetProxy = DB166DD816A1D38900A1396C /* PBXContainerItemProxy */;
- };
- DB166DF216A1D53700A1396C /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = DB166DDC16A1D50C00A1396C /* testrelative */;
- targetProxy = DB166DF116A1D53700A1396C /* PBXContainerItemProxy */;
- };
- DB166E0916A1D5A400A1396C /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = DB166DF316A1D57C00A1396C /* testrendercopyex */;
- targetProxy = DB166E0816A1D5A400A1396C /* PBXContainerItemProxy */;
- };
- DB166E2016A1D5D000A1396C /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = DB166E0A16A1D5AD00A1396C /* testrendertarget */;
- targetProxy = DB166E1F16A1D5D000A1396C /* PBXContainerItemProxy */;
- };
- DB166E3B16A1D65A00A1396C /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = DB166E2716A1D64D00A1396C /* testrumble */;
- targetProxy = DB166E3A16A1D65A00A1396C /* PBXContainerItemProxy */;
- };
- DB166E5616A1D6B800A1396C /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = DB166E3D16A1D69000A1396C /* testscale */;
- targetProxy = DB166E5516A1D6B800A1396C /* PBXContainerItemProxy */;
- };
- DB166E6C16A1D72000A1396C /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = DB166E5716A1D6F300A1396C /* testshader */;
- targetProxy = DB166E6B16A1D72000A1396C /* PBXContainerItemProxy */;
- };
- DB166E9616A1D7CD00A1396C /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = DB166E6D16A1D78400A1396C /* testspriteminimal */;
- targetProxy = DB166E9516A1D7CD00A1396C /* PBXContainerItemProxy */;
- };
- DB166E9816A1D7CF00A1396C /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = DB166E8016A1D78C00A1396C /* teststreaming */;
- targetProxy = DB166E9716A1D7CF00A1396C /* PBXContainerItemProxy */;
- };
- /* End PBXTargetDependency section */
- /* Begin XCBuildConfiguration section */
- 0017958910741F7900F5D044 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testatomic;
- };
- name = Debug;
- };
- 0017958A10741F7900F5D044 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testatomic;
- };
- name = Release;
- };
- 001795AA107421BF00F5D044 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testaudioinfo;
- };
- name = Debug;
- };
- 001795AB107421BF00F5D044 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testaudioinfo;
- };
- name = Release;
- };
- 0017971E10742F3200F5D044 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- GCC_PREPROCESSOR_DEFINITIONS = HAVE_OPENGL;
- PRODUCT_NAME = testgl2;
- SUPPORTED_PLATFORMS = macosx;
- };
- name = Debug;
- };
- 0017971F10742F3200F5D044 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- GCC_PREPROCESSOR_DEFINITIONS = HAVE_OPENGL;
- PRODUCT_NAME = testgl2;
- SUPPORTED_PLATFORMS = macosx;
- };
- name = Release;
- };
- 00179745107430D600F5D044 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testhaptic;
- };
- name = Debug;
- };
- 00179746107430D600F5D044 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testhaptic;
- };
- name = Release;
- };
- 0017976B107431B300F5D044 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testdraw2;
- };
- name = Debug;
- };
- 0017976C107431B300F5D044 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testdraw2;
- };
- name = Release;
- };
- 0017978B107432AE00F5D044 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testime;
- };
- name = Debug;
- };
- 0017978C107432AE00F5D044 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testime;
- };
- name = Release;
- };
- 001797AB1074334C00F5D044 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testintersections;
- };
- name = Debug;
- };
- 001797AC1074334C00F5D044 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testintersections;
- };
- name = Release;
- };
- 001797CD107433C600F5D044 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testloadso;
- };
- name = Debug;
- };
- 001797CE107433C600F5D044 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testloadso;
- };
- name = Release;
- };
- 0017980F1074355200F5D044 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testmultiaudio;
- };
- name = Debug;
- };
- 001798101074355200F5D044 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testmultiaudio;
- };
- name = Release;
- };
- 001798911074392D00F5D044 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testnative;
- SUPPORTED_PLATFORMS = macosx;
- };
- name = Debug;
- };
- 001798921074392D00F5D044 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testnative;
- SUPPORTED_PLATFORMS = macosx;
- };
- name = Release;
- };
- 001798B2107439DF00F5D044 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testpower;
- };
- name = Debug;
- };
- 001798B3107439DF00F5D044 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testpower;
- };
- name = Release;
- };
- 001798EF10743BEC00F5D044 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testresample;
- };
- name = Debug;
- };
- 001798F010743BEC00F5D044 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testresample;
- };
- name = Release;
- };
- 0017991310743F1000F5D044 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testsprite2;
- };
- name = Debug;
- };
- 0017991410743F1000F5D044 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testsprite2;
- };
- name = Release;
- };
- 0017993510743FB700F5D044 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testwm2;
- };
- name = Debug;
- };
- 0017993610743FB700F5D044 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testwm2;
- };
- name = Release;
- };
- 002A85B21073008E007319AE /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = F3C17C6A28E3FD4400E1A26D /* config.xcconfig */;
- buildSettings = {
- ALLOW_TARGET_PLATFORM_SPECIALIZATION = YES;
- COPY_PHASE_STRIP = NO;
- CURRENT_PROJECT_VERSION = 1;
- DEBUG_INFORMATION_FORMAT = dwarf;
- ENABLE_TESTABILITY = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_SYMBOLS_PRIVATE_EXTERN = YES;
- GENERATE_INFOPLIST_FILE = YES;
- HEADER_SEARCH_PATHS = ../../include;
- INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
- "LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
- MACOSX_DEPLOYMENT_TARGET = 10.9;
- MARKETING_VERSION = 1.0;
- ONLY_ACTIVE_ARCH = YES;
- OTHER_LDFLAGS = "$(CONFIG_FRAMEWORK_LDFLAGS)";
- PRODUCT_BUNDLE_IDENTIFIER = "org.libsdl.$(PRODUCT_NAME)";
- SUPPORTED_PLATFORMS = "macosx iphonesimulator iphoneos appletvsimulator appletvos";
- SUPPORTS_MACCATALYST = YES;
- TVOS_DEPLOYMENT_TARGET = 9.0;
- };
- name = Debug;
- };
- 002A85B31073008E007319AE /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = "Build All";
- };
- name = Debug;
- };
- 002A85B41073008E007319AE /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = checkkeys;
- };
- name = Debug;
- };
- 002A85B61073008E007319AE /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = loopwave;
- };
- name = Debug;
- };
- 002A85BC1073008E007319AE /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testerror;
- };
- name = Debug;
- };
- 002A85BD1073008E007319AE /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testfile;
- };
- name = Debug;
- };
- 002A85C01073008E007319AE /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testiconv;
- };
- name = Debug;
- };
- 002A85C11073008E007319AE /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testjoystick;
- };
- name = Debug;
- };
- 002A85C21073008E007319AE /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testkeys;
- };
- name = Debug;
- };
- 002A85C31073008E007319AE /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testlock;
- };
- name = Debug;
- };
- 002A85C51073008E007319AE /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testoverlay2;
- };
- name = Debug;
- };
- 002A85C71073008E007319AE /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testplatform;
- };
- name = Debug;
- };
- 002A85C81073008E007319AE /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testsem;
- };
- name = Debug;
- };
- 002A85CA1073008E007319AE /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testthread;
- };
- name = Debug;
- };
- 002A85CB1073008E007319AE /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testtimer;
- };
- name = Debug;
- };
- 002A85CC1073008E007319AE /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testversion;
- };
- name = Debug;
- };
- 002A85D11073008E007319AE /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = torturethread;
- };
- name = Debug;
- };
- 002A85D41073009D007319AE /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = F3C17C6A28E3FD4400E1A26D /* config.xcconfig */;
- buildSettings = {
- ALLOW_TARGET_PLATFORM_SPECIALIZATION = YES;
- CURRENT_PROJECT_VERSION = 1;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- DEPLOYMENT_POSTPROCESSING = YES;
- GCC_SYMBOLS_PRIVATE_EXTERN = YES;
- GENERATE_INFOPLIST_FILE = YES;
- HEADER_SEARCH_PATHS = ../../include;
- INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
- "LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
- MACOSX_DEPLOYMENT_TARGET = 10.9;
- MARKETING_VERSION = 1.0;
- OTHER_LDFLAGS = "$(CONFIG_FRAMEWORK_LDFLAGS)";
- PRODUCT_BUNDLE_IDENTIFIER = "org.libsdl.$(PRODUCT_NAME)";
- SUPPORTED_PLATFORMS = "macosx iphonesimulator iphoneos appletvsimulator appletvos";
- SUPPORTS_MACCATALYST = YES;
- TVOS_DEPLOYMENT_TARGET = 9.0;
- };
- name = Release;
- };
- 002A85D51073009D007319AE /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = "Build All";
- };
- name = Release;
- };
- 002A85D61073009D007319AE /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = checkkeys;
- };
- name = Release;
- };
- 002A85D81073009D007319AE /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = loopwave;
- };
- name = Release;
- };
- 002A85DE1073009D007319AE /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testerror;
- };
- name = Release;
- };
- 002A85DF1073009D007319AE /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testfile;
- };
- name = Release;
- };
- 002A85E21073009D007319AE /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testiconv;
- };
- name = Release;
- };
- 002A85E31073009D007319AE /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testjoystick;
- };
- name = Release;
- };
- 002A85E41073009D007319AE /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testkeys;
- };
- name = Release;
- };
- 002A85E51073009D007319AE /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testlock;
- };
- name = Release;
- };
- 002A85E71073009D007319AE /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testoverlay2;
- };
- name = Release;
- };
- 002A85E91073009D007319AE /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testplatform;
- };
- name = Release;
- };
- 002A85EA1073009D007319AE /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testsem;
- };
- name = Release;
- };
- 002A85EC1073009D007319AE /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testthread;
- };
- name = Release;
- };
- 002A85ED1073009D007319AE /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testtimer;
- };
- name = Release;
- };
- 002A85EE1073009D007319AE /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testversion;
- };
- name = Release;
- };
- 002A85F31073009D007319AE /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = torturethread;
- };
- name = Release;
- };
- 4537749712091509002F0F45 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testshape;
- };
- name = Debug;
- };
- 4537749812091509002F0F45 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testshape;
- };
- name = Release;
- };
- BBFC08CB164C6862003E6A99 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testgamecontroller;
- };
- name = Debug;
- };
- BBFC08CC164C6862003E6A99 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testgamecontroller;
- };
- name = Release;
- };
- DB0F48EA17CA51E5008798C5 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testdrawchessboard;
- };
- name = Debug;
- };
- DB0F48EB17CA51E5008798C5 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testdrawchessboard;
- };
- name = Release;
- };
- DB0F48FF17CA5212008798C5 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testfilesystem;
- };
- name = Debug;
- };
- DB0F490017CA5212008798C5 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testfilesystem;
- };
- name = Release;
- };
- DB166D8116A1D12400A1396C /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALLOW_TARGET_PLATFORM_SPECIALIZATION = YES;
- EXECUTABLE_PREFIX = lib;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SUPPORTED_PLATFORMS = "watchsimulator watchos macosx iphonesimulator iphoneos driverkit appletvsimulator appletvos";
- SUPPORTS_MACCATALYST = YES;
- };
- name = Debug;
- };
- DB166D8216A1D12400A1396C /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALLOW_TARGET_PLATFORM_SPECIALIZATION = YES;
- EXECUTABLE_PREFIX = lib;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SUPPORTED_PLATFORMS = "watchsimulator watchos macosx iphonesimulator iphoneos driverkit appletvsimulator appletvos";
- SUPPORTS_MACCATALYST = YES;
- };
- name = Release;
- };
- DB166DBD16A1D2F600A1396C /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testgesture;
- };
- name = Debug;
- };
- DB166DBE16A1D2F600A1396C /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testgesture;
- };
- name = Release;
- };
- DB166DD316A1D36A00A1396C /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testmessage;
- };
- name = Debug;
- };
- DB166DD416A1D36A00A1396C /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testmessage;
- };
- name = Release;
- };
- DB166DEC16A1D50C00A1396C /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testrelative;
- };
- name = Debug;
- };
- DB166DED16A1D50C00A1396C /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testrelative;
- };
- name = Release;
- };
- DB166E0316A1D57C00A1396C /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testrendercopyex;
- };
- name = Debug;
- };
- DB166E0416A1D57C00A1396C /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testrendercopyex;
- };
- name = Release;
- };
- DB166E1A16A1D5AD00A1396C /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testrendertarget;
- };
- name = Debug;
- };
- DB166E1B16A1D5AD00A1396C /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testrendertarget;
- };
- name = Release;
- };
- DB166E3616A1D64D00A1396C /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testrumble;
- };
- name = Debug;
- };
- DB166E3716A1D64D00A1396C /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testrumble;
- };
- name = Release;
- };
- DB166E5016A1D69000A1396C /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testscale;
- };
- name = Debug;
- };
- DB166E5116A1D69000A1396C /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testscale;
- };
- name = Release;
- };
- DB166E6616A1D6F300A1396C /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testshader;
- };
- name = Debug;
- };
- DB166E6716A1D6F300A1396C /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testshader;
- };
- name = Release;
- };
- DB166E7C16A1D78400A1396C /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testspriteminimal;
- };
- name = Debug;
- };
- DB166E7D16A1D78400A1396C /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testspriteminimal;
- };
- name = Release;
- };
- DB166E8F16A1D78C00A1396C /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = teststreaming;
- };
- name = Debug;
- };
- DB166E9016A1D78C00A1396C /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = teststreaming;
- };
- name = Release;
- };
- DB445EF618184B7000B306B0 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- INFOPLIST_FILE = "TestDropFile-Info.plist";
- PRODUCT_NAME = testdropfile;
- };
- name = Debug;
- };
- DB445EF718184B7000B306B0 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- INFOPLIST_FILE = "TestDropFile-Info.plist";
- PRODUCT_NAME = testdropfile;
- };
- name = Release;
- };
- DB89957C18A19ABA0092407C /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testhotplug;
- };
- name = Debug;
- };
- DB89957D18A19ABA0092407C /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = testhotplug;
- };
- name = Release;
- };
- DBEC54E81A1A81C3005B1EAB /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = controllermap;
- };
- name = Debug;
- };
- DBEC54E91A1A81C3005B1EAB /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = controllermap;
- };
- name = Release;
- };
- F3C17CE928E416D000E1A26D /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = "$(TARGET_NAME)";
- };
- name = Debug;
- };
- F3C17CEA28E416D000E1A26D /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- PRODUCT_NAME = "$(TARGET_NAME)";
- };
- name = Release;
- };
- /* End XCBuildConfiguration section */
- /* Begin XCConfigurationList section */
- 0017958610741F7900F5D044 /* Build configuration list for PBXNativeTarget "testatomic" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 0017958910741F7900F5D044 /* Debug */,
- 0017958A10741F7900F5D044 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 001795A7107421BF00F5D044 /* Build configuration list for PBXNativeTarget "testaudioinfo" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 001795AA107421BF00F5D044 /* Debug */,
- 001795AB107421BF00F5D044 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 0017971B10742F3200F5D044 /* Build configuration list for PBXNativeTarget "testgl2" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 0017971E10742F3200F5D044 /* Debug */,
- 0017971F10742F3200F5D044 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 00179742107430D600F5D044 /* Build configuration list for PBXNativeTarget "testhaptic" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 00179745107430D600F5D044 /* Debug */,
- 00179746107430D600F5D044 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 00179768107431B300F5D044 /* Build configuration list for PBXNativeTarget "testdraw2" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 0017976B107431B300F5D044 /* Debug */,
- 0017976C107431B300F5D044 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 00179788107432AE00F5D044 /* Build configuration list for PBXNativeTarget "testime" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 0017978B107432AE00F5D044 /* Debug */,
- 0017978C107432AE00F5D044 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 001797A81074334C00F5D044 /* Build configuration list for PBXNativeTarget "testintersections" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 001797AB1074334C00F5D044 /* Debug */,
- 001797AC1074334C00F5D044 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 001797CA107433C600F5D044 /* Build configuration list for PBXNativeTarget "testloadso" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 001797CD107433C600F5D044 /* Debug */,
- 001797CE107433C600F5D044 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 0017980C1074355200F5D044 /* Build configuration list for PBXNativeTarget "testmultiaudio" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 0017980F1074355200F5D044 /* Debug */,
- 001798101074355200F5D044 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 0017988E1074392D00F5D044 /* Build configuration list for PBXNativeTarget "testnative" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 001798911074392D00F5D044 /* Debug */,
- 001798921074392D00F5D044 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 001798AF107439DF00F5D044 /* Build configuration list for PBXNativeTarget "testpower" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 001798B2107439DF00F5D044 /* Debug */,
- 001798B3107439DF00F5D044 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 001798EC10743BEC00F5D044 /* Build configuration list for PBXNativeTarget "testresample" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 001798EF10743BEC00F5D044 /* Debug */,
- 001798F010743BEC00F5D044 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 0017991010743F1000F5D044 /* Build configuration list for PBXNativeTarget "testsprite2" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 0017991310743F1000F5D044 /* Debug */,
- 0017991410743F1000F5D044 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 0017993210743FB700F5D044 /* Build configuration list for PBXNativeTarget "testwm2" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 0017993510743FB700F5D044 /* Debug */,
- 0017993610743FB700F5D044 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 001B593808BDB826006539E9 /* Build configuration list for PBXNativeTarget "checkkeys" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 002A85B41073008E007319AE /* Debug */,
- 002A85D61073009D007319AE /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 001B594008BDB826006539E9 /* Build configuration list for PBXNativeTarget "loopwave" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 002A85B61073008E007319AE /* Debug */,
- 002A85D81073009D007319AE /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 001B595008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testerror" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 002A85BC1073008E007319AE /* Debug */,
- 002A85DE1073009D007319AE /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 001B595C08BDB826006539E9 /* Build configuration list for PBXNativeTarget "testthread" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 002A85CA1073008E007319AE /* Debug */,
- 002A85EC1073009D007319AE /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 001B596008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testjoystick" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 002A85C11073008E007319AE /* Debug */,
- 002A85E31073009D007319AE /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 001B596408BDB826006539E9 /* Build configuration list for PBXNativeTarget "testkeys" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 002A85C21073008E007319AE /* Debug */,
- 002A85E41073009D007319AE /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 001B596808BDB826006539E9 /* Build configuration list for PBXNativeTarget "testlock" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 002A85C31073008E007319AE /* Debug */,
- 002A85E51073009D007319AE /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 001B597008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testsem" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 002A85C81073008E007319AE /* Debug */,
- 002A85EA1073009D007319AE /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 001B597808BDB826006539E9 /* Build configuration list for PBXNativeTarget "testtimer" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 002A85CB1073008E007319AE /* Debug */,
- 002A85ED1073009D007319AE /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 001B598008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testversion" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 002A85CC1073008E007319AE /* Debug */,
- 002A85EE1073009D007319AE /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 001B599408BDB826006539E9 /* Build configuration list for PBXNativeTarget "torturethread" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 002A85D11073008E007319AE /* Debug */,
- 002A85F31073009D007319AE /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 001B599808BDB826006539E9 /* Build configuration list for PBXAggregateTarget "All" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 002A85B31073008E007319AE /* Debug */,
- 002A85D51073009D007319AE /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 001B5A0C08BDB826006539E9 /* Build configuration list for PBXProject "SDLTest" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 002A85B21073008E007319AE /* Debug */,
- 002A85D41073009D007319AE /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 002F340E09CA1BFF00EBEB88 /* Build configuration list for PBXNativeTarget "testfile" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 002A85BD1073008E007319AE /* Debug */,
- 002A85DF1073009D007319AE /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 002F342D09CA1F0300EBEB88 /* Build configuration list for PBXNativeTarget "testiconv" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 002A85C01073008E007319AE /* Debug */,
- 002A85E21073009D007319AE /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 002F344909CA1FB300EBEB88 /* Build configuration list for PBXNativeTarget "testoverlay2" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 002A85C51073008E007319AE /* Debug */,
- 002A85E71073009D007319AE /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 002F346609CA204F00EBEB88 /* Build configuration list for PBXNativeTarget "testplatform" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 002A85C71073008E007319AE /* Debug */,
- 002A85E91073009D007319AE /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- 4537749A1209150C002F0F45 /* Build configuration list for PBXNativeTarget "testshape" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 4537749712091509002F0F45 /* Debug */,
- 4537749812091509002F0F45 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- BBFC08CA164C6862003E6A99 /* Build configuration list for PBXNativeTarget "testgamecontroller" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- BBFC08CB164C6862003E6A99 /* Debug */,
- BBFC08CC164C6862003E6A99 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- DB0F48E917CA51E5008798C5 /* Build configuration list for PBXNativeTarget "testdrawchessboard" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- DB0F48EA17CA51E5008798C5 /* Debug */,
- DB0F48EB17CA51E5008798C5 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- DB0F48FE17CA5212008798C5 /* Build configuration list for PBXNativeTarget "testfilesystem" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- DB0F48FF17CA5212008798C5 /* Debug */,
- DB0F490017CA5212008798C5 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- DB166D8016A1D12400A1396C /* Build configuration list for PBXNativeTarget "SDL_test" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- DB166D8116A1D12400A1396C /* Debug */,
- DB166D8216A1D12400A1396C /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- DB166DBC16A1D2F600A1396C /* Build configuration list for PBXNativeTarget "testgesture" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- DB166DBD16A1D2F600A1396C /* Debug */,
- DB166DBE16A1D2F600A1396C /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- DB166DD216A1D36A00A1396C /* Build configuration list for PBXNativeTarget "testmessage" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- DB166DD316A1D36A00A1396C /* Debug */,
- DB166DD416A1D36A00A1396C /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- DB166DEB16A1D50C00A1396C /* Build configuration list for PBXNativeTarget "testrelative" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- DB166DEC16A1D50C00A1396C /* Debug */,
- DB166DED16A1D50C00A1396C /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- DB166E0216A1D57C00A1396C /* Build configuration list for PBXNativeTarget "testrendercopyex" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- DB166E0316A1D57C00A1396C /* Debug */,
- DB166E0416A1D57C00A1396C /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- DB166E1916A1D5AD00A1396C /* Build configuration list for PBXNativeTarget "testrendertarget" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- DB166E1A16A1D5AD00A1396C /* Debug */,
- DB166E1B16A1D5AD00A1396C /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- DB166E3516A1D64D00A1396C /* Build configuration list for PBXNativeTarget "testrumble" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- DB166E3616A1D64D00A1396C /* Debug */,
- DB166E3716A1D64D00A1396C /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- DB166E4F16A1D69000A1396C /* Build configuration list for PBXNativeTarget "testscale" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- DB166E5016A1D69000A1396C /* Debug */,
- DB166E5116A1D69000A1396C /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- DB166E6516A1D6F300A1396C /* Build configuration list for PBXNativeTarget "testshader" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- DB166E6616A1D6F300A1396C /* Debug */,
- DB166E6716A1D6F300A1396C /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- DB166E7B16A1D78400A1396C /* Build configuration list for PBXNativeTarget "testspriteminimal" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- DB166E7C16A1D78400A1396C /* Debug */,
- DB166E7D16A1D78400A1396C /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- DB166E8E16A1D78C00A1396C /* Build configuration list for PBXNativeTarget "teststreaming" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- DB166E8F16A1D78C00A1396C /* Debug */,
- DB166E9016A1D78C00A1396C /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- DB445EF518184B7000B306B0 /* Build configuration list for PBXNativeTarget "testdropfile" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- DB445EF618184B7000B306B0 /* Debug */,
- DB445EF718184B7000B306B0 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- DB89957B18A19ABA0092407C /* Build configuration list for PBXNativeTarget "testhotplug" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- DB89957C18A19ABA0092407C /* Debug */,
- DB89957D18A19ABA0092407C /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- DBEC54E71A1A81C3005B1EAB /* Build configuration list for PBXNativeTarget "controllermap" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- DBEC54E81A1A81C3005B1EAB /* Debug */,
- DBEC54E91A1A81C3005B1EAB /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- F3C17CE828E416D000E1A26D /* Build configuration list for PBXNativeTarget "testgeometry" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- F3C17CE928E416D000E1A26D /* Debug */,
- F3C17CEA28E416D000E1A26D /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Debug;
- };
- /* End XCConfigurationList section */
- };
- rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
- }
|