-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
project.pbxproj
851 lines (840 loc) · 66.2 KB
/
project.pbxproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
2AF8C4AC274C3EB2006301DC /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 2AF8C4AB274C3EB2006301DC /* Images.xcassets */; };
8A97F56C1B5BD909009FA1D9 /* d_loop.c in Sources */ = {isa = PBXBuildFile; fileRef = 8A97F56A1B5BD909009FA1D9 /* d_loop.c */; };
8AD637331B33390400605ECA /* p_genlin.c in Sources */ = {isa = PBXBuildFile; fileRef = 8AD637321B3338E400605ECA /* p_genlin.c */; };
8AF2AAB820E76665005C4E4C /* info.c in Sources */ = {isa = PBXBuildFile; fileRef = 8AF2AAB620E7665C005C4E4C /* info.c */; };
8AF2AAB920E76667005C4E4C /* sprites.c in Sources */ = {isa = PBXBuildFile; fileRef = 8AF2AAB520E7665B005C4E4C /* sprites.c */; };
8AF2AABA20E76671005C4E4C /* p_user.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82481A8DB9EB00AF539F /* p_user.c */; };
9F385F291C28ADAF00BD4F2B /* SDL2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F385F281C28ADAF00BD4F2B /* SDL2.framework */; };
9F385F2B1C28ADBC00BD4F2B /* SDL2_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F385F2A1C28ADBC00BD4F2B /* SDL2_mixer.framework */; };
9F385F2E1C28B0D100BD4F2B /* sc_man.c in Sources */ = {isa = PBXBuildFile; fileRef = 9F385F2C1C28B0D100BD4F2B /* sc_man.c */; };
9F385F321C29C03100BD4F2B /* SDL2_mixer.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 9F385F2A1C28ADBC00BD4F2B /* SDL2_mixer.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
9F385F331C29C03100BD4F2B /* SDL2.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 9F385F281C28ADAF00BD4F2B /* SDL2.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
AB5A81D31A8DAEB600AF539F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AB5A81D21A8DAEB600AF539F /* Cocoa.framework */; };
AB5A82791A8DB9EB00AF539F /* am_map.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A81DA1A8DB9EB00AF539F /* am_map.c */; };
AB5A827A1A8DB9EB00AF539F /* c_cmds.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A81DC1A8DB9EB00AF539F /* c_cmds.c */; };
AB5A827B1A8DB9EB00AF539F /* c_console.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A81DE1A8DB9EB00AF539F /* c_console.c */; };
AB5A827C1A8DB9EB00AF539F /* d_deh.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A81E01A8DB9EB00AF539F /* d_deh.c */; };
AB5A827D1A8DB9EB00AF539F /* d_items.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A81E41A8DB9EB00AF539F /* d_items.c */; };
AB5A827E1A8DB9EB00AF539F /* d_iwad.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A81E61A8DB9EB00AF539F /* d_iwad.c */; };
AB5A827F1A8DB9EB00AF539F /* d_main.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A81E81A8DB9EB00AF539F /* d_main.c */; };
AB5A82811A8DB9EB00AF539F /* doomstat.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A81F21A8DB9EB00AF539F /* doomstat.c */; };
AB5A82821A8DB9EB00AF539F /* dstrings.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A81F51A8DB9EB00AF539F /* dstrings.c */; };
AB5A82831A8DB9EB00AF539F /* f_finale.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A81F71A8DB9EB00AF539F /* f_finale.c */; };
AB5A82841A8DB9EB00AF539F /* f_wipe.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A81F91A8DB9EB00AF539F /* f_wipe.c */; };
AB5A82851A8DB9EB00AF539F /* g_game.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A81FB1A8DB9EB00AF539F /* g_game.c */; };
AB5A82861A8DB9EB00AF539F /* hu_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A81FD1A8DB9EB00AF539F /* hu_lib.c */; };
AB5A82871A8DB9EB00AF539F /* hu_stuff.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A81FF1A8DB9EB00AF539F /* hu_stuff.c */; };
AB5A82881A8DB9EB00AF539F /* i_gamepad.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82011A8DB9EB00AF539F /* i_gamepad.c */; };
AB5A82891A8DB9EB00AF539F /* doomretro.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82031A8DB9EB00AF539F /* doomretro.c */; };
AB5A828A1A8DB9EB00AF539F /* i_music.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82041A8DB9EB00AF539F /* i_music.c */; };
AB5A828B1A8DB9EB00AF539F /* i_sound.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82051A8DB9EB00AF539F /* i_sound.c */; };
AB5A828C1A8DB9EB00AF539F /* i_system.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82071A8DB9EB00AF539F /* i_system.c */; };
AB5A828D1A8DB9EB00AF539F /* i_timer.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82091A8DB9EB00AF539F /* i_timer.c */; };
AB5A828E1A8DB9EB00AF539F /* i_colors.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A820B1A8DB9EB00AF539F /* i_colors.c */; };
AB5A828F1A8DB9EB00AF539F /* i_video.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A820D1A8DB9EB00AF539F /* i_video.c */; };
AB5A82901A8DB9EB00AF539F /* states.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A820F1A8DB9EB00AF539F /* states.c */; };
AB5A82911A8DB9EB00AF539F /* m_argv.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82121A8DB9EB00AF539F /* m_argv.c */; };
AB5A82921A8DB9EB00AF539F /* m_bbox.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82141A8DB9EB00AF539F /* m_bbox.c */; };
AB5A82931A8DB9EB00AF539F /* m_cheat.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82161A8DB9EB00AF539F /* m_cheat.c */; };
AB5A82961A8DB9EB00AF539F /* m_menu.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A821C1A8DB9EB00AF539F /* m_menu.c */; };
AB5A82971A8DB9EB00AF539F /* m_misc.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A821E1A8DB9EB00AF539F /* m_misc.c */; };
AB5A82981A8DB9EB00AF539F /* m_random.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82201A8DB9EB00AF539F /* m_random.c */; };
AB5A829F1A8DB9EB00AF539F /* mmus2mid.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A822A1A8DB9EB00AF539F /* mmus2mid.c */; };
AB5A82A01A8DB9EB00AF539F /* p_ceilng.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A822C1A8DB9EB00AF539F /* p_ceilng.c */; };
AB5A82A11A8DB9EB00AF539F /* p_doors.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A822D1A8DB9EB00AF539F /* p_doors.c */; };
AB5A82A21A8DB9EB00AF539F /* p_enemy.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A822E1A8DB9EB00AF539F /* p_enemy.c */; };
AB5A82A31A8DB9EB00AF539F /* p_fix.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A822F1A8DB9EB00AF539F /* p_fix.c */; };
AB5A82A41A8DB9EB00AF539F /* p_floor.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82311A8DB9EB00AF539F /* p_floor.c */; };
AB5A82A51A8DB9EB00AF539F /* p_inter.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82321A8DB9EB00AF539F /* p_inter.c */; };
AB5A82A61A8DB9EB00AF539F /* p_lights.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82341A8DB9EB00AF539F /* p_lights.c */; };
AB5A82A71A8DB9EB00AF539F /* p_map.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82361A8DB9EB00AF539F /* p_map.c */; };
AB5A82A81A8DB9EB00AF539F /* p_maputl.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82371A8DB9EB00AF539F /* p_maputl.c */; };
AB5A82A91A8DB9EB00AF539F /* p_mobj.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82381A8DB9EB00AF539F /* p_mobj.c */; };
AB5A82AA1A8DB9EB00AF539F /* p_plats.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A823A1A8DB9EB00AF539F /* p_plats.c */; };
AB5A82AB1A8DB9EB00AF539F /* p_pspr.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A823B1A8DB9EB00AF539F /* p_pspr.c */; };
AB5A82AC1A8DB9EB00AF539F /* p_saveg.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A823D1A8DB9EB00AF539F /* p_saveg.c */; };
AB5A82AD1A8DB9EB00AF539F /* p_setup.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A823F1A8DB9EB00AF539F /* p_setup.c */; };
AB5A82AE1A8DB9EB00AF539F /* p_sight.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82411A8DB9EB00AF539F /* p_sight.c */; };
AB5A82AF1A8DB9EB00AF539F /* p_spec.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82421A8DB9EB00AF539F /* p_spec.c */; };
AB5A82B01A8DB9EB00AF539F /* p_switch.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82441A8DB9EB00AF539F /* p_switch.c */; };
AB5A82B11A8DB9EB00AF539F /* p_telept.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82451A8DB9EB00AF539F /* p_telept.c */; };
AB5A82B21A8DB9EB00AF539F /* p_tick.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82461A8DB9EB00AF539F /* p_tick.c */; };
AB5A82B41A8DB9EB00AF539F /* r_bsp.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82491A8DB9EB00AF539F /* r_bsp.c */; };
AB5A82B51A8DB9EB00AF539F /* r_data.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A824B1A8DB9EB00AF539F /* r_data.c */; };
AB5A82B61A8DB9EB00AF539F /* r_draw.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A824E1A8DB9EB00AF539F /* r_draw.c */; };
AB5A82B71A8DB9EB00AF539F /* r_main.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82511A8DB9EB00AF539F /* r_main.c */; };
AB5A82B81A8DB9EB00AF539F /* r_plane.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82531A8DB9EB00AF539F /* r_plane.c */; };
AB5A82B91A8DB9EB00AF539F /* r_segs.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82551A8DB9EB00AF539F /* r_segs.c */; };
AB5A82BA1A8DB9EB00AF539F /* r_sky.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82571A8DB9EB00AF539F /* r_sky.c */; };
AB5A82BB1A8DB9EB00AF539F /* r_things.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A825A1A8DB9EB00AF539F /* r_things.c */; };
AB5A82BC1A8DB9EB00AF539F /* s_sound.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A825C1A8DB9EB00AF539F /* s_sound.c */; };
AB5A82BD1A8DB9EB00AF539F /* sounds.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A825E1A8DB9EB00AF539F /* sounds.c */; };
AB5A82BE1A8DB9EB00AF539F /* st_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82601A8DB9EB00AF539F /* st_lib.c */; };
AB5A82BF1A8DB9EB00AF539F /* st_stuff.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82621A8DB9EB00AF539F /* st_stuff.c */; };
AB5A82C01A8DB9EB00AF539F /* v_data.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82661A8DB9EB00AF539F /* v_data.c */; };
AB5A82C11A8DB9EB00AF539F /* v_video.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82681A8DB9EB00AF539F /* v_video.c */; };
AB5A82C51A8DB9EB00AF539F /* w_file.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A826E1A8DB9EB00AF539F /* w_file.c */; };
AB5A82C61A8DB9EB00AF539F /* w_merge.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82701A8DB9EB00AF539F /* w_merge.c */; };
AB5A82C71A8DB9EB00AF539F /* w_wad.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82721A8DB9EB00AF539F /* w_wad.c */; };
AB5A82C81A8DB9EB00AF539F /* wi_stuff.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82741A8DB9EB00AF539F /* wi_stuff.c */; };
AB5A82CA1A8DB9EB00AF539F /* z_zone.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82771A8DB9EB00AF539F /* z_zone.c */; };
F3142B161F97B1A200CCB7FD /* doomretro.iconset in Resources */ = {isa = PBXBuildFile; fileRef = F3142B151F97B1A100CCB7FD /* doomretro.iconset */; };
F31526711D16F69100824B66 /* doomretro.wad in Resources */ = {isa = PBXBuildFile; fileRef = F31526701D16F69100824B66 /* doomretro.wad */; };
F3C1ED641CF5028600C3E94F /* SDL2_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F3C1ED631CF5028600C3E94F /* SDL2_image.framework */; };
F3C1ED651CF5028B00C3E94F /* SDL2_image.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = F3C1ED631CF5028600C3E94F /* SDL2_image.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
F3C1ED6A1CF508B500C3E94F /* m_config.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C1ED661CF508B500C3E94F /* m_config.c */; };
F3C1ED6B1CF508B500C3E94F /* r_patch.c in Sources */ = {isa = PBXBuildFile; fileRef = F3C1ED681CF508B500C3E94F /* r_patch.c */; };
F3C1ED6C1CF508FC00C3E94F /* m_controls.c in Sources */ = {isa = PBXBuildFile; fileRef = AB5A82181A8DB9EB00AF539F /* m_controls.c */; };
F3CA36071F93C075009DD997 /* c_autocomplete.c in Sources */ = {isa = PBXBuildFile; fileRef = F3CA36061F93C074009DD997 /* c_autocomplete.c */; };
/* End PBXBuildFile section */
/* Begin PBXCopyFilesBuildPhase section */
9F385F311C29C02A00BD4F2B /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 10;
files = (
F3C1ED651CF5028B00C3E94F /* SDL2_image.framework in CopyFiles */,
9F385F321C29C03100BD4F2B /* SDL2_mixer.framework in CopyFiles */,
9F385F331C29C03100BD4F2B /* SDL2.framework in CopyFiles */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
2AF8C4AB274C3EB2006301DC /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
8A6AB8161B49BE8100E0666A /* doomretro.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; name = doomretro.icns; path = doomretroapp/doomretro.icns; sourceTree = "<group>"; };
8A97F56A1B5BD909009FA1D9 /* d_loop.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = d_loop.c; path = ../../src/d_loop.c; sourceTree = "<group>"; };
8A97F56B1B5BD909009FA1D9 /* d_loop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = d_loop.h; path = ../../src/d_loop.h; sourceTree = "<group>"; };
8AD637321B3338E400605ECA /* p_genlin.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = p_genlin.c; path = ../../src/p_genlin.c; sourceTree = "<group>"; };
8AF2AAB120E7665B005C4E4C /* info.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = info.h; path = ../../src/info.h; sourceTree = "<group>"; };
8AF2AAB320E7665B005C4E4C /* sprites.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = sprites.h; path = ../../src/sprites.h; sourceTree = "<group>"; };
8AF2AAB520E7665B005C4E4C /* sprites.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = sprites.c; path = ../../src/sprites.c; sourceTree = "<group>"; };
8AF2AAB620E7665C005C4E4C /* info.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = info.c; path = ../../src/info.c; sourceTree = "<group>"; };
9F385F281C28ADAF00BD4F2B /* SDL2.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = SDL2.framework; sourceTree = "<group>"; };
9F385F2A1C28ADBC00BD4F2B /* SDL2_mixer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = SDL2_mixer.framework; sourceTree = "<group>"; };
9F385F2C1C28B0D100BD4F2B /* sc_man.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sc_man.c; path = ../../src/sc_man.c; sourceTree = "<group>"; };
9F385F2D1C28B0D100BD4F2B /* sc_man.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sc_man.h; path = ../../src/sc_man.h; sourceTree = "<group>"; };
AB5A80C21A8DABE100AF539F /* doomretroapp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = doomretroapp.app; sourceTree = BUILT_PRODUCTS_DIR; };
AB5A80C61A8DABE100AF539F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = doomretroapp/Info.plist; sourceTree = "<group>"; };
AB5A81D21A8DAEB600AF539F /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
AB5A81DA1A8DB9EB00AF539F /* am_map.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = am_map.c; path = ../src/am_map.c; sourceTree = SOURCE_ROOT; };
AB5A81DB1A8DB9EB00AF539F /* am_map.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = am_map.h; path = ../src/am_map.h; sourceTree = SOURCE_ROOT; };
AB5A81DC1A8DB9EB00AF539F /* c_cmds.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = c_cmds.c; path = ../src/c_cmds.c; sourceTree = SOURCE_ROOT; };
AB5A81DD1A8DB9EB00AF539F /* c_cmds.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = c_cmds.h; path = ../src/c_cmds.h; sourceTree = SOURCE_ROOT; };
AB5A81DE1A8DB9EB00AF539F /* c_console.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = c_console.c; path = ../src/c_console.c; sourceTree = SOURCE_ROOT; };
AB5A81DF1A8DB9EB00AF539F /* c_console.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = c_console.h; path = ../src/c_console.h; sourceTree = SOURCE_ROOT; };
AB5A81E01A8DB9EB00AF539F /* d_deh.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = d_deh.c; path = ../src/d_deh.c; sourceTree = SOURCE_ROOT; };
AB5A81E11A8DB9EB00AF539F /* d_deh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = d_deh.h; path = ../src/d_deh.h; sourceTree = SOURCE_ROOT; };
AB5A81E21A8DB9EB00AF539F /* d_englsh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = d_englsh.h; path = ../src/d_englsh.h; sourceTree = SOURCE_ROOT; };
AB5A81E31A8DB9EB00AF539F /* d_event.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = d_event.h; path = ../src/d_event.h; sourceTree = SOURCE_ROOT; };
AB5A81E41A8DB9EB00AF539F /* d_items.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = d_items.c; path = ../src/d_items.c; sourceTree = SOURCE_ROOT; };
AB5A81E51A8DB9EB00AF539F /* d_items.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = d_items.h; path = ../src/d_items.h; sourceTree = SOURCE_ROOT; };
AB5A81E61A8DB9EB00AF539F /* d_iwad.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = d_iwad.c; path = ../src/d_iwad.c; sourceTree = SOURCE_ROOT; };
AB5A81E71A8DB9EB00AF539F /* d_iwad.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = d_iwad.h; path = ../src/d_iwad.h; sourceTree = SOURCE_ROOT; };
AB5A81E81A8DB9EB00AF539F /* d_main.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = d_main.c; path = ../src/d_main.c; sourceTree = SOURCE_ROOT; };
AB5A81E91A8DB9EB00AF539F /* d_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = d_main.h; path = ../src/d_main.h; sourceTree = SOURCE_ROOT; };
AB5A81EC1A8DB9EB00AF539F /* d_player.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = d_player.h; path = ../src/d_player.h; sourceTree = SOURCE_ROOT; };
AB5A81ED1A8DB9EB00AF539F /* d_think.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = d_think.h; path = ../src/d_think.h; sourceTree = SOURCE_ROOT; };
AB5A81EE1A8DB9EB00AF539F /* d_ticcmd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = d_ticcmd.h; path = ../src/d_ticcmd.h; sourceTree = SOURCE_ROOT; };
AB5A81EF1A8DB9EB00AF539F /* doomdata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = doomdata.h; path = ../src/doomdata.h; sourceTree = SOURCE_ROOT; };
AB5A81F01A8DB9EB00AF539F /* doomdef.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = doomdef.h; path = ../src/doomdef.h; sourceTree = SOURCE_ROOT; };
AB5A81F11A8DB9EB00AF539F /* doomkeys.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = doomkeys.h; path = ../src/doomkeys.h; sourceTree = SOURCE_ROOT; };
AB5A81F21A8DB9EB00AF539F /* doomstat.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = doomstat.c; path = ../src/doomstat.c; sourceTree = SOURCE_ROOT; };
AB5A81F31A8DB9EB00AF539F /* doomstat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = doomstat.h; path = ../src/doomstat.h; sourceTree = SOURCE_ROOT; };
AB5A81F41A8DB9EB00AF539F /* doomtype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = doomtype.h; path = ../src/doomtype.h; sourceTree = SOURCE_ROOT; };
AB5A81F51A8DB9EB00AF539F /* dstrings.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = dstrings.c; path = ../src/dstrings.c; sourceTree = SOURCE_ROOT; };
AB5A81F61A8DB9EB00AF539F /* dstrings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = dstrings.h; path = ../src/dstrings.h; sourceTree = SOURCE_ROOT; };
AB5A81F71A8DB9EB00AF539F /* f_finale.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = f_finale.c; path = ../src/f_finale.c; sourceTree = SOURCE_ROOT; };
AB5A81F81A8DB9EB00AF539F /* f_finale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = f_finale.h; path = ../src/f_finale.h; sourceTree = SOURCE_ROOT; };
AB5A81F91A8DB9EB00AF539F /* f_wipe.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = f_wipe.c; path = ../src/f_wipe.c; sourceTree = SOURCE_ROOT; };
AB5A81FA1A8DB9EB00AF539F /* f_wipe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = f_wipe.h; path = ../src/f_wipe.h; sourceTree = SOURCE_ROOT; };
AB5A81FB1A8DB9EB00AF539F /* g_game.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = g_game.c; path = ../src/g_game.c; sourceTree = SOURCE_ROOT; };
AB5A81FC1A8DB9EB00AF539F /* g_game.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = g_game.h; path = ../src/g_game.h; sourceTree = SOURCE_ROOT; };
AB5A81FD1A8DB9EB00AF539F /* hu_lib.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = hu_lib.c; path = ../src/hu_lib.c; sourceTree = SOURCE_ROOT; };
AB5A81FE1A8DB9EB00AF539F /* hu_lib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = hu_lib.h; path = ../src/hu_lib.h; sourceTree = SOURCE_ROOT; };
AB5A81FF1A8DB9EB00AF539F /* hu_stuff.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = hu_stuff.c; path = ../src/hu_stuff.c; sourceTree = SOURCE_ROOT; };
AB5A82001A8DB9EB00AF539F /* hu_stuff.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = hu_stuff.h; path = ../src/hu_stuff.h; sourceTree = SOURCE_ROOT; };
AB5A82011A8DB9EB00AF539F /* i_gamepad.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = i_gamepad.c; path = ../src/i_gamepad.c; sourceTree = SOURCE_ROOT; };
AB5A82021A8DB9EB00AF539F /* i_gamepad.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = i_gamepad.h; path = ../src/i_gamepad.h; sourceTree = SOURCE_ROOT; };
AB5A82031A8DB9EB00AF539F /* doomretro.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = doomretro.c; path = ../src/doomretro.c; sourceTree = SOURCE_ROOT; };
AB5A82041A8DB9EB00AF539F /* i_music.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = i_music.c; path = ../src/i_music.c; sourceTree = SOURCE_ROOT; };
AB5A82051A8DB9EB00AF539F /* i_sound.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = i_sound.c; path = ../src/i_sound.c; sourceTree = SOURCE_ROOT; };
AB5A82061A8DB9EB00AF539F /* i_swap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = i_swap.h; path = ../src/i_swap.h; sourceTree = SOURCE_ROOT; };
AB5A82071A8DB9EB00AF539F /* i_system.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = i_system.c; path = ../src/i_system.c; sourceTree = SOURCE_ROOT; };
AB5A82081A8DB9EB00AF539F /* i_system.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = i_system.h; path = ../src/i_system.h; sourceTree = SOURCE_ROOT; };
AB5A82091A8DB9EB00AF539F /* i_timer.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = i_timer.c; path = ../src/i_timer.c; sourceTree = SOURCE_ROOT; };
AB5A820A1A8DB9EB00AF539F /* i_timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = i_timer.h; path = ../src/i_timer.h; sourceTree = SOURCE_ROOT; };
AB5A820B1A8DB9EB00AF539F /* i_colors.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = i_colors.c; path = ../src/i_colors.c; sourceTree = SOURCE_ROOT; };
AB5A820C1A8DB9EB00AF539F /* i_colors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = i_colors.h; path = ../src/i_colors.h; sourceTree = SOURCE_ROOT; };
AB5A820D1A8DB9EB00AF539F /* i_video.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = i_video.c; path = ../src/i_video.c; sourceTree = SOURCE_ROOT; };
AB5A820E1A8DB9EB00AF539F /* i_video.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = i_video.h; path = ../src/i_video.h; sourceTree = SOURCE_ROOT; };
AB5A820F1A8DB9EB00AF539F /* states.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = states.c; path = ../src/states.c; sourceTree = SOURCE_ROOT; };
AB5A82101A8DB9EB00AF539F /* states.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = states.h; path = ../src/states.h; sourceTree = SOURCE_ROOT; };
AB5A82121A8DB9EB00AF539F /* m_argv.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = m_argv.c; path = ../src/m_argv.c; sourceTree = SOURCE_ROOT; };
AB5A82131A8DB9EB00AF539F /* m_argv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = m_argv.h; path = ../src/m_argv.h; sourceTree = SOURCE_ROOT; };
AB5A82141A8DB9EB00AF539F /* m_bbox.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = m_bbox.c; path = ../src/m_bbox.c; sourceTree = SOURCE_ROOT; };
AB5A82151A8DB9EB00AF539F /* m_bbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = m_bbox.h; path = ../src/m_bbox.h; sourceTree = SOURCE_ROOT; };
AB5A82161A8DB9EB00AF539F /* m_cheat.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = m_cheat.c; path = ../src/m_cheat.c; sourceTree = SOURCE_ROOT; };
AB5A82171A8DB9EB00AF539F /* m_cheat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = m_cheat.h; path = ../src/m_cheat.h; sourceTree = SOURCE_ROOT; };
AB5A82181A8DB9EB00AF539F /* m_controls.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = m_controls.c; path = ../src/m_controls.c; sourceTree = SOURCE_ROOT; };
AB5A82191A8DB9EB00AF539F /* m_controls.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = m_controls.h; path = ../src/m_controls.h; sourceTree = SOURCE_ROOT; };
AB5A821B1A8DB9EB00AF539F /* m_fixed.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = m_fixed.h; path = ../src/m_fixed.h; sourceTree = SOURCE_ROOT; };
AB5A821C1A8DB9EB00AF539F /* m_menu.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = m_menu.c; path = ../src/m_menu.c; sourceTree = SOURCE_ROOT; };
AB5A821D1A8DB9EB00AF539F /* m_menu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = m_menu.h; path = ../src/m_menu.h; sourceTree = SOURCE_ROOT; };
AB5A821E1A8DB9EB00AF539F /* m_misc.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = m_misc.c; path = ../src/m_misc.c; sourceTree = SOURCE_ROOT; };
AB5A821F1A8DB9EB00AF539F /* m_misc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = m_misc.h; path = ../src/m_misc.h; sourceTree = SOURCE_ROOT; };
AB5A82201A8DB9EB00AF539F /* m_random.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = m_random.c; path = ../src/m_random.c; sourceTree = SOURCE_ROOT; };
AB5A82211A8DB9EB00AF539F /* m_random.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = m_random.h; path = ../src/m_random.h; sourceTree = SOURCE_ROOT; };
AB5A822A1A8DB9EB00AF539F /* mmus2mid.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = mmus2mid.c; path = ../src/mmus2mid.c; sourceTree = SOURCE_ROOT; };
AB5A822B1A8DB9EB00AF539F /* mmus2mid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mmus2mid.h; path = ../src/mmus2mid.h; sourceTree = SOURCE_ROOT; };
AB5A822C1A8DB9EB00AF539F /* p_ceilng.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = p_ceilng.c; path = ../src/p_ceilng.c; sourceTree = SOURCE_ROOT; };
AB5A822D1A8DB9EB00AF539F /* p_doors.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = p_doors.c; path = ../src/p_doors.c; sourceTree = SOURCE_ROOT; };
AB5A822E1A8DB9EB00AF539F /* p_enemy.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = p_enemy.c; path = ../src/p_enemy.c; sourceTree = SOURCE_ROOT; };
AB5A822F1A8DB9EB00AF539F /* p_fix.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = p_fix.c; path = ../src/p_fix.c; sourceTree = SOURCE_ROOT; };
AB5A82301A8DB9EB00AF539F /* p_fix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = p_fix.h; path = ../src/p_fix.h; sourceTree = SOURCE_ROOT; };
AB5A82311A8DB9EB00AF539F /* p_floor.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = p_floor.c; path = ../src/p_floor.c; sourceTree = SOURCE_ROOT; };
AB5A82321A8DB9EB00AF539F /* p_inter.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = p_inter.c; path = ../src/p_inter.c; sourceTree = SOURCE_ROOT; };
AB5A82331A8DB9EB00AF539F /* p_inter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = p_inter.h; path = ../src/p_inter.h; sourceTree = SOURCE_ROOT; };
AB5A82341A8DB9EB00AF539F /* p_lights.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = p_lights.c; path = ../src/p_lights.c; sourceTree = SOURCE_ROOT; };
AB5A82351A8DB9EB00AF539F /* p_local.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = p_local.h; path = ../src/p_local.h; sourceTree = SOURCE_ROOT; };
AB5A82361A8DB9EB00AF539F /* p_map.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = p_map.c; path = ../src/p_map.c; sourceTree = SOURCE_ROOT; };
AB5A82371A8DB9EB00AF539F /* p_maputl.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = p_maputl.c; path = ../src/p_maputl.c; sourceTree = SOURCE_ROOT; };
AB5A82381A8DB9EB00AF539F /* p_mobj.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = p_mobj.c; path = ../src/p_mobj.c; sourceTree = SOURCE_ROOT; };
AB5A82391A8DB9EB00AF539F /* p_mobj.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = p_mobj.h; path = ../src/p_mobj.h; sourceTree = SOURCE_ROOT; };
AB5A823A1A8DB9EB00AF539F /* p_plats.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = p_plats.c; path = ../src/p_plats.c; sourceTree = SOURCE_ROOT; };
AB5A823B1A8DB9EB00AF539F /* p_pspr.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = p_pspr.c; path = ../src/p_pspr.c; sourceTree = SOURCE_ROOT; };
AB5A823C1A8DB9EB00AF539F /* p_pspr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = p_pspr.h; path = ../src/p_pspr.h; sourceTree = SOURCE_ROOT; };
AB5A823D1A8DB9EB00AF539F /* p_saveg.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = p_saveg.c; path = ../src/p_saveg.c; sourceTree = SOURCE_ROOT; };
AB5A823E1A8DB9EB00AF539F /* p_saveg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = p_saveg.h; path = ../src/p_saveg.h; sourceTree = SOURCE_ROOT; };
AB5A823F1A8DB9EB00AF539F /* p_setup.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = p_setup.c; path = ../src/p_setup.c; sourceTree = SOURCE_ROOT; };
AB5A82401A8DB9EB00AF539F /* p_setup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = p_setup.h; path = ../src/p_setup.h; sourceTree = SOURCE_ROOT; };
AB5A82411A8DB9EB00AF539F /* p_sight.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = p_sight.c; path = ../src/p_sight.c; sourceTree = SOURCE_ROOT; };
AB5A82421A8DB9EB00AF539F /* p_spec.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = p_spec.c; path = ../src/p_spec.c; sourceTree = SOURCE_ROOT; };
AB5A82431A8DB9EB00AF539F /* p_spec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = p_spec.h; path = ../src/p_spec.h; sourceTree = SOURCE_ROOT; };
AB5A82441A8DB9EB00AF539F /* p_switch.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = p_switch.c; path = ../src/p_switch.c; sourceTree = SOURCE_ROOT; };
AB5A82451A8DB9EB00AF539F /* p_telept.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = p_telept.c; path = ../src/p_telept.c; sourceTree = SOURCE_ROOT; };
AB5A82461A8DB9EB00AF539F /* p_tick.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = p_tick.c; path = ../src/p_tick.c; sourceTree = SOURCE_ROOT; };
AB5A82471A8DB9EB00AF539F /* p_tick.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = p_tick.h; path = ../src/p_tick.h; sourceTree = SOURCE_ROOT; };
AB5A82481A8DB9EB00AF539F /* p_user.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = p_user.c; path = ../src/p_user.c; sourceTree = SOURCE_ROOT; };
AB5A82491A8DB9EB00AF539F /* r_bsp.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = r_bsp.c; path = ../src/r_bsp.c; sourceTree = SOURCE_ROOT; };
AB5A824A1A8DB9EB00AF539F /* r_bsp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = r_bsp.h; path = ../src/r_bsp.h; sourceTree = SOURCE_ROOT; };
AB5A824B1A8DB9EB00AF539F /* r_data.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = r_data.c; path = ../src/r_data.c; sourceTree = SOURCE_ROOT; };
AB5A824C1A8DB9EB00AF539F /* r_data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = r_data.h; path = ../src/r_data.h; sourceTree = SOURCE_ROOT; };
AB5A824D1A8DB9EB00AF539F /* r_defs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = r_defs.h; path = ../src/r_defs.h; sourceTree = SOURCE_ROOT; };
AB5A824E1A8DB9EB00AF539F /* r_draw.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = r_draw.c; path = ../src/r_draw.c; sourceTree = SOURCE_ROOT; };
AB5A824F1A8DB9EB00AF539F /* r_draw.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = r_draw.h; path = ../src/r_draw.h; sourceTree = SOURCE_ROOT; };
AB5A82501A8DB9EB00AF539F /* r_local.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = r_local.h; path = ../src/r_local.h; sourceTree = SOURCE_ROOT; };
AB5A82511A8DB9EB00AF539F /* r_main.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = r_main.c; path = ../src/r_main.c; sourceTree = SOURCE_ROOT; };
AB5A82521A8DB9EB00AF539F /* r_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = r_main.h; path = ../src/r_main.h; sourceTree = SOURCE_ROOT; };
AB5A82531A8DB9EB00AF539F /* r_plane.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = r_plane.c; path = ../src/r_plane.c; sourceTree = SOURCE_ROOT; };
AB5A82541A8DB9EB00AF539F /* r_plane.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = r_plane.h; path = ../src/r_plane.h; sourceTree = SOURCE_ROOT; };
AB5A82551A8DB9EB00AF539F /* r_segs.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = r_segs.c; path = ../src/r_segs.c; sourceTree = SOURCE_ROOT; };
AB5A82561A8DB9EB00AF539F /* r_segs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = r_segs.h; path = ../src/r_segs.h; sourceTree = SOURCE_ROOT; };
AB5A82571A8DB9EB00AF539F /* r_sky.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = r_sky.c; path = ../src/r_sky.c; sourceTree = SOURCE_ROOT; };
AB5A82581A8DB9EB00AF539F /* r_sky.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = r_sky.h; path = ../src/r_sky.h; sourceTree = SOURCE_ROOT; };
AB5A82591A8DB9EB00AF539F /* r_state.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = r_state.h; path = ../src/r_state.h; sourceTree = SOURCE_ROOT; };
AB5A825A1A8DB9EB00AF539F /* r_things.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = r_things.c; path = ../src/r_things.c; sourceTree = SOURCE_ROOT; };
AB5A825B1A8DB9EB00AF539F /* r_things.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = r_things.h; path = ../src/r_things.h; sourceTree = SOURCE_ROOT; };
AB5A825C1A8DB9EB00AF539F /* s_sound.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = s_sound.c; path = ../src/s_sound.c; sourceTree = SOURCE_ROOT; };
AB5A825D1A8DB9EB00AF539F /* s_sound.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = s_sound.h; path = ../src/s_sound.h; sourceTree = SOURCE_ROOT; };
AB5A825E1A8DB9EB00AF539F /* sounds.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = sounds.c; path = ../src/sounds.c; sourceTree = SOURCE_ROOT; };
AB5A825F1A8DB9EB00AF539F /* sounds.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sounds.h; path = ../src/sounds.h; sourceTree = SOURCE_ROOT; };
AB5A82601A8DB9EB00AF539F /* st_lib.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = st_lib.c; path = ../src/st_lib.c; sourceTree = SOURCE_ROOT; };
AB5A82611A8DB9EB00AF539F /* st_lib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = st_lib.h; path = ../src/st_lib.h; sourceTree = SOURCE_ROOT; };
AB5A82621A8DB9EB00AF539F /* st_stuff.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = st_stuff.c; path = ../src/st_stuff.c; sourceTree = SOURCE_ROOT; };
AB5A82631A8DB9EB00AF539F /* st_stuff.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = st_stuff.h; path = ../src/st_stuff.h; sourceTree = SOURCE_ROOT; };
AB5A82651A8DB9EB00AF539F /* tables.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tables.h; path = ../src/tables.h; sourceTree = SOURCE_ROOT; };
AB5A82661A8DB9EB00AF539F /* v_data.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = v_data.c; path = ../src/v_data.c; sourceTree = SOURCE_ROOT; };
AB5A82671A8DB9EB00AF539F /* v_data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = v_data.h; path = ../src/v_data.h; sourceTree = SOURCE_ROOT; };
AB5A82681A8DB9EB00AF539F /* v_video.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = v_video.c; path = ../src/v_video.c; sourceTree = SOURCE_ROOT; };
AB5A82691A8DB9EB00AF539F /* v_video.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = v_video.h; path = ../src/v_video.h; sourceTree = SOURCE_ROOT; };
AB5A826A1A8DB9EB00AF539F /* version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = version.h; path = ../src/version.h; sourceTree = SOURCE_ROOT; };
AB5A826E1A8DB9EB00AF539F /* w_file.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = w_file.c; path = ../src/w_file.c; sourceTree = SOURCE_ROOT; };
AB5A826F1A8DB9EB00AF539F /* w_file.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = w_file.h; path = ../src/w_file.h; sourceTree = SOURCE_ROOT; };
AB5A82701A8DB9EB00AF539F /* w_merge.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = w_merge.c; path = ../src/w_merge.c; sourceTree = SOURCE_ROOT; };
AB5A82711A8DB9EB00AF539F /* w_merge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = w_merge.h; path = ../src/w_merge.h; sourceTree = SOURCE_ROOT; };
AB5A82721A8DB9EB00AF539F /* w_wad.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = w_wad.c; path = ../src/w_wad.c; sourceTree = SOURCE_ROOT; };
AB5A82731A8DB9EB00AF539F /* w_wad.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = w_wad.h; path = ../src/w_wad.h; sourceTree = SOURCE_ROOT; };
AB5A82741A8DB9EB00AF539F /* wi_stuff.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = wi_stuff.c; path = ../src/wi_stuff.c; sourceTree = SOURCE_ROOT; };
AB5A82751A8DB9EB00AF539F /* wi_stuff.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = wi_stuff.h; path = ../src/wi_stuff.h; sourceTree = SOURCE_ROOT; };
AB5A82771A8DB9EB00AF539F /* z_zone.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; name = z_zone.c; path = ../src/z_zone.c; sourceTree = SOURCE_ROOT; };
AB5A82781A8DB9EB00AF539F /* z_zone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = z_zone.h; path = ../src/z_zone.h; sourceTree = SOURCE_ROOT; };
F3142B151F97B1A100CCB7FD /* doomretro.iconset */ = {isa = PBXFileReference; lastKnownFileType = folder.iconset; name = doomretro.iconset; path = ../res/doomretro.iconset; sourceTree = "<group>"; };
F31526701D16F69100824B66 /* doomretro.wad */ = {isa = PBXFileReference; lastKnownFileType = file; name = doomretro.wad; path = ../res/doomretro.wad; sourceTree = "<group>"; };
F3C1ED631CF5028600C3E94F /* SDL2_image.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = SDL2_image.framework; sourceTree = "<group>"; };
F3C1ED661CF508B500C3E94F /* m_config.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = m_config.c; path = ../../src/m_config.c; sourceTree = "<group>"; };
F3C1ED671CF508B500C3E94F /* m_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = m_config.h; path = ../../src/m_config.h; sourceTree = "<group>"; };
F3C1ED681CF508B500C3E94F /* r_patch.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = r_patch.c; path = ../../src/r_patch.c; sourceTree = "<group>"; };
F3C1ED691CF508B500C3E94F /* r_patch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = r_patch.h; path = ../../src/r_patch.h; sourceTree = "<group>"; };
F3CA36061F93C074009DD997 /* c_autocomplete.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = c_autocomplete.c; path = ../../src/c_autocomplete.c; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
AB5A80BF1A8DABE100AF539F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
F3C1ED641CF5028600C3E94F /* SDL2_image.framework in Frameworks */,
AB5A81D31A8DAEB600AF539F /* Cocoa.framework in Frameworks */,
9F385F291C28ADAF00BD4F2B /* SDL2.framework in Frameworks */,
9F385F2B1C28ADBC00BD4F2B /* SDL2_mixer.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
9F385F2F1C29BFA400BD4F2B /* Frameworks */ = {
isa = PBXGroup;
children = (
F3C1ED631CF5028600C3E94F /* SDL2_image.framework */,
9F385F2A1C28ADBC00BD4F2B /* SDL2_mixer.framework */,
9F385F281C28ADAF00BD4F2B /* SDL2.framework */,
AB5A81D21A8DAEB600AF539F /* Cocoa.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
9F385F301C29BFAF00BD4F2B /* Resources */ = {
isa = PBXGroup;
children = (
F31526701D16F69100824B66 /* doomretro.wad */,
8A6AB8161B49BE8100E0666A /* doomretro.icns */,
AB5A80C61A8DABE100AF539F /* Info.plist */,
);
name = Resources;
sourceTree = "<group>";
};
AB5A80B91A8DABE100AF539F = {
isa = PBXGroup;
children = (
F3142B151F97B1A100CCB7FD /* doomretro.iconset */,
9F385F2F1C29BFA400BD4F2B /* Frameworks */,
9F385F301C29BFAF00BD4F2B /* Resources */,
AB5A80C41A8DABE100AF539F /* doomretroapp */,
AB5A80C31A8DABE100AF539F /* Products */,
);
sourceTree = "<group>";
usesTabs = 0;
};
AB5A80C31A8DABE100AF539F /* Products */ = {
isa = PBXGroup;
children = (
AB5A80C21A8DABE100AF539F /* doomretroapp.app */,
);
name = Products;
sourceTree = "<group>";
};
AB5A80C41A8DABE100AF539F /* doomretroapp */ = {
isa = PBXGroup;
children = (
AB5A80E81A8DAD0100AF539F /* doomretro */,
2AF8C4AB274C3EB2006301DC /* Images.xcassets */,
);
path = doomretroapp;
sourceTree = SOURCE_ROOT;
};
AB5A80E81A8DAD0100AF539F /* doomretro */ = {
isa = PBXGroup;
children = (
8AF2AAB620E7665C005C4E4C /* info.c */,
8AF2AAB120E7665B005C4E4C /* info.h */,
8AF2AAB520E7665B005C4E4C /* sprites.c */,
8AF2AAB320E7665B005C4E4C /* sprites.h */,
F3CA36061F93C074009DD997 /* c_autocomplete.c */,
F3C1ED661CF508B500C3E94F /* m_config.c */,
F3C1ED671CF508B500C3E94F /* m_config.h */,
F3C1ED681CF508B500C3E94F /* r_patch.c */,
F3C1ED691CF508B500C3E94F /* r_patch.h */,
9F385F2C1C28B0D100BD4F2B /* sc_man.c */,
9F385F2D1C28B0D100BD4F2B /* sc_man.h */,
AB5A81DA1A8DB9EB00AF539F /* am_map.c */,
AB5A81DB1A8DB9EB00AF539F /* am_map.h */,
AB5A81DC1A8DB9EB00AF539F /* c_cmds.c */,
AB5A81DD1A8DB9EB00AF539F /* c_cmds.h */,
AB5A81DE1A8DB9EB00AF539F /* c_console.c */,
AB5A81DF1A8DB9EB00AF539F /* c_console.h */,
AB5A81E01A8DB9EB00AF539F /* d_deh.c */,
AB5A81E11A8DB9EB00AF539F /* d_deh.h */,
AB5A81E21A8DB9EB00AF539F /* d_englsh.h */,
AB5A81E31A8DB9EB00AF539F /* d_event.h */,
AB5A81E41A8DB9EB00AF539F /* d_items.c */,
AB5A81E51A8DB9EB00AF539F /* d_items.h */,
AB5A81E61A8DB9EB00AF539F /* d_iwad.c */,
AB5A81E71A8DB9EB00AF539F /* d_iwad.h */,
8A97F56A1B5BD909009FA1D9 /* d_loop.c */,
8A97F56B1B5BD909009FA1D9 /* d_loop.h */,
AB5A81E81A8DB9EB00AF539F /* d_main.c */,
AB5A81E91A8DB9EB00AF539F /* d_main.h */,
AB5A81EC1A8DB9EB00AF539F /* d_player.h */,
AB5A81ED1A8DB9EB00AF539F /* d_think.h */,
AB5A81EE1A8DB9EB00AF539F /* d_ticcmd.h */,
AB5A81EF1A8DB9EB00AF539F /* doomdata.h */,
AB5A81F01A8DB9EB00AF539F /* doomdef.h */,
AB5A81F11A8DB9EB00AF539F /* doomkeys.h */,
AB5A82031A8DB9EB00AF539F /* doomretro.c */,
AB5A81F21A8DB9EB00AF539F /* doomstat.c */,
AB5A81F31A8DB9EB00AF539F /* doomstat.h */,
AB5A81F41A8DB9EB00AF539F /* doomtype.h */,
AB5A81F51A8DB9EB00AF539F /* dstrings.c */,
AB5A81F61A8DB9EB00AF539F /* dstrings.h */,
AB5A81F71A8DB9EB00AF539F /* f_finale.c */,
AB5A81F81A8DB9EB00AF539F /* f_finale.h */,
AB5A81F91A8DB9EB00AF539F /* f_wipe.c */,
AB5A81FA1A8DB9EB00AF539F /* f_wipe.h */,
AB5A81FB1A8DB9EB00AF539F /* g_game.c */,
AB5A81FC1A8DB9EB00AF539F /* g_game.h */,
AB5A81FD1A8DB9EB00AF539F /* hu_lib.c */,
AB5A81FE1A8DB9EB00AF539F /* hu_lib.h */,
AB5A81FF1A8DB9EB00AF539F /* hu_stuff.c */,
AB5A82001A8DB9EB00AF539F /* hu_stuff.h */,
AB5A820B1A8DB9EB00AF539F /* i_colors.c */,
AB5A820C1A8DB9EB00AF539F /* i_colors.h */,
AB5A82011A8DB9EB00AF539F /* i_gamepad.c */,
AB5A82021A8DB9EB00AF539F /* i_gamepad.h */,
AB5A82041A8DB9EB00AF539F /* i_music.c */,
AB5A82051A8DB9EB00AF539F /* i_sound.c */,
AB5A82061A8DB9EB00AF539F /* i_swap.h */,
AB5A82071A8DB9EB00AF539F /* i_system.c */,
AB5A82081A8DB9EB00AF539F /* i_system.h */,
AB5A82091A8DB9EB00AF539F /* i_timer.c */,
AB5A820A1A8DB9EB00AF539F /* i_timer.h */,
AB5A820D1A8DB9EB00AF539F /* i_video.c */,
AB5A820E1A8DB9EB00AF539F /* i_video.h */,
AB5A82121A8DB9EB00AF539F /* m_argv.c */,
AB5A82131A8DB9EB00AF539F /* m_argv.h */,
AB5A82141A8DB9EB00AF539F /* m_bbox.c */,
AB5A82151A8DB9EB00AF539F /* m_bbox.h */,
AB5A82161A8DB9EB00AF539F /* m_cheat.c */,
AB5A82171A8DB9EB00AF539F /* m_cheat.h */,
AB5A82181A8DB9EB00AF539F /* m_controls.c */,
AB5A82191A8DB9EB00AF539F /* m_controls.h */,
AB5A821B1A8DB9EB00AF539F /* m_fixed.h */,
AB5A821C1A8DB9EB00AF539F /* m_menu.c */,
AB5A821D1A8DB9EB00AF539F /* m_menu.h */,
AB5A821E1A8DB9EB00AF539F /* m_misc.c */,
AB5A821F1A8DB9EB00AF539F /* m_misc.h */,
AB5A82201A8DB9EB00AF539F /* m_random.c */,
AB5A82211A8DB9EB00AF539F /* m_random.h */,
AB5A822A1A8DB9EB00AF539F /* mmus2mid.c */,
AB5A822B1A8DB9EB00AF539F /* mmus2mid.h */,
AB5A822C1A8DB9EB00AF539F /* p_ceilng.c */,
AB5A822D1A8DB9EB00AF539F /* p_doors.c */,
AB5A822E1A8DB9EB00AF539F /* p_enemy.c */,
AB5A822F1A8DB9EB00AF539F /* p_fix.c */,
AB5A82301A8DB9EB00AF539F /* p_fix.h */,
AB5A82311A8DB9EB00AF539F /* p_floor.c */,
8AD637321B3338E400605ECA /* p_genlin.c */,
AB5A82321A8DB9EB00AF539F /* p_inter.c */,
AB5A82331A8DB9EB00AF539F /* p_inter.h */,
AB5A82341A8DB9EB00AF539F /* p_lights.c */,
AB5A82351A8DB9EB00AF539F /* p_local.h */,
AB5A82361A8DB9EB00AF539F /* p_map.c */,
AB5A82371A8DB9EB00AF539F /* p_maputl.c */,
AB5A82381A8DB9EB00AF539F /* p_mobj.c */,
AB5A82391A8DB9EB00AF539F /* p_mobj.h */,
AB5A823A1A8DB9EB00AF539F /* p_plats.c */,
AB5A823B1A8DB9EB00AF539F /* p_pspr.c */,
AB5A823C1A8DB9EB00AF539F /* p_pspr.h */,
AB5A823D1A8DB9EB00AF539F /* p_saveg.c */,
AB5A823E1A8DB9EB00AF539F /* p_saveg.h */,
AB5A823F1A8DB9EB00AF539F /* p_setup.c */,
AB5A82401A8DB9EB00AF539F /* p_setup.h */,
AB5A82411A8DB9EB00AF539F /* p_sight.c */,
AB5A82421A8DB9EB00AF539F /* p_spec.c */,
AB5A82431A8DB9EB00AF539F /* p_spec.h */,
AB5A82441A8DB9EB00AF539F /* p_switch.c */,
AB5A82451A8DB9EB00AF539F /* p_telept.c */,
AB5A82461A8DB9EB00AF539F /* p_tick.c */,
AB5A82471A8DB9EB00AF539F /* p_tick.h */,
AB5A82481A8DB9EB00AF539F /* p_user.c */,
AB5A82491A8DB9EB00AF539F /* r_bsp.c */,
AB5A824A1A8DB9EB00AF539F /* r_bsp.h */,
AB5A824B1A8DB9EB00AF539F /* r_data.c */,
AB5A824C1A8DB9EB00AF539F /* r_data.h */,
AB5A824D1A8DB9EB00AF539F /* r_defs.h */,
AB5A824E1A8DB9EB00AF539F /* r_draw.c */,
AB5A824F1A8DB9EB00AF539F /* r_draw.h */,
AB5A82501A8DB9EB00AF539F /* r_local.h */,
AB5A82511A8DB9EB00AF539F /* r_main.c */,
AB5A82521A8DB9EB00AF539F /* r_main.h */,
AB5A82531A8DB9EB00AF539F /* r_plane.c */,
AB5A82541A8DB9EB00AF539F /* r_plane.h */,
AB5A82551A8DB9EB00AF539F /* r_segs.c */,
AB5A82561A8DB9EB00AF539F /* r_segs.h */,
AB5A82571A8DB9EB00AF539F /* r_sky.c */,
AB5A82581A8DB9EB00AF539F /* r_sky.h */,
AB5A82591A8DB9EB00AF539F /* r_state.h */,
AB5A825A1A8DB9EB00AF539F /* r_things.c */,
AB5A825B1A8DB9EB00AF539F /* r_things.h */,
AB5A825C1A8DB9EB00AF539F /* s_sound.c */,
AB5A825D1A8DB9EB00AF539F /* s_sound.h */,
AB5A825E1A8DB9EB00AF539F /* sounds.c */,
AB5A825F1A8DB9EB00AF539F /* sounds.h */,
AB5A82601A8DB9EB00AF539F /* st_lib.c */,
AB5A82611A8DB9EB00AF539F /* st_lib.h */,
AB5A82621A8DB9EB00AF539F /* st_stuff.c */,
AB5A82631A8DB9EB00AF539F /* st_stuff.h */,
AB5A820F1A8DB9EB00AF539F /* states.c */,
AB5A82101A8DB9EB00AF539F /* states.h */,
AB5A82651A8DB9EB00AF539F /* tables.h */,
AB5A82661A8DB9EB00AF539F /* v_data.c */,
AB5A82671A8DB9EB00AF539F /* v_data.h */,
AB5A82681A8DB9EB00AF539F /* v_video.c */,
AB5A82691A8DB9EB00AF539F /* v_video.h */,
AB5A826A1A8DB9EB00AF539F /* version.h */,
AB5A826E1A8DB9EB00AF539F /* w_file.c */,
AB5A826F1A8DB9EB00AF539F /* w_file.h */,
AB5A82701A8DB9EB00AF539F /* w_merge.c */,
AB5A82711A8DB9EB00AF539F /* w_merge.h */,
AB5A82721A8DB9EB00AF539F /* w_wad.c */,
AB5A82731A8DB9EB00AF539F /* w_wad.h */,
AB5A82741A8DB9EB00AF539F /* wi_stuff.c */,
AB5A82751A8DB9EB00AF539F /* wi_stuff.h */,
AB5A82771A8DB9EB00AF539F /* z_zone.c */,
AB5A82781A8DB9EB00AF539F /* z_zone.h */,
);
name = doomretro;
path = doomretroapp;
sourceTree = SOURCE_ROOT;
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
AB5A80C11A8DABE100AF539F /* doomretroapp */ = {
isa = PBXNativeTarget;
buildConfigurationList = AB5A80E21A8DABE100AF539F /* Build configuration list for PBXNativeTarget "doomretroapp" */;
buildPhases = (
AB5A80BE1A8DABE100AF539F /* Sources */,
AB5A80BF1A8DABE100AF539F /* Frameworks */,
AB5A80C01A8DABE100AF539F /* Resources */,
9F385F311C29C02A00BD4F2B /* CopyFiles */,
);
buildRules = (
);
dependencies = (
);
name = doomretroapp;
productName = doomretroapp;
productReference = AB5A80C21A8DABE100AF539F /* doomretroapp.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
AB5A80BA1A8DABE100AF539F /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 1310;
ORGANIZATIONNAME = doomretro;
TargetAttributes = {
AB5A80C11A8DABE100AF539F = {
CreatedOnToolsVersion = 6.1.1;
};
};
};
buildConfigurationList = AB5A80BD1A8DABE100AF539F /* Build configuration list for PBXProject "doomretroapp" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = AB5A80B91A8DABE100AF539F;
productRefGroup = AB5A80C31A8DABE100AF539F /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
AB5A80C11A8DABE100AF539F /* doomretroapp */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
AB5A80C01A8DABE100AF539F /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
2AF8C4AC274C3EB2006301DC /* Images.xcassets in Resources */,
F31526711D16F69100824B66 /* doomretro.wad in Resources */,
F3142B161F97B1A200CCB7FD /* doomretro.iconset in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
AB5A80BE1A8DABE100AF539F /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
8AF2AAB820E76665005C4E4C /* info.c in Sources */,
8AF2AABA20E76671005C4E4C /* p_user.c in Sources */,
8AF2AAB920E76667005C4E4C /* sprites.c in Sources */,
F3C1ED6C1CF508FC00C3E94F /* m_controls.c in Sources */,
F3C1ED6B1CF508B500C3E94F /* r_patch.c in Sources */,
F3C1ED6A1CF508B500C3E94F /* m_config.c in Sources */,
AB5A82B61A8DB9EB00AF539F /* r_draw.c in Sources */,
AB5A82AA1A8DB9EB00AF539F /* p_plats.c in Sources */,
AB5A82C71A8DB9EB00AF539F /* w_wad.c in Sources */,
AB5A82931A8DB9EB00AF539F /* m_cheat.c in Sources */,
AB5A82BE1A8DB9EB00AF539F /* st_lib.c in Sources */,
AB5A82921A8DB9EB00AF539F /* m_bbox.c in Sources */,
AB5A827C1A8DB9EB00AF539F /* d_deh.c in Sources */,
AB5A82971A8DB9EB00AF539F /* m_misc.c in Sources */,
AB5A82C51A8DB9EB00AF539F /* w_file.c in Sources */,
AB5A82B81A8DB9EB00AF539F /* r_plane.c in Sources */,
AB5A827A1A8DB9EB00AF539F /* c_cmds.c in Sources */,
AB5A82C11A8DB9EB00AF539F /* v_video.c in Sources */,
AB5A82A91A8DB9EB00AF539F /* p_mobj.c in Sources */,
AB5A82851A8DB9EB00AF539F /* g_game.c in Sources */,
AB5A82881A8DB9EB00AF539F /* i_gamepad.c in Sources */,
AB5A82981A8DB9EB00AF539F /* m_random.c in Sources */,
AB5A82CA1A8DB9EB00AF539F /* z_zone.c in Sources */,
AB5A82B71A8DB9EB00AF539F /* r_main.c in Sources */,
AB5A82B01A8DB9EB00AF539F /* p_switch.c in Sources */,
AB5A82A51A8DB9EB00AF539F /* p_inter.c in Sources */,
AB5A82A21A8DB9EB00AF539F /* p_enemy.c in Sources */,
AB5A829F1A8DB9EB00AF539F /* mmus2mid.c in Sources */,
AB5A828C1A8DB9EB00AF539F /* i_system.c in Sources */,
AB5A82AC1A8DB9EB00AF539F /* p_saveg.c in Sources */,
AB5A82A31A8DB9EB00AF539F /* p_fix.c in Sources */,
AB5A82C61A8DB9EB00AF539F /* w_merge.c in Sources */,
AB5A82B41A8DB9EB00AF539F /* r_bsp.c in Sources */,
AB5A82831A8DB9EB00AF539F /* f_finale.c in Sources */,
AB5A82821A8DB9EB00AF539F /* dstrings.c in Sources */,
AB5A82A41A8DB9EB00AF539F /* p_floor.c in Sources */,
AB5A828B1A8DB9EB00AF539F /* i_sound.c in Sources */,
AB5A82B21A8DB9EB00AF539F /* p_tick.c in Sources */,
AB5A82A71A8DB9EB00AF539F /* p_map.c in Sources */,
AB5A82BF1A8DB9EB00AF539F /* st_stuff.c in Sources */,
AB5A827D1A8DB9EB00AF539F /* d_items.c in Sources */,
AB5A827F1A8DB9EB00AF539F /* d_main.c in Sources */,
9F385F2E1C28B0D100BD4F2B /* sc_man.c in Sources */,
AB5A82A61A8DB9EB00AF539F /* p_lights.c in Sources */,
AB5A82BA1A8DB9EB00AF539F /* r_sky.c in Sources */,
AB5A82901A8DB9EB00AF539F /* states.c in Sources */,
8A97F56C1B5BD909009FA1D9 /* d_loop.c in Sources */,
AB5A82AD1A8DB9EB00AF539F /* p_setup.c in Sources */,
AB5A82961A8DB9EB00AF539F /* m_menu.c in Sources */,
AB5A82B51A8DB9EB00AF539F /* r_data.c in Sources */,
AB5A82891A8DB9EB00AF539F /* doomretro.c in Sources */,
AB5A82C81A8DB9EB00AF539F /* wi_stuff.c in Sources */,
F3CA36071F93C075009DD997 /* c_autocomplete.c in Sources */,
AB5A82BC1A8DB9EB00AF539F /* s_sound.c in Sources */,
AB5A828F1A8DB9EB00AF539F /* i_video.c in Sources */,
AB5A82841A8DB9EB00AF539F /* f_wipe.c in Sources */,
AB5A827B1A8DB9EB00AF539F /* c_console.c in Sources */,
AB5A828D1A8DB9EB00AF539F /* i_timer.c in Sources */,
AB5A82B91A8DB9EB00AF539F /* r_segs.c in Sources */,
AB5A82911A8DB9EB00AF539F /* m_argv.c in Sources */,
AB5A82861A8DB9EB00AF539F /* hu_lib.c in Sources */,
AB5A82871A8DB9EB00AF539F /* hu_stuff.c in Sources */,
AB5A82AE1A8DB9EB00AF539F /* p_sight.c in Sources */,
AB5A82791A8DB9EB00AF539F /* am_map.c in Sources */,
AB5A82A81A8DB9EB00AF539F /* p_maputl.c in Sources */,
AB5A82A11A8DB9EB00AF539F /* p_doors.c in Sources */,
AB5A827E1A8DB9EB00AF539F /* d_iwad.c in Sources */,
AB5A82A01A8DB9EB00AF539F /* p_ceilng.c in Sources */,
AB5A82BB1A8DB9EB00AF539F /* r_things.c in Sources */,
AB5A82811A8DB9EB00AF539F /* doomstat.c in Sources */,
AB5A82AB1A8DB9EB00AF539F /* p_pspr.c in Sources */,
AB5A828E1A8DB9EB00AF539F /* i_colors.c in Sources */,
AB5A828A1A8DB9EB00AF539F /* i_music.c in Sources */,
AB5A82B11A8DB9EB00AF539F /* p_telept.c in Sources */,
AB5A82C01A8DB9EB00AF539F /* v_data.c in Sources */,
AB5A82AF1A8DB9EB00AF539F /* p_spec.c in Sources */,
AB5A82BD1A8DB9EB00AF539F /* sounds.c in Sources */,
8AD637331B33390400605ECA /* p_genlin.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin XCBuildConfiguration section */
AB5A80E01A8DABE100AF539F /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "-";
COPY_PHASE_STRIP = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
GCC_WARN_64_TO_32_BIT_CONVERSION = NO;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = "";
MACOSX_DEPLOYMENT_TARGET = 12.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = macosx;
};
name = Debug;
};
AB5A80E11A8DABE100AF539F /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "-";
COPY_PHASE_STRIP = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = NO;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = "";
MACOSX_DEPLOYMENT_TARGET = 12.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = macosx;
};
name = Release;
};
AB5A80E31A8DABE100AF539F /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = "$(ARCHS_STANDARD)";
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = NO;
CODE_SIGN_IDENTITY = "-";
COMBINE_HIDPI_IMAGES = YES;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)",
);
GCC_PREPROCESSOR_DEFINITIONS = SDL20;
HEADER_SEARCH_PATHS = (
"$(PROJECT_DIR)/SDL2.framework/Headers",
"$(PROJECT_DIR)/SDL2_mixer.framework/Headers",
"$(PROJECT_DIR)/SDL2_image.framework/Headers",
);
INFOPLIST_FILE = doomretroapp/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
ONLY_ACTIVE_ARCH = YES;
PRODUCT_BUNDLE_IDENTIFIER = "doom.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Debug;
};
AB5A80E41A8DABE100AF539F /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = "$(ARCHS_STANDARD)";
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = NO;
CODE_SIGN_IDENTITY = "-";
COMBINE_HIDPI_IMAGES = YES;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)",
);
GCC_PREPROCESSOR_DEFINITIONS = SDL20;
HEADER_SEARCH_PATHS = (
"$(PROJECT_DIR)/SDL2.framework/Headers",
"$(PROJECT_DIR)/SDL2_mixer.framework/Headers",
"$(PROJECT_DIR)/SDL2_image.framework/Headers",
);
INFOPLIST_FILE = doomretroapp/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
ONLY_ACTIVE_ARCH = YES;
PRODUCT_BUNDLE_IDENTIFIER = "doom.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
AB5A80BD1A8DABE100AF539F /* Build configuration list for PBXProject "doomretroapp" */ = {
isa = XCConfigurationList;
buildConfigurations = (
AB5A80E01A8DABE100AF539F /* Debug */,
AB5A80E11A8DABE100AF539F /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
AB5A80E21A8DABE100AF539F /* Build configuration list for PBXNativeTarget "doomretroapp" */ = {
isa = XCConfigurationList;
buildConfigurations = (
AB5A80E31A8DABE100AF539F /* Debug */,
AB5A80E41A8DABE100AF539F /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = AB5A80BA1A8DABE100AF539F /* Project object */;
}