summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/Crawl.xcodeproj/project.pbxproj
blob: 709c5298fec0529f4e195ac1657af9c8a4715ae3 (plain) (blame)
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
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 44;
	objects = {

/* Begin PBXBuildFile section */
		4CEF158A0C128CA5002C7D7A /* xom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4CEF15890C128CA5002C7D7A /* xom.cc */; };
		6232EBE20DACA55C004F7E9C /* quiver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6232EBE00DACA55C004F7E9C /* quiver.cc */; };
		6232EBE30DACA55C004F7E9C /* quiver.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 6232EBE10DACA55C004F7E9C /* quiver.h */; };
		7B0EFD840BD12EEB00002671 /* lapi.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD4C0BD12EEB00002671 /* lapi.c */; };
		7B0EFD850BD12EEB00002671 /* lapi.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0EFD4D0BD12EEB00002671 /* lapi.h */; settings = {ATTRIBUTES = (); }; };
		7B0EFD860BD12EEB00002671 /* lauxlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD4E0BD12EEB00002671 /* lauxlib.c */; };
		7B0EFD870BD12EEB00002671 /* lauxlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0EFD4F0BD12EEB00002671 /* lauxlib.h */; settings = {ATTRIBUTES = (); }; };
		7B0EFD880BD12EEB00002671 /* lbaselib.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD500BD12EEB00002671 /* lbaselib.c */; };
		7B0EFD890BD12EEB00002671 /* lcode.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD510BD12EEB00002671 /* lcode.c */; };
		7B0EFD8A0BD12EEB00002671 /* lcode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0EFD520BD12EEB00002671 /* lcode.h */; settings = {ATTRIBUTES = (); }; };
		7B0EFD8B0BD12EEB00002671 /* ldblib.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD530BD12EEB00002671 /* ldblib.c */; };
		7B0EFD8C0BD12EEB00002671 /* ldebug.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD540BD12EEB00002671 /* ldebug.c */; };
		7B0EFD8D0BD12EEB00002671 /* ldebug.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0EFD550BD12EEB00002671 /* ldebug.h */; settings = {ATTRIBUTES = (); }; };
		7B0EFD8E0BD12EEB00002671 /* ldo.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD560BD12EEB00002671 /* ldo.c */; };
		7B0EFD8F0BD12EEB00002671 /* ldo.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0EFD570BD12EEB00002671 /* ldo.h */; settings = {ATTRIBUTES = (); }; };
		7B0EFD900BD12EEB00002671 /* ldump.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD580BD12EEB00002671 /* ldump.c */; };
		7B0EFD910BD12EEB00002671 /* lfunc.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD590BD12EEB00002671 /* lfunc.c */; };
		7B0EFD920BD12EEB00002671 /* lfunc.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0EFD5A0BD12EEB00002671 /* lfunc.h */; settings = {ATTRIBUTES = (); }; };
		7B0EFD930BD12EEB00002671 /* lgc.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD5B0BD12EEB00002671 /* lgc.c */; };
		7B0EFD940BD12EEB00002671 /* lgc.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0EFD5C0BD12EEB00002671 /* lgc.h */; settings = {ATTRIBUTES = (); }; };
		7B0EFD950BD12EEB00002671 /* linit.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD5D0BD12EEB00002671 /* linit.c */; };
		7B0EFD960BD12EEB00002671 /* liolib.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD5E0BD12EEB00002671 /* liolib.c */; };
		7B0EFD970BD12EEB00002671 /* llex.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD5F0BD12EEB00002671 /* llex.c */; };
		7B0EFD980BD12EEB00002671 /* llex.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0EFD600BD12EEB00002671 /* llex.h */; settings = {ATTRIBUTES = (); }; };
		7B0EFD990BD12EEB00002671 /* llimits.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0EFD610BD12EEB00002671 /* llimits.h */; settings = {ATTRIBUTES = (); }; };
		7B0EFD9A0BD12EEB00002671 /* lmathlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD620BD12EEB00002671 /* lmathlib.c */; };
		7B0EFD9B0BD12EEB00002671 /* lmem.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD630BD12EEB00002671 /* lmem.c */; };
		7B0EFD9C0BD12EEB00002671 /* lmem.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0EFD640BD12EEB00002671 /* lmem.h */; settings = {ATTRIBUTES = (); }; };
		7B0EFD9D0BD12EEB00002671 /* loadlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD650BD12EEB00002671 /* loadlib.c */; };
		7B0EFD9E0BD12EEB00002671 /* lobject.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD660BD12EEB00002671 /* lobject.c */; };
		7B0EFD9F0BD12EEB00002671 /* lobject.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0EFD670BD12EEB00002671 /* lobject.h */; settings = {ATTRIBUTES = (); }; };
		7B0EFDA00BD12EEB00002671 /* lopcodes.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD680BD12EEB00002671 /* lopcodes.c */; };
		7B0EFDA10BD12EEB00002671 /* lopcodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0EFD690BD12EEB00002671 /* lopcodes.h */; settings = {ATTRIBUTES = (); }; };
		7B0EFDA20BD12EEB00002671 /* loslib.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD6A0BD12EEB00002671 /* loslib.c */; };
		7B0EFDA30BD12EEB00002671 /* lparser.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD6B0BD12EEB00002671 /* lparser.c */; };
		7B0EFDA40BD12EEB00002671 /* lparser.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0EFD6C0BD12EEB00002671 /* lparser.h */; settings = {ATTRIBUTES = (); }; };
		7B0EFDA50BD12EEB00002671 /* lstate.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD6D0BD12EEB00002671 /* lstate.c */; };
		7B0EFDA60BD12EEB00002671 /* lstate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0EFD6E0BD12EEB00002671 /* lstate.h */; settings = {ATTRIBUTES = (); }; };
		7B0EFDA70BD12EEB00002671 /* lstring.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD6F0BD12EEB00002671 /* lstring.c */; };
		7B0EFDA80BD12EEB00002671 /* lstring.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0EFD700BD12EEB00002671 /* lstring.h */; settings = {ATTRIBUTES = (); }; };
		7B0EFDA90BD12EEB00002671 /* lstrlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD710BD12EEB00002671 /* lstrlib.c */; };
		7B0EFDAA0BD12EEB00002671 /* ltable.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD720BD12EEB00002671 /* ltable.c */; };
		7B0EFDAB0BD12EEB00002671 /* ltable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0EFD730BD12EEB00002671 /* ltable.h */; settings = {ATTRIBUTES = (); }; };
		7B0EFDAC0BD12EEB00002671 /* ltablib.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD740BD12EEB00002671 /* ltablib.c */; };
		7B0EFDAD0BD12EEB00002671 /* ltm.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD750BD12EEB00002671 /* ltm.c */; };
		7B0EFDAE0BD12EEB00002671 /* ltm.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0EFD760BD12EEB00002671 /* ltm.h */; settings = {ATTRIBUTES = (); }; };
		7B0EFDB00BD12EEB00002671 /* lua.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0EFD780BD12EEB00002671 /* lua.h */; settings = {ATTRIBUTES = (); }; };
		7B0EFDB20BD12EEB00002671 /* luaconf.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0EFD7A0BD12EEB00002671 /* luaconf.h */; settings = {ATTRIBUTES = (); }; };
		7B0EFDB30BD12EEB00002671 /* lualib.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0EFD7B0BD12EEB00002671 /* lualib.h */; settings = {ATTRIBUTES = (); }; };
		7B0EFDB40BD12EEB00002671 /* lundump.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD7C0BD12EEB00002671 /* lundump.c */; };
		7B0EFDB50BD12EEB00002671 /* lundump.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0EFD7D0BD12EEB00002671 /* lundump.h */; settings = {ATTRIBUTES = (); }; };
		7B0EFDB60BD12EEB00002671 /* lvm.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD7E0BD12EEB00002671 /* lvm.c */; };
		7B0EFDB70BD12EEB00002671 /* lvm.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0EFD7F0BD12EEB00002671 /* lvm.h */; settings = {ATTRIBUTES = (); }; };
		7B0EFDB80BD12EEB00002671 /* lzio.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD800BD12EEB00002671 /* lzio.c */; };
		7B0EFDB90BD12EEB00002671 /* lzio.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0EFD810BD12EEB00002671 /* lzio.h */; settings = {ATTRIBUTES = (); }; };
		7B0EFDBB0BD12EEB00002671 /* print.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B0EFD830BD12EEB00002671 /* print.c */; };
		7B0EFDD80BD1374900002671 /* liblua.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B0EFD420BD12E9200002671 /* liblua.a */; };
		7B237E6C0A8EC9D000580F30 /* maps.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237DE50A8EC9D000580F30 /* maps.h */; };
		7B237E6D0A8EC9D000580F30 /* maps.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237DE60A8EC9D000580F30 /* maps.cc */; };
		7B237E6E0A8EC9D000580F30 /* mon-pick.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237DE70A8EC9D000580F30 /* mon-pick.h */; };
		7B237E6F0A8EC9D000580F30 /* mon-pick.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237DE80A8EC9D000580F30 /* mon-pick.cc */; };
		7B237E700A8EC9D000580F30 /* misc.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237DE90A8EC9D000580F30 /* misc.h */; };
		7B237E730A8EC9D000580F30 /* initfile.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237DEC0A8EC9D000580F30 /* initfile.h */; };
		7B237E740A8EC9D000580F30 /* overmap.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237DED0A8EC9D000580F30 /* overmap.h */; };
		7B237E750A8EC9D000580F30 /* overmap.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237DEE0A8EC9D000580F30 /* overmap.cc */; };
		7B237E760A8EC9D000580F30 /* output.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237DEF0A8EC9D000580F30 /* output.h */; };
		7B237E770A8EC9D000580F30 /* item_use.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237DF00A8EC9D000580F30 /* item_use.h */; };
		7B237E780A8EC9D000580F30 /* initfile.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237DF10A8EC9D000580F30 /* initfile.cc */; };
		7B237E790A8EC9D000580F30 /* hiscores.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237DF20A8EC9D000580F30 /* hiscores.h */; };
		7B237E7A0A8EC9D000580F30 /* hiscores.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237DF30A8EC9D000580F30 /* hiscores.cc */; };
		7B237E7B0A8EC9D000580F30 /* travel.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237DF40A8EC9D000580F30 /* travel.h */; };
		7B237E7C0A8EC9D000580F30 /* travel.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237DF50A8EC9D000580F30 /* travel.cc */; };
		7B237E7D0A8EC9D000580F30 /* lev-pand.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237DF60A8EC9D000580F30 /* lev-pand.h */; };
		7B237E7E0A8EC9D000580F30 /* lev-pand.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237DF70A8EC9D000580F30 /* lev-pand.cc */; };
		7B237E7F0A8EC9D000580F30 /* items.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237DF80A8EC9D000580F30 /* items.h */; };
		7B237E800A8EC9D000580F30 /* newgame.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237DF90A8EC9D000580F30 /* newgame.cc */; };
		7B237E810A8EC9D000580F30 /* mutation.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237DFA0A8EC9D000580F30 /* mutation.h */; };
		7B237E820A8EC9D000580F30 /* mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237DFB0A8EC9D000580F30 /* mutation.cc */; };
		7B237E830A8EC9D000580F30 /* misc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237DFC0A8EC9D000580F30 /* misc.cc */; };
		7B237E840A8EC9D000580F30 /* message.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237DFD0A8EC9D000580F30 /* message.h */; };
		7B237E850A8EC9D000580F30 /* mon-util.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237DFE0A8EC9D000580F30 /* mon-util.h */; };
		7B237E860A8EC9D000580F30 /* mon-util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237DFF0A8EC9D000580F30 /* mon-util.cc */; };
		7B237E870A8EC9D000580F30 /* it_use3.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E000A8EC9D000580F30 /* it_use3.h */; };
		7B237E880A8EC9D000580F30 /* it_use3.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E010A8EC9D000580F30 /* it_use3.cc */; };
		7B237E890A8EC9D000580F30 /* it_use2.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E020A8EC9D000580F30 /* it_use2.h */; };
		7B237E8A0A8EC9D000580F30 /* itemname.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E030A8EC9D000580F30 /* itemname.cc */; };
		7B237E8B0A8EC9D000580F30 /* command.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E040A8EC9D000580F30 /* command.cc */; };
		7B237E8C0A8EC9D000580F30 /* describe.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E050A8EC9D000580F30 /* describe.h */; };
		7B237E8D0A8EC9D000580F30 /* spl-util.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E060A8EC9D000580F30 /* spl-util.h */; };
		7B237E8E0A8EC9D000580F30 /* spl-util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E070A8EC9D000580F30 /* spl-util.cc */; };
		7B237E910A8EC9D000580F30 /* player.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E0A0A8EC9D000580F30 /* player.h */; };
		7B237E920A8EC9D000580F30 /* player.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E0B0A8EC9D000580F30 /* player.cc */; };
		7B237E930A8EC9D000580F30 /* effects.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E0C0A8EC9D000580F30 /* effects.h */; };
		7B237E940A8EC9D000580F30 /* abl-show.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E0D0A8EC9D000580F30 /* abl-show.cc */; };
		7B237E950A8EC9D000580F30 /* files.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E0E0A8EC9D000580F30 /* files.cc */; };
		7B237E960A8EC9D000580F30 /* directn.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E0F0A8EC9D000580F30 /* directn.cc */; };
		7B237E970A8EC9D000580F30 /* dungeon.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E100A8EC9D000580F30 /* dungeon.h */; };
		7B237E9A0A8EC9D000580F30 /* view.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E130A8EC9D000580F30 /* view.h */; };
		7B237E9B0A8EC9D000580F30 /* view.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E140A8EC9D000580F30 /* view.cc */; };
		7B237E9C0A8EC9D000580F30 /* spl-book.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E150A8EC9D000580F30 /* spl-book.cc */; };
		7B237E9D0A8EC9D000580F30 /* spells4.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E160A8EC9D000580F30 /* spells4.h */; };
		7B237E9E0A8EC9D000580F30 /* spells4.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E170A8EC9D000580F30 /* spells4.cc */; };
		7B237E9F0A8EC9D000580F30 /* spells3.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E180A8EC9D000580F30 /* spells3.h */; };
		7B237EA00A8EC9D000580F30 /* macro.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E190A8EC9D000580F30 /* macro.h */; };
		7B237EA10A8EC9D000580F30 /* debug.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E1A0A8EC9D000580F30 /* debug.h */; };
		7B237EA20A8EC9D000580F30 /* directn.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E1B0A8EC9D000580F30 /* directn.h */; };
		7B237EA30A8EC9D000580F30 /* decks.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E1C0A8EC9D000580F30 /* decks.h */; };
		7B237EA40A8EC9D000580F30 /* stuff.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E1D0A8EC9D000580F30 /* stuff.h */; };
		7B237EA50A8EC9D000580F30 /* stuff.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E1E0A8EC9D000580F30 /* stuff.cc */; };
		7B237EA60A8EC9D000580F30 /* stash.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E1F0A8EC9D000580F30 /* stash.h */; };
		7B237EA70A8EC9D000580F30 /* stash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E200A8EC9D000580F30 /* stash.cc */; };
		7B237EA80A8EC9D000580F30 /* transfor.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E210A8EC9D000580F30 /* transfor.h */; };
		7B237EA90A8EC9D000580F30 /* transfor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E220A8EC9D000580F30 /* transfor.cc */; };
		7B237EAA0A8EC9D000580F30 /* tags.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E230A8EC9D000580F30 /* tags.h */; };
		7B237EAB0A8EC9D000580F30 /* tags.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E240A8EC9D000580F30 /* tags.cc */; };
		7B237EAC0A8EC9D000580F30 /* libutil.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E250A8EC9D000580F30 /* libutil.h */; };
		7B237EAD0A8EC9D000580F30 /* item_use.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E260A8EC9D000580F30 /* item_use.cc */; };
		7B237EAE0A8EC9D000580F30 /* acr.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E270A8EC9D000580F30 /* acr.cc */; };
		7B237EAF0A8EC9D000580F30 /* abyss.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E280A8EC9D000580F30 /* abyss.cc */; };
		7B237EB00A8EC9D000580F30 /* abl-show.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E290A8EC9D000580F30 /* abl-show.h */; };
		7B237EB10A8EC9D000580F30 /* chardump.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E2A0A8EC9D000580F30 /* chardump.cc */; };
		7B237EB20A8EC9D000580F30 /* chardump.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E2B0A8EC9D000580F30 /* chardump.h */; };
		7B237EB30A8EC9D000580F30 /* beam.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E2C0A8EC9D000580F30 /* beam.cc */; };
		7B237EB40A8EC9D000580F30 /* beam.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E2D0A8EC9D000580F30 /* beam.h */; };
		7B237EB50A8EC9D000580F30 /* spl-cast.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E2E0A8EC9D000580F30 /* spl-cast.h */; };
		7B237EB60A8EC9D000580F30 /* spl-cast.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E2F0A8EC9D000580F30 /* spl-cast.cc */; };
		7B237EB70A8EC9D000580F30 /* spl-book.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E300A8EC9D000580F30 /* spl-book.h */; };
		7B237EB80A8EC9D000580F30 /* output.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E310A8EC9D000580F30 /* output.cc */; };
		7B237EB90A8EC9D000580F30 /* ouch.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E320A8EC9D000580F30 /* ouch.h */; };
		7B237EBA0A8EC9D000580F30 /* ouch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E330A8EC9D000580F30 /* ouch.cc */; };
		7B237EBB0A8EC9D000580F30 /* newgame.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E340A8EC9D000580F30 /* newgame.h */; };
		7B237EBC0A8EC9D000580F30 /* message.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E350A8EC9D000580F30 /* message.cc */; };
		7B237EBD0A8EC9D000580F30 /* menu.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E360A8EC9D000580F30 /* menu.h */; };
		7B237EBE0A8EC9D000580F30 /* menu.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E370A8EC9D000580F30 /* menu.cc */; };
		7B237EBF0A8EC9D000580F30 /* macro.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E380A8EC9D000580F30 /* macro.cc */; };
		7B237EC00A8EC9D000580F30 /* shopping.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E390A8EC9D000580F30 /* shopping.cc */; };
		7B237EC10A8EC9D000580F30 /* religion.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E3A0A8EC9D000580F30 /* religion.h */; };
		7B237EC20A8EC9D000580F30 /* religion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E3B0A8EC9D000580F30 /* religion.cc */; };
		7B237EC30A8EC9D000580F30 /* spells3.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E3C0A8EC9D000580F30 /* spells3.cc */; };
		7B237EC40A8EC9D000580F30 /* spells2.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E3D0A8EC9D000580F30 /* spells2.h */; };
		7B237EC50A8EC9D000580F30 /* spells2.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E3E0A8EC9D000580F30 /* spells2.cc */; };
		7B237EC60A8EC9D000580F30 /* mstuff2.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E3F0A8EC9D000580F30 /* mstuff2.cc */; };
		7B237EC70A8EC9D000580F30 /* monstuff.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E400A8EC9D000580F30 /* monstuff.h */; };
		7B237EC80A8EC9D000580F30 /* monstuff.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E410A8EC9D000580F30 /* monstuff.cc */; };
		7B237EC90A8EC9D000580F30 /* monspeak.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E420A8EC9D000580F30 /* monspeak.h */; };
		7B237ECA0A8EC9D000580F30 /* delay.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E430A8EC9D000580F30 /* delay.h */; };
		7B237ECB0A8EC9D000580F30 /* command.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E440A8EC9D000580F30 /* command.h */; };
		7B237ECC0A8EC9D000580F30 /* spells1.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E450A8EC9D000580F30 /* spells1.h */; };
		7B237ECD0A8EC9D000580F30 /* spells1.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E460A8EC9D000580F30 /* spells1.cc */; };
		7B237ECE0A8EC9D000580F30 /* skills2.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E470A8EC9D000580F30 /* skills2.h */; };
		7B237ECF0A8EC9D000580F30 /* skills2.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E480A8EC9D000580F30 /* skills2.cc */; };
		7B237ED00A8EC9D000580F30 /* decks.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E490A8EC9D000580F30 /* decks.cc */; };
		7B237ED10A8EC9D000580F30 /* describe.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E4A0A8EC9D000580F30 /* describe.cc */; };
		7B237ED20A8EC9D000580F30 /* monspeak.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E4B0A8EC9D000580F30 /* monspeak.cc */; };
		7B237ED30A8EC9D000580F30 /* monplace.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E4C0A8EC9D000580F30 /* monplace.h */; };
		7B237ED40A8EC9D000580F30 /* monplace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E4D0A8EC9D000580F30 /* monplace.cc */; };
		7B237ED50A8EC9D000580F30 /* Kills.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E4E0A8EC9D000580F30 /* Kills.h */; };
		7B237ED60A8EC9D000580F30 /* Kills.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E4F0A8EC9D000580F30 /* Kills.cc */; };
		7B237ED70A8EC9D000580F30 /* files.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E500A8EC9D000580F30 /* files.h */; };
		7B237ED80A8EC9D000580F30 /* fight.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E510A8EC9D000580F30 /* fight.h */; };
		7B237ED90A8EC9D000580F30 /* effects.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E520A8EC9D000580F30 /* effects.cc */; };
		7B237EDA0A8EC9D000580F30 /* fight.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E530A8EC9D000580F30 /* fight.cc */; };
		7B237EDB0A8EC9D000580F30 /* food.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E540A8EC9D000580F30 /* food.cc */; };
		7B237EDC0A8EC9D000580F30 /* food.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E550A8EC9D000580F30 /* food.h */; };
		7B237EDD0A8EC9D000580F30 /* clua.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E560A8EC9D000580F30 /* clua.h */; };
		7B237EDE0A8EC9D000580F30 /* clua.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E570A8EC9D000580F30 /* clua.cc */; };
		7B237EDF0A8EC9D000580F30 /* cloud.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E580A8EC9D000580F30 /* cloud.h */; };
		7B237EE00A8EC9D000580F30 /* cloud.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E590A8EC9D000580F30 /* cloud.cc */; };
		7B237EE10A8EC9D000580F30 /* items.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E5A0A8EC9D000580F30 /* items.cc */; };
		7B237EE20A8EC9D000580F30 /* itemname.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E5B0A8EC9D000580F30 /* itemname.h */; };
		7B237EE30A8EC9D000580F30 /* skills.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E5C0A8EC9D000580F30 /* skills.h */; };
		7B237EE40A8EC9D000580F30 /* skills.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E5D0A8EC9D000580F30 /* skills.cc */; };
		7B237EE50A8EC9D000580F30 /* shopping.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E5E0A8EC9D000580F30 /* shopping.h */; };
		7B237EE60A8EC9D000580F30 /* it_use2.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E5F0A8EC9D000580F30 /* it_use2.cc */; };
		7B237EE70A8EC9D000580F30 /* invent.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E600A8EC9D000580F30 /* invent.h */; };
		7B237EE80A8EC9D000580F30 /* invent.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E610A8EC9D000580F30 /* invent.cc */; };
		7B237EE90A8EC9D000580F30 /* libutil.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E620A8EC9D000580F30 /* libutil.cc */; };
		7B237EEA0A8EC9D000580F30 /* libunix.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E630A8EC9D000580F30 /* libunix.h */; };
		7B237EEB0A8EC9D000580F30 /* libunix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E640A8EC9D000580F30 /* libunix.cc */; };
		7B237EEC0A8EC9D000580F30 /* abyss.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E650A8EC9D000580F30 /* abyss.h */; };
		7B237EED0A8EC9D000580F30 /* delay.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E660A8EC9D000580F30 /* delay.cc */; };
		7B237EEE0A8EC9D000580F30 /* dungeon.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E670A8EC9D000580F30 /* dungeon.cc */; };
		7B237EEF0A8EC9D000580F30 /* debug.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E680A8EC9D000580F30 /* debug.cc */; };
		7B237EF00A8EC9D000580F30 /* mt19937ar.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E690A8EC9D000580F30 /* mt19937ar.h */; };
		7B237EF10A8EC9D000580F30 /* mt19937ar.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E6A0A8EC9D000580F30 /* mt19937ar.cc */; };
		7B237EF20A8EC9D000580F30 /* mstuff2.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B237E6B0A8EC9D000580F30 /* mstuff2.h */; };
		7B352EA00B00183400CABB32 /* mapdef.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B352E9D0B00183400CABB32 /* mapdef.cc */; };
		7B352EA10B00183400CABB32 /* mapdef.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B352E9E0B00183400CABB32 /* mapdef.h */; };
		7B3B075B0BD13AAB00F2980E /* libreadline.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B3B07560BD13A8100F2980E /* libreadline.dylib */; };
		7B3B07600BD13AF000F2980E /* libncurses.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B3B075F0BD13AF000F2980E /* libncurses.dylib */; };
		7B4896620CD3A5D2004A5F43 /* mgrow.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B4896600CD3A5D2004A5F43 /* mgrow.cc */; };
		7B54B51B0CA8217900612805 /* state.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B54B51A0CA8217900612805 /* state.cc */; };
		7B61642D0C9CA8E80054B3D9 /* mpr.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B6164240C9CA8E80054B3D9 /* mpr.h */; };
		7B61642E0C9CA8E80054B3D9 /* place.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B6164250C9CA8E80054B3D9 /* place.cc */; };
		7B61642F0C9CA8E80054B3D9 /* place.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B6164260C9CA8E80054B3D9 /* place.h */; };
		7B6164300C9CA8E80054B3D9 /* ray.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B6164270C9CA8E80054B3D9 /* ray.h */; };
		7B6164310C9CA8E80054B3D9 /* state.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B6164280C9CA8E80054B3D9 /* state.h */; };
		7B6164320C9CA8E80054B3D9 /* terrain.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B6164290C9CA8E80054B3D9 /* terrain.cc */; };
		7B6164330C9CA8E80054B3D9 /* terrain.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B61642A0C9CA8E80054B3D9 /* terrain.h */; };
		7B6164340C9CA8E80054B3D9 /* traps.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B61642B0C9CA8E80054B3D9 /* traps.cc */; };
		7B6164350C9CA8E80054B3D9 /* traps.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B61642C0C9CA8E80054B3D9 /* traps.h */; };
		7B973FFD0BE3AA8400AAE35B /* database.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B973FFB0BE3AA8400AAE35B /* database.cc */; };
		7B973FFE0BE3AA8400AAE35B /* database.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B973FFC0BE3AA8400AAE35B /* database.h */; };
		7B9740070BE3AC8000AAE35B /* makeitem.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B9740050BE3AC8000AAE35B /* makeitem.cc */; };
		7B9740080BE3AC8000AAE35B /* makeitem.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7B9740060BE3AC8000AAE35B /* makeitem.h */; };
		7BA3DBBB0B3D90A700B5B3D7 /* branch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BA3DBB90B3D90A700B5B3D7 /* branch.cc */; };
		7BA3DBBC0B3D90A700B5B3D7 /* branch.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7BA3DBBA0B3D90A700B5B3D7 /* branch.h */; };
		7BBC4A070B0F783C00F27D45 /* levcomp.lpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B352ED10B001B9E00CABB32 /* levcomp.lpp */; };
		7BBC4A080B0F783C00F27D45 /* levcomp.ypp in Sources */ = {isa = PBXBuildFile; fileRef = 7B352ED20B001B9E00CABB32 /* levcomp.ypp */; };
		7BC222E70ABBB286003A7D9A /* itemprop.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BC222E50ABBB286003A7D9A /* itemprop.cc */; };
		7BC222E80ABBB286003A7D9A /* itemprop.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7BC222E60ABBB286003A7D9A /* itemprop.h */; };
		7BD222200CC2D51300B475D8 /* store.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BD2221F0CC2D51300B475D8 /* store.cc */; };
		7BD75A350AC214A200B74F6E /* notes.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BD75A330AC214A200B74F6E /* notes.cc */; };
		7BD75A360AC214A200B74F6E /* notes.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7BD75A340AC214A200B74F6E /* notes.h */; };
		7BDEBB290BB4CB0B008DF39F /* mtransit.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BDEBB280BB4CB0B008DF39F /* mtransit.cc */; };
		7BDEBB2B0BB4CB1D008DF39F /* ghost.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BDEBB2A0BB4CB1D008DF39F /* ghost.cc */; };
		7BDEBB2D0BB4CB32008DF39F /* mtransit.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7BDEBB2C0BB4CB32008DF39F /* mtransit.h */; };
		7BDEBB310BB4CB5C008DF39F /* tutorial.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BDEBB2F0BB4CB5C008DF39F /* tutorial.cc */; };
		7BDEBB320BB4CB5C008DF39F /* tutorial.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7BDEBB300BB4CB5C008DF39F /* tutorial.h */; };
		7BDEBB360BB4CB93008DF39F /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BDEBB340BB4CB93008DF39F /* format.cc */; };
		7BDEBB370BB4CB93008DF39F /* format.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7BDEBB350BB4CB93008DF39F /* format.h */; };
		7BF855620C9C912B00B7C520 /* cio.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BF855600C9C912B00B7C520 /* cio.cc */; };
		7BF855630C9C912B00B7C520 /* cio.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7BF855610C9C912B00B7C520 /* cio.h */; };
		7BF855670C9C914D00B7C520 /* mapmark.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BF855650C9C914D00B7C520 /* mapmark.cc */; };
		7BF855680C9C914D00B7C520 /* mapmark.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7BF855660C9C914D00B7C520 /* mapmark.h */; };
		7BF8556B0C9C916800B7C520 /* dgnevent.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BF855690C9C916800B7C520 /* dgnevent.cc */; };
		7BF8556C0C9C916800B7C520 /* dgnevent.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7BF8556A0C9C916800B7C520 /* dgnevent.h */; };
		7BF855700C9C919100B7C520 /* luadgn.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BF8556E0C9C919100B7C520 /* luadgn.cc */; };
		7BF855710C9C919100B7C520 /* luadgn.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 7BF8556F0C9C919100B7C520 /* luadgn.h */; };
		93B134650F25595F007DB230 /* version.cc in Sources */ = {isa = PBXBuildFile; fileRef = 93B134610F255926007DB230 /* version.cc */; };
		93B134C30F256113007DB230 /* arena.cc in Sources */ = {isa = PBXBuildFile; fileRef = 93B134C20F256113007DB230 /* arena.cc */; };
		B0274AC4106AD979004F7B39 /* randart.cc in Sources */ = {isa = PBXBuildFile; fileRef = B0274AC2106AD957004F7B39 /* randart.cc */; };
		B0274AC5106AD979004F7B39 /* randart.h in Sources */ = {isa = PBXBuildFile; fileRef = B0274AC3106AD957004F7B39 /* randart.h */; };
		B0274AC8106AD989004F7B39 /* randart.cc in Sources */ = {isa = PBXBuildFile; fileRef = B0274AC2106AD957004F7B39 /* randart.cc */; };
		B0274AC9106AD989004F7B39 /* randart.h in Sources */ = {isa = PBXBuildFile; fileRef = B0274AC3106AD957004F7B39 /* randart.h */; };
		B02C574510670C63006AC96D /* libgui.cc in Sources */ = {isa = PBXBuildFile; fileRef = B02C574310670C63006AC96D /* libgui.cc */; };
		B02C576110670ED2006AC96D /* SDLMain.m in Sources */ = {isa = PBXBuildFile; fileRef = B02C576010670ED2006AC96D /* SDLMain.m */; };
		B02C57911067129A006AC96D /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B02C57901067129A006AC96D /* AppKit.framework */; };
		B090C2F210671F8900AE855D /* dngn.png in Copy Dungeon Tiles */ = {isa = PBXBuildFile; fileRef = B090C2EE10671F8900AE855D /* dngn.png */; };
		B090C2F410671F8900AE855D /* main.png in Copy Dungeon Tiles */ = {isa = PBXBuildFile; fileRef = B090C2F010671F8900AE855D /* main.png */; };
		B090C2F510671F8900AE855D /* player.png in Copy Dungeon Tiles */ = {isa = PBXBuildFile; fileRef = B090C2F110671F8900AE855D /* player.png */; };
		B0B5DF211066ED0E0020B21F /* libpng.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B0B5DF201066ED0E0020B21F /* libpng.framework */; };
		B0B5DF231066ED0E0020B21F /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B0B5DF221066ED0E0020B21F /* SDL_image.framework */; };
		B0B5DF251066ED0E0020B21F /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B0B5DF241066ED0E0020B21F /* SDL.framework */; };
		B0B5DF6A1066EE1A0020B21F /* libpng.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B0B5DF201066ED0E0020B21F /* libpng.framework */; };
		B0B5DF6B1066EE1A0020B21F /* SDL_image.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B0B5DF221066ED0E0020B21F /* SDL_image.framework */; };
		B0B5DF6C1066EE1A0020B21F /* SDL.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B0B5DF241066ED0E0020B21F /* SDL.framework */; };
		B0B5DFCD1066F9B30020B21F /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B0B5DFC91066F9A80020B21F /* OpenGL.framework */; };
		B0B5DFE21066FA2F0020B21F /* tiledef-dngn.cc in Sources */ = {isa = PBXBuildFile; fileRef = B0B5DFD31066FA240020B21F /* tiledef-dngn.cc */; };
		B0B5DFE41066FA2F0020B21F /* tiledef-main.cc in Sources */ = {isa = PBXBuildFile; fileRef = B0B5DFD71066FA240020B21F /* tiledef-main.cc */; };
		B0B5DFE51066FA2F0020B21F /* tiledef-player.cc in Sources */ = {isa = PBXBuildFile; fileRef = B0B5DFD91066FA240020B21F /* tiledef-player.cc */; };
		B0B5E17F106706EE0020B21F /* Freetype2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B0B5E17B106706E40020B21F /* Freetype2.framework */; };
		B0B5E1DC106706FD0020B21F /* Freetype2.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B0B5E17B106706E40020B21F /* Freetype2.framework */; };
		D2660D460FF0864B00986331 /* levcomp.ypp in Sources */ = {isa = PBXBuildFile; fileRef = 7B352ED20B001B9E00CABB32 /* levcomp.ypp */; };
		D2660D470FF0864B00986331 /* levcomp.lpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B352ED10B001B9E00CABB32 /* levcomp.lpp */; };
		D2660D480FF0864B00986331 /* maps.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237DE60A8EC9D000580F30 /* maps.cc */; };
		D2660D490FF0864B00986331 /* arena.cc in Sources */ = {isa = PBXBuildFile; fileRef = 93B134C20F256113007DB230 /* arena.cc */; };
		D2660D4A0FF0864B00986331 /* mon-pick.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237DE80A8EC9D000580F30 /* mon-pick.cc */; };
		D2660D4B0FF0864B00986331 /* overmap.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237DEE0A8EC9D000580F30 /* overmap.cc */; };
		D2660D4C0FF0864B00986331 /* initfile.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237DF10A8EC9D000580F30 /* initfile.cc */; };
		D2660D4D0FF0864B00986331 /* hiscores.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237DF30A8EC9D000580F30 /* hiscores.cc */; };
		D2660D4E0FF0864B00986331 /* travel.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237DF50A8EC9D000580F30 /* travel.cc */; };
		D2660D4F0FF0864B00986331 /* lev-pand.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237DF70A8EC9D000580F30 /* lev-pand.cc */; };
		D2660D500FF0864B00986331 /* newgame.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237DF90A8EC9D000580F30 /* newgame.cc */; };
		D2660D510FF0864B00986331 /* mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237DFB0A8EC9D000580F30 /* mutation.cc */; };
		D2660D520FF0864B00986331 /* misc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237DFC0A8EC9D000580F30 /* misc.cc */; };
		D2660D530FF0864B00986331 /* mon-util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237DFF0A8EC9D000580F30 /* mon-util.cc */; };
		D2660D540FF0864B00986331 /* it_use3.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E010A8EC9D000580F30 /* it_use3.cc */; };
		D2660D550FF0864B00986331 /* itemname.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E030A8EC9D000580F30 /* itemname.cc */; };
		D2660D560FF0864B00986331 /* command.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E040A8EC9D000580F30 /* command.cc */; };
		D2660D570FF0864B00986331 /* spl-util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E070A8EC9D000580F30 /* spl-util.cc */; };
		D2660D590FF0864B00986331 /* player.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E0B0A8EC9D000580F30 /* player.cc */; };
		D2660D5A0FF0864B00986331 /* abl-show.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E0D0A8EC9D000580F30 /* abl-show.cc */; };
		D2660D5B0FF0864B00986331 /* files.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E0E0A8EC9D000580F30 /* files.cc */; };
		D2660D5C0FF0864B00986331 /* directn.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E0F0A8EC9D000580F30 /* directn.cc */; };
		D2660D5D0FF0864B00986331 /* view.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E140A8EC9D000580F30 /* view.cc */; };
		D2660D5E0FF0864B00986331 /* spl-book.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E150A8EC9D000580F30 /* spl-book.cc */; };
		D2660D5F0FF0864B00986331 /* spells4.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E170A8EC9D000580F30 /* spells4.cc */; };
		D2660D600FF0864B00986331 /* stuff.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E1E0A8EC9D000580F30 /* stuff.cc */; };
		D2660D610FF0864B00986331 /* stash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E200A8EC9D000580F30 /* stash.cc */; };
		D2660D620FF0864B00986331 /* transfor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E220A8EC9D000580F30 /* transfor.cc */; };
		D2660D630FF0864B00986331 /* tags.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E240A8EC9D000580F30 /* tags.cc */; };
		D2660D640FF0864B00986331 /* item_use.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E260A8EC9D000580F30 /* item_use.cc */; };
		D2660D650FF0864B00986331 /* acr.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E270A8EC9D000580F30 /* acr.cc */; };
		D2660D660FF0864B00986331 /* abyss.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E280A8EC9D000580F30 /* abyss.cc */; };
		D2660D670FF0864B00986331 /* chardump.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E2A0A8EC9D000580F30 /* chardump.cc */; };
		D2660D680FF0864B00986331 /* beam.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E2C0A8EC9D000580F30 /* beam.cc */; };
		D2660D690FF0864B00986331 /* spl-cast.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E2F0A8EC9D000580F30 /* spl-cast.cc */; };
		D2660D6A0FF0864B00986331 /* output.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E310A8EC9D000580F30 /* output.cc */; };
		D2660D6B0FF0864B00986331 /* ouch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E330A8EC9D000580F30 /* ouch.cc */; };
		D2660D6C0FF0864B00986331 /* message.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E350A8EC9D000580F30 /* message.cc */; };
		D2660D6D0FF0864B00986331 /* menu.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E370A8EC9D000580F30 /* menu.cc */; };
		D2660D6E0FF0864B00986331 /* macro.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E380A8EC9D000580F30 /* macro.cc */; };
		D2660D6F0FF0864B00986331 /* shopping.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E390A8EC9D000580F30 /* shopping.cc */; };
		D2660D700FF0864B00986331 /* religion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E3B0A8EC9D000580F30 /* religion.cc */; };
		D2660D710FF0864B00986331 /* spells3.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E3C0A8EC9D000580F30 /* spells3.cc */; };
		D2660D720FF0864B00986331 /* spells2.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E3E0A8EC9D000580F30 /* spells2.cc */; };
		D2660D730FF0864B00986331 /* mstuff2.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E3F0A8EC9D000580F30 /* mstuff2.cc */; };
		D2660D740FF0864B00986331 /* monstuff.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E410A8EC9D000580F30 /* monstuff.cc */; };
		D2660D750FF0864B00986331 /* spells1.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E460A8EC9D000580F30 /* spells1.cc */; };
		D2660D760FF0864B00986331 /* skills2.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E480A8EC9D000580F30 /* skills2.cc */; };
		D2660D770FF0864B00986331 /* decks.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E490A8EC9D000580F30 /* decks.cc */; };
		D2660D780FF0864B00986331 /* describe.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E4A0A8EC9D000580F30 /* describe.cc */; };
		D2660D790FF0864B00986331 /* monspeak.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E4B0A8EC9D000580F30 /* monspeak.cc */; };
		D2660D7A0FF0864B00986331 /* monplace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E4D0A8EC9D000580F30 /* monplace.cc */; };
		D2660D7B0FF0864B00986331 /* Kills.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E4F0A8EC9D000580F30 /* Kills.cc */; };
		D2660D7C0FF0864B00986331 /* effects.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E520A8EC9D000580F30 /* effects.cc */; };
		D2660D7D0FF0864B00986331 /* fight.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E530A8EC9D000580F30 /* fight.cc */; };
		D2660D7E0FF0864B00986331 /* food.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E540A8EC9D000580F30 /* food.cc */; };
		D2660D7F0FF0864B00986331 /* clua.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E570A8EC9D000580F30 /* clua.cc */; };
		D2660D800FF0864B00986331 /* cloud.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E590A8EC9D000580F30 /* cloud.cc */; };
		D2660D810FF0864B00986331 /* items.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E5A0A8EC9D000580F30 /* items.cc */; };
		D2660D820FF0864B00986331 /* skills.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E5D0A8EC9D000580F30 /* skills.cc */; };
		D2660D830FF0864B00986331 /* it_use2.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E5F0A8EC9D000580F30 /* it_use2.cc */; };
		D2660D840FF0864B00986331 /* invent.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E610A8EC9D000580F30 /* invent.cc */; };
		D2660D850FF0864B00986331 /* libutil.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E620A8EC9D000580F30 /* libutil.cc */; };
		D2660D870FF0864B00986331 /* delay.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E660A8EC9D000580F30 /* delay.cc */; };
		D2660D880FF0864B00986331 /* dungeon.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E670A8EC9D000580F30 /* dungeon.cc */; };
		D2660D890FF0864B00986331 /* debug.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E680A8EC9D000580F30 /* debug.cc */; };
		D2660D8A0FF0864B00986331 /* mt19937ar.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B237E6A0A8EC9D000580F30 /* mt19937ar.cc */; };
		D2660D8B0FF0864B00986331 /* itemprop.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BC222E50ABBB286003A7D9A /* itemprop.cc */; };
		D2660D8C0FF0864B00986331 /* notes.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BD75A330AC214A200B74F6E /* notes.cc */; };
		D2660D8D0FF0864B00986331 /* mapdef.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B352E9D0B00183400CABB32 /* mapdef.cc */; };
		D2660D8E0FF0864B00986331 /* branch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BA3DBB90B3D90A700B5B3D7 /* branch.cc */; };
		D2660D8F0FF0864B00986331 /* mtransit.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BDEBB280BB4CB0B008DF39F /* mtransit.cc */; };
		D2660D900FF0864B00986331 /* ghost.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BDEBB2A0BB4CB1D008DF39F /* ghost.cc */; };
		D2660D910FF0864B00986331 /* tutorial.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BDEBB2F0BB4CB5C008DF39F /* tutorial.cc */; };
		D2660D920FF0864B00986331 /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BDEBB340BB4CB93008DF39F /* format.cc */; };
		D2660D930FF0864B00986331 /* database.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B973FFB0BE3AA8400AAE35B /* database.cc */; };
		D2660D940FF0864B00986331 /* makeitem.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B9740050BE3AC8000AAE35B /* makeitem.cc */; };
		D2660D950FF0864B00986331 /* xom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4CEF15890C128CA5002C7D7A /* xom.cc */; };
		D2660D960FF0864B00986331 /* cio.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BF855600C9C912B00B7C520 /* cio.cc */; };
		D2660D970FF0864B00986331 /* mapmark.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BF855650C9C914D00B7C520 /* mapmark.cc */; };
		D2660D980FF0864B00986331 /* dgnevent.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BF855690C9C916800B7C520 /* dgnevent.cc */; };
		D2660D990FF0864B00986331 /* luadgn.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BF8556E0C9C919100B7C520 /* luadgn.cc */; };
		D2660D9A0FF0864B00986331 /* place.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B6164250C9CA8E80054B3D9 /* place.cc */; };
		D2660D9B0FF0864B00986331 /* terrain.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B6164290C9CA8E80054B3D9 /* terrain.cc */; };
		D2660D9C0FF0864B00986331 /* traps.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B61642B0C9CA8E80054B3D9 /* traps.cc */; };
		D2660D9D0FF0864B00986331 /* state.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B54B51A0CA8217900612805 /* state.cc */; };
		D2660D9E0FF0864B00986331 /* store.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BD2221F0CC2D51300B475D8 /* store.cc */; };
		D2660D9F0FF0864B00986331 /* mgrow.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B4896600CD3A5D2004A5F43 /* mgrow.cc */; };
		D2660DA00FF0864B00986331 /* quiver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6232EBE00DACA55C004F7E9C /* quiver.cc */; };
		D2660DA10FF0864B00986331 /* version.cc in Sources */ = {isa = PBXBuildFile; fileRef = 93B134610F255926007DB230 /* version.cc */; };
		D2660DA20FF0864B00986331 /* crash-u.cc in Sources */ = {isa = PBXBuildFile; fileRef = D274AC530FE66EEC00C9C1AE /* crash-u.cc */; };
		D2660DA30FF0864B00986331 /* spl-mis.cc in Sources */ = {isa = PBXBuildFile; fileRef = D274AC580FE66EFC00C9C1AE /* spl-mis.cc */; };
		D2660DA50FF0864B00986331 /* liblua.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B0EFD420BD12E9200002671 /* liblua.a */; };
		D2660DA60FF0864B00986331 /* libreadline.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B3B07560BD13A8100F2980E /* libreadline.dylib */; };
		D2660DA70FF0864B00986331 /* libncurses.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B3B075F0BD13AF000F2980E /* libncurses.dylib */; };
		D2660E1E0FF0868B00986331 /* tile2.cc in Sources */ = {isa = PBXBuildFile; fileRef = D2660E070FF0868B00986331 /* tile2.cc */; };
		D2660E1F0FF0868B00986331 /* tilebuf.cc in Sources */ = {isa = PBXBuildFile; fileRef = D2660E080FF0868B00986331 /* tilebuf.cc */; };
		D2660E200FF0868B00986331 /* tilefont.cc in Sources */ = {isa = PBXBuildFile; fileRef = D2660E0A0FF0868B00986331 /* tilefont.cc */; };
		D2660E210FF0868B00986331 /* tilemcache.cc in Sources */ = {isa = PBXBuildFile; fileRef = D2660E0C0FF0868B00986331 /* tilemcache.cc */; };
		D2660E220FF0868B00986331 /* tilepick.cc in Sources */ = {isa = PBXBuildFile; fileRef = D2660E0E0FF0868B00986331 /* tilepick.cc */; };
		D2660E230FF0868B00986331 /* tilereg.cc in Sources */ = {isa = PBXBuildFile; fileRef = D2660E0F0FF0868B00986331 /* tilereg.cc */; };
		D2660E240FF0868B00986331 /* tilesdl.cc in Sources */ = {isa = PBXBuildFile; fileRef = D2660E120FF0868B00986331 /* tilesdl.cc */; };
		D2660E250FF0868B00986331 /* tiletex.cc in Sources */ = {isa = PBXBuildFile; fileRef = D2660E140FF0868B00986331 /* tiletex.cc */; };
		D274AC550FE66EEC00C9C1AE /* crash-u.cc in Sources */ = {isa = PBXBuildFile; fileRef = D274AC530FE66EEC00C9C1AE /* crash-u.cc */; };
		D274AC5A0FE66EFC00C9C1AE /* spl-mis.cc in Sources */ = {isa = PBXBuildFile; fileRef = D274AC580FE66EFC00C9C1AE /* spl-mis.cc */; };
		D2A696BD0DA29D4E00FDDE82 /* Crawl.icns in Resources */ = {isa = PBXBuildFile; fileRef = D2A696BC0DA29D4E00FDDE82 /* Crawl.icns */; };
		D2AE25F90DA262DD00E15489 /* crawl in Copy Wrapper Script */ = {isa = PBXBuildFile; fileRef = D2AE25EE0DA2624E00E15489 /* crawl */; };
		D2F272350DA1C5AD00445FE9 /* dat in Resources */ = {isa = PBXBuildFile; fileRef = D2F271FE0DA1C5AD00445FE9 /* dat */; };
		D2F2725B0DA1C61600445FE9 /* docs in Resources */ = {isa = PBXBuildFile; fileRef = D2F2723F0DA1C61600445FE9 /* docs */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		7B0EFD440BD12E9E00002671 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 7B0EFD410BD12E9200002671;
			remoteInfo = Lua;
		};
		B02C579D10671327006AC96D /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = D2660D420FF0864B00986331;
			remoteInfo = "Crawl-tiles-cmd";
		};
		D2660D440FF0864B00986331 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 7B0EFD410BD12E9200002671;
			remoteInfo = Lua;
		};
		D2F272360DA1C5BC00445FE9 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 7B0EFD410BD12E9200002671;
			remoteInfo = Lua;
		};
/* End PBXContainerItemProxy section */

/* Begin PBXCopyFilesBuildPhase section */
		8DD76FAF0486AB0100D96B5E /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 8;
			dstPath = /usr/share/man/man1/;
			dstSubfolderSpec = 0;
			files = (
				7B237E6C0A8EC9D000580F30 /* maps.h in CopyFiles */,
				7B237E6E0A8EC9D000580F30 /* mon-pick.h in CopyFiles */,
				7B237E700A8EC9D000580F30 /* misc.h in CopyFiles */,
				7B237E730A8EC9D000580F30 /* initfile.h in CopyFiles */,
				7B237E740A8EC9D000580F30 /* overmap.h in CopyFiles */,
				7B237E760A8EC9D000580F30 /* output.h in CopyFiles */,
				7B237E770A8EC9D000580F30 /* item_use.h in CopyFiles */,
				7B237E790A8EC9D000580F30 /* hiscores.h in CopyFiles */,
				7B237E7B0A8EC9D000580F30 /* travel.h in CopyFiles */,
				7B237E7D0A8EC9D000580F30 /* lev-pand.h in CopyFiles */,
				7B237E7F0A8EC9D000580F30 /* items.h in CopyFiles */,
				7B237E810A8EC9D000580F30 /* mutation.h in CopyFiles */,
				7B237E840A8EC9D000580F30 /* message.h in CopyFiles */,
				7B237E850A8EC9D000580F30 /* mon-util.h in CopyFiles */,
				7B237E870A8EC9D000580F30 /* it_use3.h in CopyFiles */,
				7B237E890A8EC9D000580F30 /* it_use2.h in CopyFiles */,
				7B237E8C0A8EC9D000580F30 /* describe.h in CopyFiles */,
				7B237E8D0A8EC9D000580F30 /* spl-util.h in CopyFiles */,
				7B237E910A8EC9D000580F30 /* player.h in CopyFiles */,
				7B237E930A8EC9D000580F30 /* effects.h in CopyFiles */,
				7B237E970A8EC9D000580F30 /* dungeon.h in CopyFiles */,
				7B237E9A0A8EC9D000580F30 /* view.h in CopyFiles */,
				7B237E9D0A8EC9D000580F30 /* spells4.h in CopyFiles */,
				7B237E9F0A8EC9D000580F30 /* spells3.h in CopyFiles */,
				7B237EA00A8EC9D000580F30 /* macro.h in CopyFiles */,
				7B237EA10A8EC9D000580F30 /* debug.h in CopyFiles */,
				7B237EA20A8EC9D000580F30 /* directn.h in CopyFiles */,
				7B237EA30A8EC9D000580F30 /* decks.h in CopyFiles */,
				7B237EA40A8EC9D000580F30 /* stuff.h in CopyFiles */,
				7B237EA60A8EC9D000580F30 /* stash.h in CopyFiles */,
				7B237EA80A8EC9D000580F30 /* transfor.h in CopyFiles */,
				7B237EAA0A8EC9D000580F30 /* tags.h in CopyFiles */,
				7B237EAC0A8EC9D000580F30 /* libutil.h in CopyFiles */,
				7B237EB00A8EC9D000580F30 /* abl-show.h in CopyFiles */,
				7B237EB20A8EC9D000580F30 /* chardump.h in CopyFiles */,
				7B237EB40A8EC9D000580F30 /* beam.h in CopyFiles */,
				7B237EB50A8EC9D000580F30 /* spl-cast.h in CopyFiles */,
				7B237EB70A8EC9D000580F30 /* spl-book.h in CopyFiles */,
				7B237EB90A8EC9D000580F30 /* ouch.h in CopyFiles */,
				7B237EBB0A8EC9D000580F30 /* newgame.h in CopyFiles */,
				7B237EBD0A8EC9D000580F30 /* menu.h in CopyFiles */,
				7B237EC10A8EC9D000580F30 /* religion.h in CopyFiles */,
				7B237EC40A8EC9D000580F30 /* spells2.h in CopyFiles */,
				7B237EC70A8EC9D000580F30 /* monstuff.h in CopyFiles */,
				7B237EC90A8EC9D000580F30 /* monspeak.h in CopyFiles */,
				7B237ECA0A8EC9D000580F30 /* delay.h in CopyFiles */,
				7B237ECB0A8EC9D000580F30 /* command.h in CopyFiles */,
				7B237ECC0A8EC9D000580F30 /* spells1.h in CopyFiles */,
				7B237ECE0A8EC9D000580F30 /* skills2.h in CopyFiles */,
				7B237ED30A8EC9D000580F30 /* monplace.h in CopyFiles */,
				7B237ED50A8EC9D000580F30 /* Kills.h in CopyFiles */,
				7B237ED70A8EC9D000580F30 /* files.h in CopyFiles */,
				7B237ED80A8EC9D000580F30 /* fight.h in CopyFiles */,
				7B237EDC0A8EC9D000580F30 /* food.h in CopyFiles */,
				7B237EDD0A8EC9D000580F30 /* clua.h in CopyFiles */,
				7B237EDF0A8EC9D000580F30 /* cloud.h in CopyFiles */,
				7B237EE20A8EC9D000580F30 /* itemname.h in CopyFiles */,
				7B237EE30A8EC9D000580F30 /* skills.h in CopyFiles */,
				7B237EE50A8EC9D000580F30 /* shopping.h in CopyFiles */,
				7B237EE70A8EC9D000580F30 /* invent.h in CopyFiles */,
				7B237EEA0A8EC9D000580F30 /* libunix.h in CopyFiles */,
				7B237EEC0A8EC9D000580F30 /* abyss.h in CopyFiles */,
				7B237EF00A8EC9D000580F30 /* mt19937ar.h in CopyFiles */,
				7B237EF20A8EC9D000580F30 /* mstuff2.h in CopyFiles */,
				7BC222E80ABBB286003A7D9A /* itemprop.h in CopyFiles */,
				7BD75A360AC214A200B74F6E /* notes.h in CopyFiles */,
				7B352EA10B00183400CABB32 /* mapdef.h in CopyFiles */,
				7BA3DBBC0B3D90A700B5B3D7 /* branch.h in CopyFiles */,
				7BDEBB2D0BB4CB32008DF39F /* mtransit.h in CopyFiles */,
				7BDEBB320BB4CB5C008DF39F /* tutorial.h in CopyFiles */,
				7BDEBB370BB4CB93008DF39F /* format.h in CopyFiles */,
				7B973FFE0BE3AA8400AAE35B /* database.h in CopyFiles */,
				7B9740080BE3AC8000AAE35B /* makeitem.h in CopyFiles */,
				7BF855630C9C912B00B7C520 /* cio.h in CopyFiles */,
				7BF855680C9C914D00B7C520 /* mapmark.h in CopyFiles */,
				7BF8556C0C9C916800B7C520 /* dgnevent.h in CopyFiles */,
				7BF855710C9C919100B7C520 /* luadgn.h in CopyFiles */,
				7B61642D0C9CA8E80054B3D9 /* mpr.h in CopyFiles */,
				7B61642F0C9CA8E80054B3D9 /* place.h in CopyFiles */,
				7B6164300C9CA8E80054B3D9 /* ray.h in CopyFiles */,
				7B6164310C9CA8E80054B3D9 /* state.h in CopyFiles */,
				7B6164330C9CA8E80054B3D9 /* terrain.h in CopyFiles */,
				7B6164350C9CA8E80054B3D9 /* traps.h in CopyFiles */,
				6232EBE30DACA55C004F7E9C /* quiver.h in CopyFiles */,
			);
			runOnlyForDeploymentPostprocessing = 1;
		};
		B090C2ED10671F5F00AE855D /* Copy Dungeon Tiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = dat/tiles;
			dstSubfolderSpec = 7;
			files = (
				B090C2F210671F8900AE855D /* dngn.png in Copy Dungeon Tiles */,
				B090C2F410671F8900AE855D /* main.png in Copy Dungeon Tiles */,
				B090C2F510671F8900AE855D /* player.png in Copy Dungeon Tiles */,
			);
			name = "Copy Dungeon Tiles";
			runOnlyForDeploymentPostprocessing = 0;
		};
		B0B5DF681066EDFF0020B21F /* Copy Frameworks */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = "";
			dstSubfolderSpec = 10;
			files = (
				B0B5DF6A1066EE1A0020B21F /* libpng.framework in Copy Frameworks */,
				B0B5DF6B1066EE1A0020B21F /* SDL_image.framework in Copy Frameworks */,
				B0B5DF6C1066EE1A0020B21F /* SDL.framework in Copy Frameworks */,
				B0B5E1DC106706FD0020B21F /* Freetype2.framework in Copy Frameworks */,
			);
			name = "Copy Frameworks";
			runOnlyForDeploymentPostprocessing = 0;
		};
		D2AE25F30DA262B100E15489 /* Copy Wrapper Script */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 12;
			dstPath = "";
			dstSubfolderSpec = 6;
			files = (
				D2AE25F90DA262DD00E15489 /* crawl in Copy Wrapper Script */,
			);
			name = "Copy Wrapper Script";
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
		4CEF15890C128CA5002C7D7A /* xom.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = xom.cc; sourceTree = "<group>"; };
		6232EBE00DACA55C004F7E9C /* quiver.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = quiver.cc; sourceTree = "<group>"; };
		6232EBE10DACA55C004F7E9C /* quiver.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = quiver.h; sourceTree = "<group>"; };
		7B0EFD420BD12E9200002671 /* liblua.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = liblua.a; sourceTree = BUILT_PRODUCTS_DIR; };
		7B0EFD4C0BD12EEB00002671 /* lapi.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = lapi.c; sourceTree = "<group>"; };
		7B0EFD4D0BD12EEB00002671 /* lapi.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = lapi.h; sourceTree = "<group>"; };
		7B0EFD4E0BD12EEB00002671 /* lauxlib.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = lauxlib.c; sourceTree = "<group>"; };
		7B0EFD4F0BD12EEB00002671 /* lauxlib.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = lauxlib.h; sourceTree = "<group>"; };
		7B0EFD500BD12EEB00002671 /* lbaselib.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = lbaselib.c; sourceTree = "<group>"; };
		7B0EFD510BD12EEB00002671 /* lcode.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = lcode.c; sourceTree = "<group>"; };
		7B0EFD520BD12EEB00002671 /* lcode.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = lcode.h; sourceTree = "<group>"; };
		7B0EFD530BD12EEB00002671 /* ldblib.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = ldblib.c; sourceTree = "<group>"; };
		7B0EFD540BD12EEB00002671 /* ldebug.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = ldebug.c; sourceTree = "<group>"; };
		7B0EFD550BD12EEB00002671 /* ldebug.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ldebug.h; sourceTree = "<group>"; };
		7B0EFD560BD12EEB00002671 /* ldo.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = ldo.c; sourceTree = "<group>"; };
		7B0EFD570BD12EEB00002671 /* ldo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ldo.h; sourceTree = "<group>"; };
		7B0EFD580BD12EEB00002671 /* ldump.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = ldump.c; sourceTree = "<group>"; };
		7B0EFD590BD12EEB00002671 /* lfunc.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = lfunc.c; sourceTree = "<group>"; };
		7B0EFD5A0BD12EEB00002671 /* lfunc.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = lfunc.h; sourceTree = "<group>"; };
		7B0EFD5B0BD12EEB00002671 /* lgc.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = lgc.c; sourceTree = "<group>"; };
		7B0EFD5C0BD12EEB00002671 /* lgc.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = lgc.h; sourceTree = "<group>"; };
		7B0EFD5D0BD12EEB00002671 /* linit.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = linit.c; sourceTree = "<group>"; };
		7B0EFD5E0BD12EEB00002671 /* liolib.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = liolib.c; sourceTree = "<group>"; };
		7B0EFD5F0BD12EEB00002671 /* llex.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = llex.c; sourceTree = "<group>"; };
		7B0EFD600BD12EEB00002671 /* llex.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = llex.h; sourceTree = "<group>"; };
		7B0EFD610BD12EEB00002671 /* llimits.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = llimits.h; sourceTree = "<group>"; };
		7B0EFD620BD12EEB00002671 /* lmathlib.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = lmathlib.c; sourceTree = "<group>"; };
		7B0EFD630BD12EEB00002671 /* lmem.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = lmem.c; sourceTree = "<group>"; };
		7B0EFD640BD12EEB00002671 /* lmem.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = lmem.h; sourceTree = "<group>"; };
		7B0EFD650BD12EEB00002671 /* loadlib.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = loadlib.c; sourceTree = "<group>"; };
		7B0EFD660BD12EEB00002671 /* lobject.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = lobject.c; sourceTree = "<group>"; };
		7B0EFD670BD12EEB00002671 /* lobject.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = lobject.h; sourceTree = "<group>"; };
		7B0EFD680BD12EEB00002671 /* lopcodes.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = lopcodes.c; sourceTree = "<group>"; };
		7B0EFD690BD12EEB00002671 /* lopcodes.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = lopcodes.h; sourceTree = "<group>"; };
		7B0EFD6A0BD12EEB00002671 /* loslib.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = loslib.c; sourceTree = "<group>"; };
		7B0EFD6B0BD12EEB00002671 /* lparser.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = lparser.c; sourceTree = "<group>"; };
		7B0EFD6C0BD12EEB00002671 /* lparser.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = lparser.h; sourceTree = "<group>"; };
		7B0EFD6D0BD12EEB00002671 /* lstate.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = lstate.c; sourceTree = "<group>"; };
		7B0EFD6E0BD12EEB00002671 /* lstate.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = lstate.h; sourceTree = "<group>"; };
		7B0EFD6F0BD12EEB00002671 /* lstring.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = lstring.c; sourceTree = "<group>"; };
		7B0EFD700BD12EEB00002671 /* lstring.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = lstring.h; sourceTree = "<group>"; };
		7B0EFD710BD12EEB00002671 /* lstrlib.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = lstrlib.c; sourceTree = "<group>"; };
		7B0EFD720BD12EEB00002671 /* ltable.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = ltable.c; sourceTree = "<group>"; };
		7B0EFD730BD12EEB00002671 /* ltable.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ltable.h; sourceTree = "<group>"; };
		7B0EFD740BD12EEB00002671 /* ltablib.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = ltablib.c; sourceTree = "<group>"; };
		7B0EFD750BD12EEB00002671 /* ltm.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = ltm.c; sourceTree = "<group>"; };
		7B0EFD760BD12EEB00002671 /* ltm.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ltm.h; sourceTree = "<group>"; };
		7B0EFD770BD12EEB00002671 /* lua.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = lua.c; sourceTree = "<group>"; };
		7B0EFD780BD12EEB00002671 /* lua.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = lua.h; sourceTree = "<group>"; };
		7B0EFD790BD12EEB00002671 /* luac.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = luac.c; sourceTree = "<group>"; };
		7B0EFD7A0BD12EEB00002671 /* luaconf.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = luaconf.h; sourceTree = "<group>"; };
		7B0EFD7B0BD12EEB00002671 /* lualib.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = lualib.h; sourceTree = "<group>"; };
		7B0EFD7C0BD12EEB00002671 /* lundump.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = lundump.c; sourceTree = "<group>"; };
		7B0EFD7D0BD12EEB00002671 /* lundump.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = lundump.h; sourceTree = "<group>"; };
		7B0EFD7E0BD12EEB00002671 /* lvm.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = lvm.c; sourceTree = "<group>"; };
		7B0EFD7F0BD12EEB00002671 /* lvm.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = lvm.h; sourceTree = "<group>"; };
		7B0EFD800BD12EEB00002671 /* lzio.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = lzio.c; sourceTree = "<group>"; };
		7B0EFD810BD12EEB00002671 /* lzio.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = lzio.h; sourceTree = "<group>"; };
		7B0EFD830BD12EEB00002671 /* print.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = print.c; sourceTree = "<group>"; };
		7B237DE50A8EC9D000580F30 /* maps.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = maps.h; sourceTree = "<group>"; };
		7B237DE60A8EC9D000580F30 /* maps.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = maps.cc; sourceTree = "<group>"; };
		7B237DE70A8EC9D000580F30 /* mon-pick.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = "mon-pick.h"; sourceTree = "<group>"; };
		7B237DE80A8EC9D000580F30 /* mon-pick.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = "mon-pick.cc"; sourceTree = "<group>"; };
		7B237DE90A8EC9D000580F30 /* misc.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = misc.h; sourceTree = "<group>"; };
		7B237DEC0A8EC9D000580F30 /* initfile.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = initfile.h; sourceTree = "<group>"; };
		7B237DED0A8EC9D000580F30 /* overmap.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = overmap.h; sourceTree = "<group>"; };
		7B237DEE0A8EC9D000580F30 /* overmap.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = overmap.cc; sourceTree = "<group>"; };
		7B237DEF0A8EC9D000580F30 /* output.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = output.h; sourceTree = "<group>"; };
		7B237DF00A8EC9D000580F30 /* item_use.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = item_use.h; sourceTree = "<group>"; };
		7B237DF10A8EC9D000580F30 /* initfile.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = initfile.cc; sourceTree = "<group>"; };
		7B237DF20A8EC9D000580F30 /* hiscores.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = hiscores.h; sourceTree = "<group>"; };
		7B237DF30A8EC9D000580F30 /* hiscores.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = hiscores.cc; sourceTree = "<group>"; };
		7B237DF40A8EC9D000580F30 /* travel.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = travel.h; sourceTree = "<group>"; };
		7B237DF50A8EC9D000580F30 /* travel.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = travel.cc; sourceTree = "<group>"; };
		7B237DF60A8EC9D000580F30 /* lev-pand.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = "lev-pand.h"; sourceTree = "<group>"; };
		7B237DF70A8EC9D000580F30 /* lev-pand.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = "lev-pand.cc"; sourceTree = "<group>"; };
		7B237DF80A8EC9D000580F30 /* items.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = items.h; sourceTree = "<group>"; };
		7B237DF90A8EC9D000580F30 /* newgame.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = newgame.cc; sourceTree = "<group>"; };
		7B237DFA0A8EC9D000580F30 /* mutation.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = mutation.h; sourceTree = "<group>"; };
		7B237DFB0A8EC9D000580F30 /* mutation.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = mutation.cc; sourceTree = "<group>"; };
		7B237DFC0A8EC9D000580F30 /* misc.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = misc.cc; sourceTree = "<group>"; };
		7B237DFD0A8EC9D000580F30 /* message.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = message.h; sourceTree = "<group>"; };
		7B237DFE0A8EC9D000580F30 /* mon-util.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = "mon-util.h"; sourceTree = "<group>"; };
		7B237DFF0A8EC9D000580F30 /* mon-util.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = "mon-util.cc"; sourceTree = "<group>"; };
		7B237E000A8EC9D000580F30 /* it_use3.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = it_use3.h; sourceTree = "<group>"; };
		7B237E010A8EC9D000580F30 /* it_use3.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = it_use3.cc; sourceTree = "<group>"; };
		7B237E020A8EC9D000580F30 /* it_use2.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = it_use2.h; sourceTree = "<group>"; };
		7B237E030A8EC9D000580F30 /* itemname.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = itemname.cc; sourceTree = "<group>"; };
		7B237E040A8EC9D000580F30 /* command.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = command.cc; sourceTree = "<group>"; };
		7B237E050A8EC9D000580F30 /* describe.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = describe.h; sourceTree = "<group>"; };
		7B237E060A8EC9D000580F30 /* spl-util.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = "spl-util.h"; sourceTree = "<group>"; };
		7B237E070A8EC9D000580F30 /* spl-util.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = "spl-util.cc"; sourceTree = "<group>"; };
		7B237E0A0A8EC9D000580F30 /* player.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = player.h; sourceTree = "<group>"; };
		7B237E0B0A8EC9D000580F30 /* player.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = player.cc; sourceTree = "<group>"; };
		7B237E0C0A8EC9D000580F30 /* effects.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = effects.h; sourceTree = "<group>"; };
		7B237E0D0A8EC9D000580F30 /* abl-show.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = "abl-show.cc"; sourceTree = "<group>"; };
		7B237E0E0A8EC9D000580F30 /* files.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = files.cc; sourceTree = "<group>"; };
		7B237E0F0A8EC9D000580F30 /* directn.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = directn.cc; sourceTree = "<group>"; };
		7B237E100A8EC9D000580F30 /* dungeon.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = dungeon.h; sourceTree = "<group>"; };
		7B237E130A8EC9D000580F30 /* view.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = view.h; sourceTree = "<group>"; };
		7B237E140A8EC9D000580F30 /* view.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = view.cc; sourceTree = "<group>"; };
		7B237E150A8EC9D000580F30 /* spl-book.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = "spl-book.cc"; sourceTree = "<group>"; };
		7B237E160A8EC9D000580F30 /* spells4.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = spells4.h; sourceTree = "<group>"; };
		7B237E170A8EC9D000580F30 /* spells4.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = spells4.cc; sourceTree = "<group>"; };
		7B237E180A8EC9D000580F30 /* spells3.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = spells3.h; sourceTree = "<group>"; };
		7B237E190A8EC9D000580F30 /* macro.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = macro.h; sourceTree = "<group>"; };
		7B237E1A0A8EC9D000580F30 /* debug.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = debug.h; sourceTree = "<group>"; };
		7B237E1B0A8EC9D000580F30 /* directn.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = directn.h; sourceTree = "<group>"; };
		7B237E1C0A8EC9D000580F30 /* decks.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = decks.h; sourceTree = "<group>"; };
		7B237E1D0A8EC9D000580F30 /* stuff.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = stuff.h; sourceTree = "<group>"; };
		7B237E1E0A8EC9D000580F30 /* stuff.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = stuff.cc; sourceTree = "<group>"; };
		7B237E1F0A8EC9D000580F30 /* stash.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = stash.h; sourceTree = "<group>"; };
		7B237E200A8EC9D000580F30 /* stash.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = stash.cc; sourceTree = "<group>"; };
		7B237E210A8EC9D000580F30 /* transfor.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = transfor.h; sourceTree = "<group>"; };
		7B237E220A8EC9D000580F30 /* transfor.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = transfor.cc; sourceTree = "<group>"; };
		7B237E230A8EC9D000580F30 /* tags.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = tags.h; sourceTree = "<group>"; };
		7B237E240A8EC9D000580F30 /* tags.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = tags.cc; sourceTree = "<group>"; };
		7B237E250A8EC9D000580F30 /* libutil.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = libutil.h; sourceTree = "<group>"; };
		7B237E260A8EC9D000580F30 /* item_use.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = item_use.cc; sourceTree = "<group>"; };
		7B237E270A8EC9D000580F30 /* acr.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = acr.cc; sourceTree = "<group>"; };
		7B237E280A8EC9D000580F30 /* abyss.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = abyss.cc; sourceTree = "<group>"; };
		7B237E290A8EC9D000580F30 /* abl-show.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = "abl-show.h"; sourceTree = "<group>"; };
		7B237E2A0A8EC9D000580F30 /* chardump.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = chardump.cc; sourceTree = "<group>"; };
		7B237E2B0A8EC9D000580F30 /* chardump.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = chardump.h; sourceTree = "<group>"; };
		7B237E2C0A8EC9D000580F30 /* beam.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = beam.cc; sourceTree = "<group>"; };
		7B237E2D0A8EC9D000580F30 /* beam.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = beam.h; sourceTree = "<group>"; };
		7B237E2E0A8EC9D000580F30 /* spl-cast.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = "spl-cast.h"; sourceTree = "<group>"; };
		7B237E2F0A8EC9D000580F30 /* spl-cast.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = "spl-cast.cc"; sourceTree = "<group>"; };
		7B237E300A8EC9D000580F30 /* spl-book.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = "spl-book.h"; sourceTree = "<group>"; };
		7B237E310A8EC9D000580F30 /* output.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = output.cc; sourceTree = "<group>"; };
		7B237E320A8EC9D000580F30 /* ouch.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ouch.h; sourceTree = "<group>"; };
		7B237E330A8EC9D000580F30 /* ouch.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ouch.cc; sourceTree = "<group>"; };
		7B237E340A8EC9D000580F30 /* newgame.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = newgame.h; sourceTree = "<group>"; };
		7B237E350A8EC9D000580F30 /* message.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = message.cc; sourceTree = "<group>"; };
		7B237E360A8EC9D000580F30 /* menu.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = menu.h; sourceTree = "<group>"; };
		7B237E370A8EC9D000580F30 /* menu.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = menu.cc; sourceTree = "<group>"; };
		7B237E380A8EC9D000580F30 /* macro.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = macro.cc; sourceTree = "<group>"; };
		7B237E390A8EC9D000580F30 /* shopping.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = shopping.cc; sourceTree = "<group>"; };
		7B237E3A0A8EC9D000580F30 /* religion.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = religion.h; sourceTree = "<group>"; };
		7B237E3B0A8EC9D000580F30 /* religion.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = religion.cc; sourceTree = "<group>"; };
		7B237E3C0A8EC9D000580F30 /* spells3.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = spells3.cc; sourceTree = "<group>"; };
		7B237E3D0A8EC9D000580F30 /* spells2.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = spells2.h; sourceTree = "<group>"; };
		7B237E3E0A8EC9D000580F30 /* spells2.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = spells2.cc; sourceTree = "<group>"; };
		7B237E3F0A8EC9D000580F30 /* mstuff2.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = mstuff2.cc; sourceTree = "<group>"; };
		7B237E400A8EC9D000580F30 /* monstuff.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = monstuff.h; sourceTree = "<group>"; };
		7B237E410A8EC9D000580F30 /* monstuff.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = monstuff.cc; sourceTree = "<group>"; };
		7B237E420A8EC9D000580F30 /* monspeak.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = monspeak.h; sourceTree = "<group>"; };
		7B237E430A8EC9D000580F30 /* delay.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = delay.h; sourceTree = "<group>"; };
		7B237E440A8EC9D000580F30 /* command.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = command.h; sourceTree = "<group>"; };
		7B237E450A8EC9D000580F30 /* spells1.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = spells1.h; sourceTree = "<group>"; };
		7B237E460A8EC9D000580F30 /* spells1.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = spells1.cc; sourceTree = "<group>"; };
		7B237E470A8EC9D000580F30 /* skills2.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = skills2.h; sourceTree = "<group>"; };
		7B237E480A8EC9D000580F30 /* skills2.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = skills2.cc; sourceTree = "<group>"; };
		7B237E490A8EC9D000580F30 /* decks.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = decks.cc; sourceTree = "<group>"; };
		7B237E4A0A8EC9D000580F30 /* describe.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = describe.cc; sourceTree = "<group>"; };
		7B237E4B0A8EC9D000580F30 /* monspeak.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = monspeak.cc; sourceTree = "<group>"; };
		7B237E4C0A8EC9D000580F30 /* monplace.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = monplace.h; sourceTree = "<group>"; };
		7B237E4D0A8EC9D000580F30 /* monplace.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = monplace.cc; sourceTree = "<group>"; };
		7B237E4E0A8EC9D000580F30 /* Kills.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Kills.h; sourceTree = "<group>"; };
		7B237E4F0A8EC9D000580F30 /* Kills.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Kills.cc; sourceTree = "<group>"; };
		7B237E500A8EC9D000580F30 /* files.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = files.h; sourceTree = "<group>"; };
		7B237E510A8EC9D000580F30 /* fight.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = fight.h; sourceTree = "<group>"; };
		7B237E520A8EC9D000580F30 /* effects.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = effects.cc; sourceTree = "<group>"; };
		7B237E530A8EC9D000580F30 /* fight.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = fight.cc; sourceTree = "<group>"; };
		7B237E540A8EC9D000580F30 /* food.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = food.cc; sourceTree = "<group>"; };
		7B237E550A8EC9D000580F30 /* food.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = food.h; sourceTree = "<group>"; };
		7B237E560A8EC9D000580F30 /* clua.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = clua.h; sourceTree = "<group>"; };
		7B237E570A8EC9D000580F30 /* clua.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = clua.cc; sourceTree = "<group>"; };
		7B237E580A8EC9D000580F30 /* cloud.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = cloud.h; sourceTree = "<group>"; };
		7B237E590A8EC9D000580F30 /* cloud.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = cloud.cc; sourceTree = "<group>"; };
		7B237E5A0A8EC9D000580F30 /* items.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = items.cc; sourceTree = "<group>"; };
		7B237E5B0A8EC9D000580F30 /* itemname.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = itemname.h; sourceTree = "<group>"; };
		7B237E5C0A8EC9D000580F30 /* skills.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = skills.h; sourceTree = "<group>"; };
		7B237E5D0A8EC9D000580F30 /* skills.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = skills.cc; sourceTree = "<group>"; };
		7B237E5E0A8EC9D000580F30 /* shopping.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = shopping.h; sourceTree = "<group>"; };
		7B237E5F0A8EC9D000580F30 /* it_use2.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = it_use2.cc; sourceTree = "<group>"; };
		7B237E600A8EC9D000580F30 /* invent.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = invent.h; sourceTree = "<group>"; };
		7B237E610A8EC9D000580F30 /* invent.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = invent.cc; sourceTree = "<group>"; };
		7B237E620A8EC9D000580F30 /* libutil.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = libutil.cc; sourceTree = "<group>"; };
		7B237E630A8EC9D000580F30 /* libunix.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = libunix.h; sourceTree = "<group>"; };
		7B237E640A8EC9D000580F30 /* libunix.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = libunix.cc; sourceTree = "<group>"; };
		7B237E650A8EC9D000580F30 /* abyss.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = abyss.h; sourceTree = "<group>"; };
		7B237E660A8EC9D000580F30 /* delay.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = delay.cc; sourceTree = "<group>"; };
		7B237E670A8EC9D000580F30 /* dungeon.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = dungeon.cc; sourceTree = "<group>"; };
		7B237E680A8EC9D000580F30 /* debug.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = debug.cc; sourceTree = "<group>"; };
		7B237E690A8EC9D000580F30 /* mt19937ar.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = mt19937ar.h; sourceTree = "<group>"; };
		7B237E6A0A8EC9D000580F30 /* mt19937ar.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = mt19937ar.cc; sourceTree = "<group>"; };
		7B237E6B0A8EC9D000580F30 /* mstuff2.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = mstuff2.h; sourceTree = "<group>"; };
		7B352E9D0B00183400CABB32 /* mapdef.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = mapdef.cc; sourceTree = "<group>"; };
		7B352E9E0B00183400CABB32 /* mapdef.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = mapdef.h; sourceTree = "<group>"; };
		7B352ED10B001B9E00CABB32 /* levcomp.lpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.lex; name = levcomp.lpp; path = util/levcomp.lpp; sourceTree = "<group>"; };
		7B352ED20B001B9E00CABB32 /* levcomp.ypp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.yacc; name = levcomp.ypp; path = util/levcomp.ypp; sourceTree = "<group>"; };
		7B3B07560BD13A8100F2980E /* libreadline.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libreadline.dylib; path = /usr/lib/libreadline.dylib; sourceTree = "<absolute>"; };
		7B3B075F0BD13AF000F2980E /* libncurses.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libncurses.dylib; path = /usr/lib/libncurses.dylib; sourceTree = "<absolute>"; };
		7B4896600CD3A5D2004A5F43 /* mgrow.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mgrow.cc; sourceTree = SOURCE_ROOT; };
		7B4896610CD3A5D2004A5F43 /* mgrow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mgrow.h; sourceTree = SOURCE_ROOT; };
		7B54B51A0CA8217900612805 /* state.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = state.cc; sourceTree = SOURCE_ROOT; };
		7B6164240C9CA8E80054B3D9 /* mpr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = mpr.h; sourceTree = SOURCE_ROOT; };
		7B6164250C9CA8E80054B3D9 /* place.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = place.cc; sourceTree = SOURCE_ROOT; };
		7B6164260C9CA8E80054B3D9 /* place.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = place.h; sourceTree = SOURCE_ROOT; };
		7B6164270C9CA8E80054B3D9 /* ray.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ray.h; sourceTree = SOURCE_ROOT; };
		7B6164280C9CA8E80054B3D9 /* state.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = state.h; sourceTree = SOURCE_ROOT; };
		7B6164290C9CA8E80054B3D9 /* terrain.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = terrain.cc; sourceTree = SOURCE_ROOT; };
		7B61642A0C9CA8E80054B3D9 /* terrain.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = terrain.h; sourceTree = SOURCE_ROOT; };
		7B61642B0C9CA8E80054B3D9 /* traps.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = traps.cc; sourceTree = SOURCE_ROOT; };
		7B61642C0C9CA8E80054B3D9 /* traps.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = traps.h; sourceTree = SOURCE_ROOT; };
		7B973FFB0BE3AA8400AAE35B /* database.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = database.cc; sourceTree = "<group>"; };
		7B973FFC0BE3AA8400AAE35B /* database.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = database.h; sourceTree = "<group>"; };
		7B9740050BE3AC8000AAE35B /* makeitem.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = makeitem.cc; sourceTree = "<group>"; };
		7B9740060BE3AC8000AAE35B /* makeitem.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = makeitem.h; sourceTree = "<group>"; };
		7BA3DBB90B3D90A700B5B3D7 /* branch.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = branch.cc; sourceTree = "<group>"; };
		7BA3DBBA0B3D90A700B5B3D7 /* branch.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = branch.h; sourceTree = "<group>"; };
		7BB0A2280CB735C00034A741 /* xom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xom.h; sourceTree = SOURCE_ROOT; };
		7BC222E50ABBB286003A7D9A /* itemprop.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = itemprop.cc; sourceTree = "<group>"; };
		7BC222E60ABBB286003A7D9A /* itemprop.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = itemprop.h; sourceTree = "<group>"; };
		7BD2221E0CC2D51300B475D8 /* store.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = store.h; sourceTree = SOURCE_ROOT; };
		7BD2221F0CC2D51300B475D8 /* store.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = store.cc; sourceTree = SOURCE_ROOT; };
		7BD75A330AC214A200B74F6E /* notes.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = notes.cc; sourceTree = "<group>"; };
		7BD75A340AC214A200B74F6E /* notes.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = notes.h; sourceTree = "<group>"; };
		7BDEBB280BB4CB0B008DF39F /* mtransit.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = mtransit.cc; sourceTree = "<group>"; };
		7BDEBB2A0BB4CB1D008DF39F /* ghost.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ghost.cc; sourceTree = "<group>"; };
		7BDEBB2C0BB4CB32008DF39F /* mtransit.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = mtransit.h; sourceTree = "<group>"; };
		7BDEBB2F0BB4CB5C008DF39F /* tutorial.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = tutorial.cc; sourceTree = "<group>"; };
		7BDEBB300BB4CB5C008DF39F /* tutorial.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = tutorial.h; sourceTree = "<group>"; };
		7BDEBB340BB4CB93008DF39F /* format.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = format.cc; sourceTree = "<group>"; };
		7BDEBB350BB4CB93008DF39F /* format.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = format.h; sourceTree = "<group>"; };
		7BF855600C9C912B00B7C520 /* cio.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = cio.cc; sourceTree = SOURCE_ROOT; };
		7BF855610C9C912B00B7C520 /* cio.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = cio.h; sourceTree = SOURCE_ROOT; };
		7BF855650C9C914D00B7C520 /* mapmark.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = mapmark.cc; sourceTree = SOURCE_ROOT; };
		7BF855660C9C914D00B7C520 /* mapmark.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = mapmark.h; sourceTree = SOURCE_ROOT; };
		7BF855690C9C916800B7C520 /* dgnevent.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = dgnevent.cc; sourceTree = SOURCE_ROOT; };
		7BF8556A0C9C916800B7C520 /* dgnevent.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = dgnevent.h; sourceTree = SOURCE_ROOT; };
		7BF8556E0C9C919100B7C520 /* luadgn.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = luadgn.cc; sourceTree = SOURCE_ROOT; };
		7BF8556F0C9C919100B7C520 /* luadgn.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = luadgn.h; sourceTree = SOURCE_ROOT; };
		8DD76FB20486AB0100D96B5E /* crawl */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = crawl; sourceTree = BUILT_PRODUCTS_DIR; };
		93B134610F255926007DB230 /* version.cc */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 4; path = version.cc; sourceTree = SOURCE_ROOT; };
		93B134C20F256113007DB230 /* arena.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = arena.cc; sourceTree = "<group>"; };
		B0274AC2106AD957004F7B39 /* randart.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = randart.cc; sourceTree = "<group>"; };
		B0274AC3106AD957004F7B39 /* randart.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = randart.h; sourceTree = "<group>"; };
		B02C574310670C63006AC96D /* libgui.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = libgui.cc; sourceTree = "<group>"; };
		B02C574410670C63006AC96D /* libgui.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = libgui.h; sourceTree = "<group>"; };
		B02C575F10670ED2006AC96D /* SDLMain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLMain.h; sourceTree = "<group>"; };
		B02C576010670ED2006AC96D /* SDLMain.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLMain.m; sourceTree = "<group>"; };
		B02C57901067129A006AC96D /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; };
		B090C2EE10671F8900AE855D /* dngn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = dngn.png; path = rltiles/dngn.png; sourceTree = "<group>"; };
		B090C2F010671F8900AE855D /* main.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = main.png; path = rltiles/main.png; sourceTree = "<group>"; };
		B090C2F110671F8900AE855D /* player.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = player.png; path = rltiles/player.png; sourceTree = "<group>"; };
		B0B5DF201066ED0E0020B21F /* libpng.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = libpng.framework; path = /Library/Frameworks/libpng.framework; sourceTree = "<absolute>"; };
		B0B5DF221066ED0E0020B21F /* SDL_image.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL_image.framework; path = /Library/Frameworks/SDL_image.framework; sourceTree = "<absolute>"; };
		B0B5DF241066ED0E0020B21F /* SDL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL.framework; path = /Library/Frameworks/SDL.framework; sourceTree = "<absolute>"; };
		B0B5DFC91066F9A80020B21F /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = /System/Library/Frameworks/OpenGL.framework; sourceTree = "<absolute>"; };
		B0B5DFD21066FA240020B21F /* tiledef_defines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tiledef_defines.h; path = rltiles/tiledef_defines.h; sourceTree = "<group>"; };
		B0B5DFD31066FA240020B21F /* tiledef-dngn.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = "tiledef-dngn.cc"; path = "rltiles/tiledef-dngn.cc"; sourceTree = "<group>"; };
		B0B5DFD41066FA240020B21F /* tiledef-dngn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "tiledef-dngn.h"; path = "rltiles/tiledef-dngn.h"; sourceTree = "<group>"; };
		B0B5DFD71066FA240020B21F /* tiledef-main.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = "tiledef-main.cc"; path = "rltiles/tiledef-main.cc"; sourceTree = "<group>"; };
		B0B5DFD81066FA240020B21F /* tiledef-main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "tiledef-main.h"; path = "rltiles/tiledef-main.h"; sourceTree = "<group>"; };
		B0B5DFD91066FA240020B21F /* tiledef-player.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = "tiledef-player.cc"; path = "rltiles/tiledef-player.cc"; sourceTree = "<group>"; };
		B0B5DFDA1066FA240020B21F /* tiledef-player.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "tiledef-player.h"; path = "rltiles/tiledef-player.h"; sourceTree = "<group>"; };
		B0B5E17B106706E40020B21F /* Freetype2.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Freetype2.framework; path = /Library/Frameworks/Freetype2.framework; sourceTree = "<absolute>"; };
		D25C91860FF0368E00D9E8AD /* main.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = main.cc; path = rltiles/tool/main.cc; sourceTree = "<group>"; };
		D25C91870FF0368E00D9E8AD /* tile.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = tile.cc; path = rltiles/tool/tile.cc; sourceTree = "<group>"; };
		D25C91880FF0368E00D9E8AD /* tile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tile.h; path = rltiles/tool/tile.h; sourceTree = "<group>"; };
		D25C91890FF0368E00D9E8AD /* tile_colour.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = tile_colour.cc; path = rltiles/tool/tile_colour.cc; sourceTree = "<group>"; };
		D25C918A0FF0368E00D9E8AD /* tile_colour.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tile_colour.h; path = rltiles/tool/tile_colour.h; sourceTree = "<group>"; };
		D25C918B0FF0368E00D9E8AD /* tile_convert.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = tile_convert.cc; path = rltiles/tool/tile_convert.cc; sourceTree = "<group>"; };
		D25C918C0FF0368E00D9E8AD /* tile_list_processor.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = tile_list_processor.cc; path = rltiles/tool/tile_list_processor.cc; sourceTree = "<group>"; };
		D25C918D0FF0368E00D9E8AD /* tile_list_processor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tile_list_processor.h; path = rltiles/tool/tile_list_processor.h; sourceTree = "<group>"; };
		D25C918E0FF0368E00D9E8AD /* tile_page.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = tile_page.cc; path = rltiles/tool/tile_page.cc; sourceTree = "<group>"; };
		D25C918F0FF0368E00D9E8AD /* tile_page.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tile_page.h; path = rltiles/tool/tile_page.h; sourceTree = "<group>"; };
		D2660C000FF0749200986331 /* dc-dngn.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = "dc-dngn.txt"; path = "rltiles/dc-dngn.txt"; sourceTree = "<group>"; };
		D2660C010FF0749200986331 /* dc-main.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = "dc-main.txt"; path = "rltiles/dc-main.txt"; sourceTree = "<group>"; };
		D2660C020FF0749200986331 /* dc-player.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = "dc-player.txt"; path = "rltiles/dc-player.txt"; sourceTree = "<group>"; };
		D2660E030FF0864B00986331 /* crawl */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = crawl; sourceTree = BUILT_PRODUCTS_DIR; };
		D2660E070FF0868B00986331 /* tile2.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tile2.cc; sourceTree = "<group>"; };
		D2660E080FF0868B00986331 /* tilebuf.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tilebuf.cc; sourceTree = "<group>"; };
		D2660E090FF0868B00986331 /* tilebuf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tilebuf.h; sourceTree = "<group>"; };
		D2660E0A0FF0868B00986331 /* tilefont.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tilefont.cc; sourceTree = "<group>"; };
		D2660E0B0FF0868B00986331 /* tilefont.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tilefont.h; sourceTree = "<group>"; };
		D2660E0C0FF0868B00986331 /* tilemcache.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tilemcache.cc; sourceTree = "<group>"; };
		D2660E0D0FF0868B00986331 /* tilemcache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tilemcache.h; sourceTree = "<group>"; };
		D2660E0E0FF0868B00986331 /* tilepick.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tilepick.cc; sourceTree = "<group>"; };
		D2660E0F0FF0868B00986331 /* tilereg.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tilereg.cc; sourceTree = "<group>"; };
		D2660E100FF0868B00986331 /* tilereg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tilereg.h; sourceTree = "<group>"; };
		D2660E110FF0868B00986331 /* tiles.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tiles.h; sourceTree = "<group>"; };
		D2660E120FF0868B00986331 /* tilesdl.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tilesdl.cc; sourceTree = "<group>"; };
		D2660E130FF0868B00986331 /* tilesdl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tilesdl.h; sourceTree = "<group>"; };
		D2660E140FF0868B00986331 /* tiletex.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tiletex.cc; sourceTree = "<group>"; };
		D2660E150FF0868B00986331 /* tiletex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tiletex.h; sourceTree = "<group>"; };
		D274AC530FE66EEC00C9C1AE /* crash-u.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "crash-u.cc"; sourceTree = "<group>"; };
		D274AC540FE66EEC00C9C1AE /* crash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = crash.h; sourceTree = "<group>"; };
		D274AC580FE66EFC00C9C1AE /* spl-mis.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "spl-mis.cc"; sourceTree = "<group>"; };
		D274AC590FE66EFC00C9C1AE /* spl-mis.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "spl-mis.h"; sourceTree = "<group>"; };
		D2A696BC0DA29D4E00FDDE82 /* Crawl.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; name = Crawl.icns; path = mac/Crawl.icns; sourceTree = "<group>"; };
		D2AE25EE0DA2624E00E15489 /* crawl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.perl; name = crawl; path = mac/crawl; sourceTree = "<group>"; };
		D2F271F60DA1C58C00445FE9 /* Crawl.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Crawl.app; sourceTree = BUILT_PRODUCTS_DIR; };
		D2F271F80DA1C58C00445FE9 /* Crawl-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Crawl-Info.plist"; sourceTree = "<group>"; };
		D2F271FE0DA1C5AD00445FE9 /* dat */ = {isa = PBXFileReference; lastKnownFileType = folder; path = dat; sourceTree = "<group>"; };
		D2F2723F0DA1C61600445FE9 /* docs */ = {isa = PBXFileReference; lastKnownFileType = folder; name = docs; path = ../docs; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		7B0EFD400BD12E9200002671 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		8DD76FAD0486AB0100D96B5E /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				7B0EFDD80BD1374900002671 /* liblua.a in Frameworks */,
				7B3B075B0BD13AAB00F2980E /* libreadline.dylib in Frameworks */,
				7B3B07600BD13AF000F2980E /* libncurses.dylib in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		D2660DA40FF0864B00986331 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				D2660DA50FF0864B00986331 /* liblua.a in Frameworks */,
				D2660DA60FF0864B00986331 /* libreadline.dylib in Frameworks */,
				D2660DA70FF0864B00986331 /* libncurses.dylib in Frameworks */,
				B0B5DF211066ED0E0020B21F /* libpng.framework in Frameworks */,
				B0B5DF231066ED0E0020B21F /* SDL_image.framework in Frameworks */,
				B0B5DF251066ED0E0020B21F /* SDL.framework in Frameworks */,
				B0B5DFCD1066F9B30020B21F /* OpenGL.framework in Frameworks */,
				B0B5E17F106706EE0020B21F /* Freetype2.framework in Frameworks */,
				B02C57911067129A006AC96D /* AppKit.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		08FB7794FE84155DC02AAC07 /* Crawl */ = {
			isa = PBXGroup;
			children = (
				D25C91990FF037A000D9E8AD /* Frameworks */,
				08FB7795FE84155DC02AAC07 /* Source */,
				7B352F1B0B0022C900CABB32 /* Resources */,
				7B3B07610BD13B1700F2980E /* Libraries */,
				C6A0FF2B0290797F04C91782 /* Documentation */,
				1AB674ADFE9D54B511CA2CBB /* Products */,
				D2F271F80DA1C58C00445FE9 /* Crawl-Info.plist */,
				D2AE25EC0DA2621100E15489 /* Mac */,
			);
			name = Crawl;
			sourceTree = "<group>";
		};
		08FB7795FE84155DC02AAC07 /* Source */ = {
			isa = PBXGroup;
			children = (
				7B352EF00B001F5B00CABB32 /* Crawl */,
				7B352E950B0017CF00CABB32 /* Levcomp */,
				7B0EFD4B0BD12EEA00002671 /* Lua */,
				7B352EF30B001FA700CABB32 /* Shared */,
				D25C917A0FF035D100D9E8AD /* rltiles */,
				D25C91790FF035AF00D9E8AD /* Tiles */,
			);
			name = Source;
			sourceTree = "<group>";
		};
		1AB674ADFE9D54B511CA2CBB /* Products */ = {
			isa = PBXGroup;
			children = (
				8DD76FB20486AB0100D96B5E /* crawl */,
				7B0EFD420BD12E9200002671 /* liblua.a */,
				D2F271F60DA1C58C00445FE9 /* Crawl.app */,
				D2660E030FF0864B00986331 /* crawl */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		7B0EFD4B0BD12EEA00002671 /* Lua */ = {
			isa = PBXGroup;
			children = (
				7B0EFD4C0BD12EEB00002671 /* lapi.c */,
				7B0EFD4D0BD12EEB00002671 /* lapi.h */,
				7B0EFD4E0BD12EEB00002671 /* lauxlib.c */,
				7B0EFD4F0BD12EEB00002671 /* lauxlib.h */,
				7B0EFD500BD12EEB00002671 /* lbaselib.c */,
				7B0EFD510BD12EEB00002671 /* lcode.c */,
				7B0EFD520BD12EEB00002671 /* lcode.h */,
				7B0EFD530BD12EEB00002671 /* ldblib.c */,
				7B0EFD540BD12EEB00002671 /* ldebug.c */,
				7B0EFD550BD12EEB00002671 /* ldebug.h */,
				7B0EFD560BD12EEB00002671 /* ldo.c */,
				7B0EFD570BD12EEB00002671 /* ldo.h */,
				7B0EFD580BD12EEB00002671 /* ldump.c */,
				7B0EFD590BD12EEB00002671 /* lfunc.c */,
				7B0EFD5A0BD12EEB00002671 /* lfunc.h */,
				7B0EFD5B0BD12EEB00002671 /* lgc.c */,
				7B0EFD5C0BD12EEB00002671 /* lgc.h */,
				7B0EFD5D0BD12EEB00002671 /* linit.c */,
				7B0EFD5E0BD12EEB00002671 /* liolib.c */,
				7B0EFD5F0BD12EEB00002671 /* llex.c */,
				7B0EFD600BD12EEB00002671 /* llex.h */,
				7B0EFD610BD12EEB00002671 /* llimits.h */,
				7B0EFD620BD12EEB00002671 /* lmathlib.c */,
				7B0EFD630BD12EEB00002671 /* lmem.c */,
				7B0EFD640BD12EEB00002671 /* lmem.h */,
				7B0EFD650BD12EEB00002671 /* loadlib.c */,
				7B0EFD660BD12EEB00002671 /* lobject.c */,
				7B0EFD670BD12EEB00002671 /* lobject.h */,
				7B0EFD680BD12EEB00002671 /* lopcodes.c */,
				7B0EFD690BD12EEB00002671 /* lopcodes.h */,
				7B0EFD6A0BD12EEB00002671 /* loslib.c */,
				7B0EFD6B0BD12EEB00002671 /* lparser.c */,
				7B0EFD6C0BD12EEB00002671 /* lparser.h */,
				7B0EFD6D0BD12EEB00002671 /* lstate.c */,
				7B0EFD6E0BD12EEB00002671 /* lstate.h */,
				7B0EFD6F0BD12EEB00002671 /* lstring.c */,
				7B0EFD700BD12EEB00002671 /* lstring.h */,
				7B0EFD710BD12EEB00002671 /* lstrlib.c */,
				7B0EFD720BD12EEB00002671 /* ltable.c */,
				7B0EFD730BD12EEB00002671 /* ltable.h */,
				7B0EFD740BD12EEB00002671 /* ltablib.c */,
				7B0EFD750BD12EEB00002671 /* ltm.c */,
				7B0EFD760BD12EEB00002671 /* ltm.h */,
				7B0EFD770BD12EEB00002671 /* lua.c */,
				7B0EFD780BD12EEB00002671 /* lua.h */,
				7B0EFD790BD12EEB00002671 /* luac.c */,
				7B0EFD7A0BD12EEB00002671 /* luaconf.h */,
				7B0EFD7B0BD12EEB00002671 /* lualib.h */,
				7B0EFD7C0BD12EEB00002671 /* lundump.c */,
				7B0EFD7D0BD12EEB00002671 /* lundump.h */,
				7B0EFD7E0BD12EEB00002671 /* lvm.c */,
				7B0EFD7F0BD12EEB00002671 /* lvm.h */,
				7B0EFD800BD12EEB00002671 /* lzio.c */,
				7B0EFD810BD12EEB00002671 /* lzio.h */,
				7B0EFD830BD12EEB00002671 /* print.c */,
			);
			name = Lua;
			path = util/lua/src;
			sourceTree = "<group>";
		};
		7B352E950B0017CF00CABB32 /* Levcomp */ = {
			isa = PBXGroup;
			children = (
				7B352ED10B001B9E00CABB32 /* levcomp.lpp */,
				7B352ED20B001B9E00CABB32 /* levcomp.ypp */,
			);
			name = Levcomp;
			sourceTree = "<group>";
		};
		7B352EF00B001F5B00CABB32 /* Crawl */ = {
			isa = PBXGroup;
			children = (
				7B237E0D0A8EC9D000580F30 /* abl-show.cc */,
				7B237E290A8EC9D000580F30 /* abl-show.h */,
				7B237E280A8EC9D000580F30 /* abyss.cc */,
				7B237E650A8EC9D000580F30 /* abyss.h */,
				93B134C20F256113007DB230 /* arena.cc */,
				7B237E270A8EC9D000580F30 /* acr.cc */,
				7B237E2C0A8EC9D000580F30 /* beam.cc */,
				7B237E2D0A8EC9D000580F30 /* beam.h */,
				7BA3DBB90B3D90A700B5B3D7 /* branch.cc */,
				7BA3DBBA0B3D90A700B5B3D7 /* branch.h */,
				7B237E2A0A8EC9D000580F30 /* chardump.cc */,
				7B237E2B0A8EC9D000580F30 /* chardump.h */,
				7BF855600C9C912B00B7C520 /* cio.cc */,
				7BF855610C9C912B00B7C520 /* cio.h */,
				7B237E590A8EC9D000580F30 /* cloud.cc */,
				7B237E580A8EC9D000580F30 /* cloud.h */,
				7B237E570A8EC9D000580F30 /* clua.cc */,
				7B237E560A8EC9D000580F30 /* clua.h */,
				7B237E040A8EC9D000580F30 /* command.cc */,
				7B237E440A8EC9D000580F30 /* command.h */,
				D274AC530FE66EEC00C9C1AE /* crash-u.cc */,
				D274AC540FE66EEC00C9C1AE /* crash.h */,
				7B973FFB0BE3AA8400AAE35B /* database.cc */,
				7B973FFC0BE3AA8400AAE35B /* database.h */,
				7B237E680A8EC9D000580F30 /* debug.cc */,
				7B237E1A0A8EC9D000580F30 /* debug.h */,
				7B237E490A8EC9D000580F30 /* decks.cc */,
				7B237E1C0A8EC9D000580F30 /* decks.h */,
				7B237E660A8EC9D000580F30 /* delay.cc */,
				7B237E430A8EC9D000580F30 /* delay.h */,
				7B237E4A0A8EC9D000580F30 /* describe.cc */,
				7B237E050A8EC9D000580F30 /* describe.h */,
				7BF855690C9C916800B7C520 /* dgnevent.cc */,
				7BF8556A0C9C916800B7C520 /* dgnevent.h */,
				7B237E0F0A8EC9D000580F30 /* directn.cc */,
				7B237E1B0A8EC9D000580F30 /* directn.h */,
				7B237E670A8EC9D000580F30 /* dungeon.cc */,
				7B237E100A8EC9D000580F30 /* dungeon.h */,
				7B237E520A8EC9D000580F30 /* effects.cc */,
				7B237E0C0A8EC9D000580F30 /* effects.h */,
				7B237E530A8EC9D000580F30 /* fight.cc */,
				7B237E510A8EC9D000580F30 /* fight.h */,
				7B237E0E0A8EC9D000580F30 /* files.cc */,
				7B237E500A8EC9D000580F30 /* files.h */,
				7B237E540A8EC9D000580F30 /* food.cc */,
				7B237E550A8EC9D000580F30 /* food.h */,
				7BDEBB340BB4CB93008DF39F /* format.cc */,
				7BDEBB350BB4CB93008DF39F /* format.h */,
				7BDEBB2A0BB4CB1D008DF39F /* ghost.cc */,
				7B237DF30A8EC9D000580F30 /* hiscores.cc */,
				7B237DF20A8EC9D000580F30 /* hiscores.h */,
				7B237DF10A8EC9D000580F30 /* initfile.cc */,
				7B237DEC0A8EC9D000580F30 /* initfile.h */,
				7B237E610A8EC9D000580F30 /* invent.cc */,
				7B237E600A8EC9D000580F30 /* invent.h */,
				7B237E5F0A8EC9D000580F30 /* it_use2.cc */,
				7B237E020A8EC9D000580F30 /* it_use2.h */,
				7B237E010A8EC9D000580F30 /* it_use3.cc */,
				7B237E000A8EC9D000580F30 /* it_use3.h */,
				7B237E260A8EC9D000580F30 /* item_use.cc */,
				7B237DF00A8EC9D000580F30 /* item_use.h */,
				7B237E030A8EC9D000580F30 /* itemname.cc */,
				7B237E5B0A8EC9D000580F30 /* itemname.h */,
				7BC222E50ABBB286003A7D9A /* itemprop.cc */,
				7BC222E60ABBB286003A7D9A /* itemprop.h */,
				7B237E5A0A8EC9D000580F30 /* items.cc */,
				7B237DF80A8EC9D000580F30 /* items.h */,
				7B237E4F0A8EC9D000580F30 /* Kills.cc */,
				7B237E4E0A8EC9D000580F30 /* Kills.h */,
				7B237DF70A8EC9D000580F30 /* lev-pand.cc */,
				7B237DF60A8EC9D000580F30 /* lev-pand.h */,
				7B237E640A8EC9D000580F30 /* libunix.cc */,
				7B237E630A8EC9D000580F30 /* libunix.h */,
				7B237E620A8EC9D000580F30 /* libutil.cc */,
				7B237E250A8EC9D000580F30 /* libutil.h */,
				7BF8556E0C9C919100B7C520 /* luadgn.cc */,
				7BF8556F0C9C919100B7C520 /* luadgn.h */,
				7B237E380A8EC9D000580F30 /* macro.cc */,
				7B237E190A8EC9D000580F30 /* macro.h */,
				7B9740050BE3AC8000AAE35B /* makeitem.cc */,
				7B9740060BE3AC8000AAE35B /* makeitem.h */,
				7BF855650C9C914D00B7C520 /* mapmark.cc */,
				7BF855660C9C914D00B7C520 /* mapmark.h */,
				7B237DE60A8EC9D000580F30 /* maps.cc */,
				7B237DE50A8EC9D000580F30 /* maps.h */,
				7B237E370A8EC9D000580F30 /* menu.cc */,
				7B237E360A8EC9D000580F30 /* menu.h */,
				7B237E350A8EC9D000580F30 /* message.cc */,
				7B237DFD0A8EC9D000580F30 /* message.h */,
				7B4896600CD3A5D2004A5F43 /* mgrow.cc */,
				7B4896610CD3A5D2004A5F43 /* mgrow.h */,
				7B237DFC0A8EC9D000580F30 /* misc.cc */,
				7B237DE90A8EC9D000580F30 /* misc.h */,
				7B237DE80A8EC9D000580F30 /* mon-pick.cc */,
				7B237DE70A8EC9D000580F30 /* mon-pick.h */,
				7B237DFF0A8EC9D000580F30 /* mon-util.cc */,
				7B237DFE0A8EC9D000580F30 /* mon-util.h */,
				7B237E4D0A8EC9D000580F30 /* monplace.cc */,
				7B237E4C0A8EC9D000580F30 /* monplace.h */,
				7B237E4B0A8EC9D000580F30 /* monspeak.cc */,
				7B237E420A8EC9D000580F30 /* monspeak.h */,
				7B237E410A8EC9D000580F30 /* monstuff.cc */,
				7B237E400A8EC9D000580F30 /* monstuff.h */,
				7B6164240C9CA8E80054B3D9 /* mpr.h */,
				7B237E3F0A8EC9D000580F30 /* mstuff2.cc */,
				7B237E6B0A8EC9D000580F30 /* mstuff2.h */,
				7B237E6A0A8EC9D000580F30 /* mt19937ar.cc */,
				7B237E690A8EC9D000580F30 /* mt19937ar.h */,
				7BDEBB280BB4CB0B008DF39F /* mtransit.cc */,
				7BDEBB2C0BB4CB32008DF39F /* mtransit.h */,
				7B237DFB0A8EC9D000580F30 /* mutation.cc */,
				7B237DFA0A8EC9D000580F30 /* mutation.h */,
				7B237DF90A8EC9D000580F30 /* newgame.cc */,
				7B237E340A8EC9D000580F30 /* newgame.h */,
				7BD75A330AC214A200B74F6E /* notes.cc */,
				7BD75A340AC214A200B74F6E /* notes.h */,
				7B237E330A8EC9D000580F30 /* ouch.cc */,
				7B237E320A8EC9D000580F30 /* ouch.h */,
				7B237E310A8EC9D000580F30 /* output.cc */,
				7B237DEF0A8EC9D000580F30 /* output.h */,
				7B237DEE0A8EC9D000580F30 /* overmap.cc */,
				7B237DED0A8EC9D000580F30 /* overmap.h */,
				7B6164250C9CA8E80054B3D9 /* place.cc */,
				7B6164260C9CA8E80054B3D9 /* place.h */,
				7B237E0B0A8EC9D000580F30 /* player.cc */,
				7B237E0A0A8EC9D000580F30 /* player.h */,
				6232EBE00DACA55C004F7E9C /* quiver.cc */,
				6232EBE10DACA55C004F7E9C /* quiver.h */,
				B0274AC2106AD957004F7B39 /* randart.cc */,
				B0274AC3106AD957004F7B39 /* randart.h */,
				7B6164270C9CA8E80054B3D9 /* ray.h */,
				7B237E3B0A8EC9D000580F30 /* religion.cc */,
				7B237E3A0A8EC9D000580F30 /* religion.h */,
				7B237E390A8EC9D000580F30 /* shopping.cc */,
				7B237E5E0A8EC9D000580F30 /* shopping.h */,
				7B237E5D0A8EC9D000580F30 /* skills.cc */,
				7B237E5C0A8EC9D000580F30 /* skills.h */,
				7B237E480A8EC9D000580F30 /* skills2.cc */,
				7B237E470A8EC9D000580F30 /* skills2.h */,
				7B237E460A8EC9D000580F30 /* spells1.cc */,
				7B237E450A8EC9D000580F30 /* spells1.h */,
				7B237E3E0A8EC9D000580F30 /* spells2.cc */,
				7B237E3D0A8EC9D000580F30 /* spells2.h */,
				7B237E3C0A8EC9D000580F30 /* spells3.cc */,
				7B237E180A8EC9D000580F30 /* spells3.h */,
				7B237E170A8EC9D000580F30 /* spells4.cc */,
				7B237E160A8EC9D000580F30 /* spells4.h */,
				7B237E150A8EC9D000580F30 /* spl-book.cc */,
				7B237E300A8EC9D000580F30 /* spl-book.h */,
				7B237E2F0A8EC9D000580F30 /* spl-cast.cc */,
				7B237E2E0A8EC9D000580F30 /* spl-cast.h */,
				D274AC580FE66EFC00C9C1AE /* spl-mis.cc */,
				D274AC590FE66EFC00C9C1AE /* spl-mis.h */,
				7B237E070A8EC9D000580F30 /* spl-util.cc */,
				7B237E060A8EC9D000580F30 /* spl-util.h */,
				7B237E200A8EC9D000580F30 /* stash.cc */,
				7B237E1F0A8EC9D000580F30 /* stash.h */,
				7B54B51A0CA8217900612805 /* state.cc */,
				7B6164280C9CA8E80054B3D9 /* state.h */,
				7BD2221E0CC2D51300B475D8 /* store.h */,
				7BD2221F0CC2D51300B475D8 /* store.cc */,
				7B237E1E0A8EC9D000580F30 /* stuff.cc */,
				7B237E1D0A8EC9D000580F30 /* stuff.h */,
				7B237E240A8EC9D000580F30 /* tags.cc */,
				7B237E230A8EC9D000580F30 /* tags.h */,
				7B6164290C9CA8E80054B3D9 /* terrain.cc */,
				7B61642A0C9CA8E80054B3D9 /* terrain.h */,
				7B237E220A8EC9D000580F30 /* transfor.cc */,
				7B237E210A8EC9D000580F30 /* transfor.h */,
				7B61642B0C9CA8E80054B3D9 /* traps.cc */,
				7B61642C0C9CA8E80054B3D9 /* traps.h */,
				7B237DF50A8EC9D000580F30 /* travel.cc */,
				7B237DF40A8EC9D000580F30 /* travel.h */,
				93B134610F255926007DB230 /* version.cc */,
				7BDEBB2F0BB4CB5C008DF39F /* tutorial.cc */,
				7BDEBB300BB4CB5C008DF39F /* tutorial.h */,
				7B237E140A8EC9D000580F30 /* view.cc */,
				7B237E130A8EC9D000580F30 /* view.h */,
				4CEF15890C128CA5002C7D7A /* xom.cc */,
				7BB0A2280CB735C00034A741 /* xom.h */,
			);
			name = Crawl;
			sourceTree = "<group>";
		};
		7B352EF30B001FA700CABB32 /* Shared */ = {
			isa = PBXGroup;
			children = (
				7B352E9D0B00183400CABB32 /* mapdef.cc */,
				7B352E9E0B00183400CABB32 /* mapdef.h */,
			);
			name = Shared;
			sourceTree = "<group>";
		};
		7B352F1B0B0022C900CABB32 /* Resources */ = {
			isa = PBXGroup;
			children = (
				B090C2EE10671F8900AE855D /* dngn.png */,
				B090C2F010671F8900AE855D /* main.png */,
				B090C2F110671F8900AE855D /* player.png */,
				D2F2723F0DA1C61600445FE9 /* docs */,
				D2F271FE0DA1C5AD00445FE9 /* dat */,
			);
			name = Resources;
			sourceTree = "<group>";
		};
		7B3B07610BD13B1700F2980E /* Libraries */ = {
			isa = PBXGroup;
			children = (
				7B3B075F0BD13AF000F2980E /* libncurses.dylib */,
				7B3B07560BD13A8100F2980E /* libreadline.dylib */,
			);
			name = Libraries;
			sourceTree = "<group>";
		};
		C6A0FF2B0290797F04C91782 /* Documentation */ = {
			isa = PBXGroup;
			children = (
			);
			name = Documentation;
			sourceTree = "<group>";
		};
		D25C91790FF035AF00D9E8AD /* Tiles */ = {
			isa = PBXGroup;
			children = (
				B02C575F10670ED2006AC96D /* SDLMain.h */,
				B02C576010670ED2006AC96D /* SDLMain.m */,
				B02C574310670C63006AC96D /* libgui.cc */,
				B02C574410670C63006AC96D /* libgui.h */,
				D2660E070FF0868B00986331 /* tile2.cc */,
				D2660E080FF0868B00986331 /* tilebuf.cc */,
				D2660E090FF0868B00986331 /* tilebuf.h */,
				D2660E0A0FF0868B00986331 /* tilefont.cc */,
				D2660E0B0FF0868B00986331 /* tilefont.h */,
				D2660E0C0FF0868B00986331 /* tilemcache.cc */,
				D2660E0D0FF0868B00986331 /* tilemcache.h */,
				D2660E0E0FF0868B00986331 /* tilepick.cc */,
				D2660E0F0FF0868B00986331 /* tilereg.cc */,
				D2660E100FF0868B00986331 /* tilereg.h */,
				D2660E110FF0868B00986331 /* tiles.h */,
				D2660E120FF0868B00986331 /* tilesdl.cc */,
				D2660E130FF0868B00986331 /* tilesdl.h */,
				D2660E140FF0868B00986331 /* tiletex.cc */,
				D2660E150FF0868B00986331 /* tiletex.h */,
			);
			name = Tiles;
			sourceTree = "<group>";
		};
		D25C917A0FF035D100D9E8AD /* rltiles */ = {
			isa = PBXGroup;
			children = (
				B0B5DFD21066FA240020B21F /* tiledef_defines.h */,
				B0B5DFD31066FA240020B21F /* tiledef-dngn.cc */,
				B0B5DFD41066FA240020B21F /* tiledef-dngn.h */,
				B0B5DFD71066FA240020B21F /* tiledef-main.cc */,
				B0B5DFD81066FA240020B21F /* tiledef-main.h */,
				B0B5DFD91066FA240020B21F /* tiledef-player.cc */,
				B0B5DFDA1066FA240020B21F /* tiledef-player.h */,
				D2660C000FF0749200986331 /* dc-dngn.txt */,
				D2660C010FF0749200986331 /* dc-main.txt */,
				D2660C020FF0749200986331 /* dc-player.txt */,
				D25C91840FF0366F00D9E8AD /* tool */,
			);
			name = rltiles;
			sourceTree = "<group>";
		};
		D25C91840FF0366F00D9E8AD /* tool */ = {
			isa = PBXGroup;
			children = (
				D25C91860FF0368E00D9E8AD /* main.cc */,
				D25C91870FF0368E00D9E8AD /* tile.cc */,
				D25C91880FF0368E00D9E8AD /* tile.h */,
				D25C91890FF0368E00D9E8AD /* tile_colour.cc */,
				D25C918A0FF0368E00D9E8AD /* tile_colour.h */,
				D25C918B0FF0368E00D9E8AD /* tile_convert.cc */,
				D25C918C0FF0368E00D9E8AD /* tile_list_processor.cc */,
				D25C918D0FF0368E00D9E8AD /* tile_list_processor.h */,
				D25C918E0FF0368E00D9E8AD /* tile_page.cc */,
				D25C918F0FF0368E00D9E8AD /* tile_page.h */,
			);
			name = tool;
			sourceTree = "<group>";
		};
		D25C91990FF037A000D9E8AD /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				B0B5DF201066ED0E0020B21F /* libpng.framework */,
				B0B5DF221066ED0E0020B21F /* SDL_image.framework */,
				B0B5DF241066ED0E0020B21F /* SDL.framework */,
				B0B5DFC91066F9A80020B21F /* OpenGL.framework */,
				B0B5E17B106706E40020B21F /* Freetype2.framework */,
				B02C57901067129A006AC96D /* AppKit.framework */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		D2AE25EC0DA2621100E15489 /* Mac */ = {
			isa = PBXGroup;
			children = (
				D2A696BC0DA29D4E00FDDE82 /* Crawl.icns */,
				D2AE25EE0DA2624E00E15489 /* crawl */,
			);
			name = Mac;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
		7B0EFD3E0BD12E9200002671 /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				7B0EFD850BD12EEB00002671 /* lapi.h in Headers */,
				7B0EFD870BD12EEB00002671 /* lauxlib.h in Headers */,
				7B0EFD8A0BD12EEB00002671 /* lcode.h in Headers */,
				7B0EFD8D0BD12EEB00002671 /* ldebug.h in Headers */,
				7B0EFD8F0BD12EEB00002671 /* ldo.h in Headers */,
				7B0EFD920BD12EEB00002671 /* lfunc.h in Headers */,
				7B0EFD940BD12EEB00002671 /* lgc.h in Headers */,
				7B0EFD980BD12EEB00002671 /* llex.h in Headers */,
				7B0EFD990BD12EEB00002671 /* llimits.h in Headers */,
				7B0EFD9C0BD12EEB00002671 /* lmem.h in Headers */,
				7B0EFD9F0BD12EEB00002671 /* lobject.h in Headers */,
				7B0EFDA10BD12EEB00002671 /* lopcodes.h in Headers */,
				7B0EFDA40BD12EEB00002671 /* lparser.h in Headers */,
				7B0EFDA60BD12EEB00002671 /* lstate.h in Headers */,
				7B0EFDA80BD12EEB00002671 /* lstring.h in Headers */,
				7B0EFDAB0BD12EEB00002671 /* ltable.h in Headers */,
				7B0EFDAE0BD12EEB00002671 /* ltm.h in Headers */,
				7B0EFDB00BD12EEB00002671 /* lua.h in Headers */,
				7B0EFDB20BD12EEB00002671 /* luaconf.h in Headers */,
				7B0EFDB30BD12EEB00002671 /* lualib.h in Headers */,
				7B0EFDB50BD12EEB00002671 /* lundump.h in Headers */,
				7B0EFDB70BD12EEB00002671 /* lvm.h in Headers */,
				7B0EFDB90BD12EEB00002671 /* lzio.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXHeadersBuildPhase section */

/* Begin PBXNativeTarget section */
		7B0EFD410BD12E9200002671 /* Lua */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 7B0EFD460BD12EA700002671 /* Build configuration list for PBXNativeTarget "Lua" */;
			buildPhases = (
				7B0EFD3E0BD12E9200002671 /* Headers */,
				7B0EFD3F0BD12E9200002671 /* Sources */,
				7B0EFD400BD12E9200002671 /* Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = Lua;
			productName = Lua;
			productReference = 7B0EFD420BD12E9200002671 /* liblua.a */;
			productType = "com.apple.product-type.library.static";
		};
		8DD76FA90486AB0100D96B5E /* Crawl-cmd */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 1DEB928508733DD80010E9CD /* Build configuration list for PBXNativeTarget "Crawl-cmd" */;
			buildPhases = (
				8DD76FAB0486AB0100D96B5E /* Sources */,
				8DD76FAD0486AB0100D96B5E /* Frameworks */,
				8DD76FAF0486AB0100D96B5E /* CopyFiles */,
			);
			buildRules = (
			);
			dependencies = (
				7B0EFD450BD12E9E00002671 /* PBXTargetDependency */,
			);
			name = "Crawl-cmd";
			productInstallPath = "$(HOME)/bin";
			productName = Crawl;
			productReference = 8DD76FB20486AB0100D96B5E /* crawl */;
			productType = "com.apple.product-type.tool";
		};
		D2660D420FF0864B00986331 /* Crawl-tiles-cmd */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = D2660DFE0FF0864B00986331 /* Build configuration list for PBXNativeTarget "Crawl-tiles-cmd" */;
			buildPhases = (
				B0B5DFAD1066F8500020B21F /* Generate Tiles */,
				D2660D450FF0864B00986331 /* Sources */,
				D2660DA40FF0864B00986331 /* Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
				D2660D430FF0864B00986331 /* PBXTargetDependency */,
			);
			name = "Crawl-tiles-cmd";
			productInstallPath = "$(HOME)/bin";
			productName = Crawl;
			productReference = D2660E030FF0864B00986331 /* crawl */;
			productType = "com.apple.product-type.tool";
		};
		D2F271F50DA1C58C00445FE9 /* Crawl */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = D2F271FD0DA1C58C00445FE9 /* Build configuration list for PBXNativeTarget "Crawl" */;
			buildPhases = (
				D2F271F20DA1C58C00445FE9 /* Resources */,
				B090C2DB10671E3200AE855D /* Copy Crawl Executable */,
				B090C2ED10671F5F00AE855D /* Copy Dungeon Tiles */,
				D2AE25F30DA262B100E15489 /* Copy Wrapper Script */,
				B0B5DF681066EDFF0020B21F /* Copy Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
				B02C579E10671327006AC96D /* PBXTargetDependency */,
				D2F272370DA1C5BC00445FE9 /* PBXTargetDependency */,
			);
			name = Crawl;
			productName = Crawl;
			productReference = D2F271F60DA1C58C00445FE9 /* Crawl.app */;
			productType = "com.apple.product-type.application";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		08FB7793FE84155DC02AAC07 /* Project object */ = {
			isa = PBXProject;
			buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "Crawl" */;
			compatibilityVersion = "Xcode 3.0";
			hasScannedForEncodings = 1;
			mainGroup = 08FB7794FE84155DC02AAC07 /* Crawl */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				D2F271F50DA1C58C00445FE9 /* Crawl */,
				7B0EFD410BD12E9200002671 /* Lua */,
				8DD76FA90486AB0100D96B5E /* Crawl-cmd */,
				D2660D420FF0864B00986331 /* Crawl-tiles-cmd */,
			);
		};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
		D2F271F20DA1C58C00445FE9 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				D2F272350DA1C5AD00445FE9 /* dat in Resources */,
				D2F2725B0DA1C61600445FE9 /* docs in Resources */,
				D2A696BD0DA29D4E00FDDE82 /* Crawl.icns in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXShellScriptBuildPhase section */
		B090C2DB10671E3200AE855D /* Copy Crawl Executable */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			name = "Copy Crawl Executable";
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "cp \"$BUILT_PRODUCTS_DIR/crawl\" \"$BUILT_PRODUCTS_DIR/$UNLOCALIZED_RESOURCES_FOLDER_PATH/\"";
		};
		B0B5DFAD1066F8500020B21F /* Generate Tiles */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			name = "Generate Tiles";
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "cd \"$PROJECT_DIR/rltiles\"\nmake -f makefile.mac -j2\n";
		};
/* End PBXShellScriptBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		7B0EFD3F0BD12E9200002671 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				7B0EFD840BD12EEB00002671 /* lapi.c in Sources */,
				7B0EFD860BD12EEB00002671 /* lauxlib.c in Sources */,
				7B0EFD880BD12EEB00002671 /* lbaselib.c in Sources */,
				7B0EFD890BD12EEB00002671 /* lcode.c in Sources */,
				7B0EFD8B0BD12EEB00002671 /* ldblib.c in Sources */,
				7B0EFD8C0BD12EEB00002671 /* ldebug.c in Sources */,
				7B0EFD8E0BD12EEB00002671 /* ldo.c in Sources */,
				7B0EFD900BD12EEB00002671 /* ldump.c in Sources */,
				7B0EFD910BD12EEB00002671 /* lfunc.c in Sources */,
				7B0EFD930BD12EEB00002671 /* lgc.c in Sources */,
				7B0EFD950BD12EEB00002671 /* linit.c in Sources */,
				7B0EFD960BD12EEB00002671 /* liolib.c in Sources */,
				7B0EFD970BD12EEB00002671 /* llex.c in Sources */,
				7B0EFD9A0BD12EEB00002671 /* lmathlib.c in Sources */,
				7B0EFD9B0BD12EEB00002671 /* lmem.c in Sources */,
				7B0EFD9D0BD12EEB00002671 /* loadlib.c in Sources */,
				7B0EFD9E0BD12EEB00002671 /* lobject.c in Sources */,
				7B0EFDA00BD12EEB00002671 /* lopcodes.c in Sources */,
				7B0EFDA20BD12EEB00002671 /* loslib.c in Sources */,
				7B0EFDA30BD12EEB00002671 /* lparser.c in Sources */,
				7B0EFDA50BD12EEB00002671 /* lstate.c in Sources */,
				7B0EFDA70BD12EEB00002671 /* lstring.c in Sources */,
				7B0EFDA90BD12EEB00002671 /* lstrlib.c in Sources */,
				7B0EFDAA0BD12EEB00002671 /* ltable.c in Sources */,
				7B0EFDAC0BD12EEB00002671 /* ltablib.c in Sources */,
				7B0EFDAD0BD12EEB00002671 /* ltm.c in Sources */,
				7B0EFDB40BD12EEB00002671 /* lundump.c in Sources */,
				7B0EFDB60BD12EEB00002671 /* lvm.c in Sources */,
				7B0EFDB80BD12EEB00002671 /* lzio.c in Sources */,
				7B0EFDBB0BD12EEB00002671 /* print.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		8DD76FAB0486AB0100D96B5E /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				7BBC4A080B0F783C00F27D45 /* levcomp.ypp in Sources */,
				7BBC4A070B0F783C00F27D45 /* levcomp.lpp in Sources */,
				B0274AC8106AD989004F7B39 /* randart.cc in Sources */,
				B0274AC9106AD989004F7B39 /* randart.h in Sources */,
				7B237E6D0A8EC9D000580F30 /* maps.cc in Sources */,
				93B134C30F256113007DB230 /* arena.cc in Sources */,
				7B237E6F0A8EC9D000580F30 /* mon-pick.cc in Sources */,
				7B237E750A8EC9D000580F30 /* overmap.cc in Sources */,
				7B237E780A8EC9D000580F30 /* initfile.cc in Sources */,
				7B237E7A0A8EC9D000580F30 /* hiscores.cc in Sources */,
				7B237E7C0A8EC9D000580F30 /* travel.cc in Sources */,
				7B237E7E0A8EC9D000580F30 /* lev-pand.cc in Sources */,
				7B237E800A8EC9D000580F30 /* newgame.cc in Sources */,
				7B237E820A8EC9D000580F30 /* mutation.cc in Sources */,
				7B237E830A8EC9D000580F30 /* misc.cc in Sources */,
				7B237E860A8EC9D000580F30 /* mon-util.cc in Sources */,
				7B237E880A8EC9D000580F30 /* it_use3.cc in Sources */,
				7B237E8A0A8EC9D000580F30 /* itemname.cc in Sources */,
				7B237E8B0A8EC9D000580F30 /* command.cc in Sources */,
				7B237E8E0A8EC9D000580F30 /* spl-util.cc in Sources */,
				7B237E920A8EC9D000580F30 /* player.cc in Sources */,
				7B237E940A8EC9D000580F30 /* abl-show.cc in Sources */,
				7B237E950A8EC9D000580F30 /* files.cc in Sources */,
				7B237E960A8EC9D000580F30 /* directn.cc in Sources */,
				7B237E9B0A8EC9D000580F30 /* view.cc in Sources */,
				7B237E9C0A8EC9D000580F30 /* spl-book.cc in Sources */,
				7B237E9E0A8EC9D000580F30 /* spells4.cc in Sources */,
				7B237EA50A8EC9D000580F30 /* stuff.cc in Sources */,
				7B237EA70A8EC9D000580F30 /* stash.cc in Sources */,
				7B237EA90A8EC9D000580F30 /* transfor.cc in Sources */,
				7B237EAB0A8EC9D000580F30 /* tags.cc in Sources */,
				7B237EAD0A8EC9D000580F30 /* item_use.cc in Sources */,
				7B237EAE0A8EC9D000580F30 /* acr.cc in Sources */,
				7B237EAF0A8EC9D000580F30 /* abyss.cc in Sources */,
				7B237EB10A8EC9D000580F30 /* chardump.cc in Sources */,
				7B237EB30A8EC9D000580F30 /* beam.cc in Sources */,
				7B237EB60A8EC9D000580F30 /* spl-cast.cc in Sources */,
				7B237EB80A8EC9D000580F30 /* output.cc in Sources */,
				7B237EBA0A8EC9D000580F30 /* ouch.cc in Sources */,
				7B237EBC0A8EC9D000580F30 /* message.cc in Sources */,
				7B237EBE0A8EC9D000580F30 /* menu.cc in Sources */,
				7B237EBF0A8EC9D000580F30 /* macro.cc in Sources */,
				7B237EC00A8EC9D000580F30 /* shopping.cc in Sources */,
				7B237EC20A8EC9D000580F30 /* religion.cc in Sources */,
				7B237EC30A8EC9D000580F30 /* spells3.cc in Sources */,
				7B237EC50A8EC9D000580F30 /* spells2.cc in Sources */,
				7B237EC60A8EC9D000580F30 /* mstuff2.cc in Sources */,
				7B237EC80A8EC9D000580F30 /* monstuff.cc in Sources */,
				7B237ECD0A8EC9D000580F30 /* spells1.cc in Sources */,
				7B237ECF0A8EC9D000580F30 /* skills2.cc in Sources */,
				7B237ED00A8EC9D000580F30 /* decks.cc in Sources */,
				7B237ED10A8EC9D000580F30 /* describe.cc in Sources */,
				7B237ED20A8EC9D000580F30 /* monspeak.cc in Sources */,
				7B237ED40A8EC9D000580F30 /* monplace.cc in Sources */,
				7B237ED60A8EC9D000580F30 /* Kills.cc in Sources */,
				7B237ED90A8EC9D000580F30 /* effects.cc in Sources */,
				7B237EDA0A8EC9D000580F30 /* fight.cc in Sources */,
				7B237EDB0A8EC9D000580F30 /* food.cc in Sources */,
				7B237EDE0A8EC9D000580F30 /* clua.cc in Sources */,
				7B237EE00A8EC9D000580F30 /* cloud.cc in Sources */,
				7B237EE10A8EC9D000580F30 /* items.cc in Sources */,
				7B237EE40A8EC9D000580F30 /* skills.cc in Sources */,
				7B237EE60A8EC9D000580F30 /* it_use2.cc in Sources */,
				7B237EE80A8EC9D000580F30 /* invent.cc in Sources */,
				7B237EE90A8EC9D000580F30 /* libutil.cc in Sources */,
				7B237EEB0A8EC9D000580F30 /* libunix.cc in Sources */,
				7B237EED0A8EC9D000580F30 /* delay.cc in Sources */,
				7B237EEE0A8EC9D000580F30 /* dungeon.cc in Sources */,
				7B237EEF0A8EC9D000580F30 /* debug.cc in Sources */,
				7B237EF10A8EC9D000580F30 /* mt19937ar.cc in Sources */,
				7BC222E70ABBB286003A7D9A /* itemprop.cc in Sources */,
				7BD75A350AC214A200B74F6E /* notes.cc in Sources */,
				7B352EA00B00183400CABB32 /* mapdef.cc in Sources */,
				7BA3DBBB0B3D90A700B5B3D7 /* branch.cc in Sources */,
				7BDEBB290BB4CB0B008DF39F /* mtransit.cc in Sources */,
				7BDEBB2B0BB4CB1D008DF39F /* ghost.cc in Sources */,
				7BDEBB310BB4CB5C008DF39F /* tutorial.cc in Sources */,
				7BDEBB360BB4CB93008DF39F /* format.cc in Sources */,
				7B973FFD0BE3AA8400AAE35B /* database.cc in Sources */,
				7B9740070BE3AC8000AAE35B /* makeitem.cc in Sources */,
				4CEF158A0C128CA5002C7D7A /* xom.cc in Sources */,
				7BF855620C9C912B00B7C520 /* cio.cc in Sources */,
				7BF855670C9C914D00B7C520 /* mapmark.cc in Sources */,
				7BF8556B0C9C916800B7C520 /* dgnevent.cc in Sources */,
				7BF855700C9C919100B7C520 /* luadgn.cc in Sources */,
				7B61642E0C9CA8E80054B3D9 /* place.cc in Sources */,
				7B6164320C9CA8E80054B3D9 /* terrain.cc in Sources */,
				7B6164340C9CA8E80054B3D9 /* traps.cc in Sources */,
				7B54B51B0CA8217900612805 /* state.cc in Sources */,
				7BD222200CC2D51300B475D8 /* store.cc in Sources */,
				7B4896620CD3A5D2004A5F43 /* mgrow.cc in Sources */,
				6232EBE20DACA55C004F7E9C /* quiver.cc in Sources */,
				93B134650F25595F007DB230 /* version.cc in Sources */,
				D274AC550FE66EEC00C9C1AE /* crash-u.cc in Sources */,
				D274AC5A0FE66EFC00C9C1AE /* spl-mis.cc in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		D2660D450FF0864B00986331 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				D2660D460FF0864B00986331 /* levcomp.ypp in Sources */,
				D2660D470FF0864B00986331 /* levcomp.lpp in Sources */,
				B02C576110670ED2006AC96D /* SDLMain.m in Sources */,
				B0274AC4106AD979004F7B39 /* randart.cc in Sources */,
				B0274AC5106AD979004F7B39 /* randart.h in Sources */,
				B0B5DFE21066FA2F0020B21F /* tiledef-dngn.cc in Sources */,
				B0B5DFE41066FA2F0020B21F /* tiledef-main.cc in Sources */,
				B0B5DFE51066FA2F0020B21F /* tiledef-player.cc in Sources */,
				B02C574510670C63006AC96D /* libgui.cc in Sources */,
				D2660E240FF0868B00986331 /* tilesdl.cc in Sources */,
				D2660D480FF0864B00986331 /* maps.cc in Sources */,
				D2660D490FF0864B00986331 /* arena.cc in Sources */,
				D2660D4A0FF0864B00986331 /* mon-pick.cc in Sources */,
				D2660D4B0FF0864B00986331 /* overmap.cc in Sources */,
				D2660D4C0FF0864B00986331 /* initfile.cc in Sources */,
				D2660D4D0FF0864B00986331 /* hiscores.cc in Sources */,
				D2660D4E0FF0864B00986331 /* travel.cc in Sources */,
				D2660D4F0FF0864B00986331 /* lev-pand.cc in Sources */,
				D2660D500FF0864B00986331 /* newgame.cc in Sources */,
				D2660D510FF0864B00986331 /* mutation.cc in Sources */,
				D2660D520FF0864B00986331 /* misc.cc in Sources */,
				D2660D530FF0864B00986331 /* mon-util.cc in Sources */,
				D2660D540FF0864B00986331 /* it_use3.cc in Sources */,
				D2660D550FF0864B00986331 /* itemname.cc in Sources */,
				D2660D560FF0864B00986331 /* command.cc in Sources */,
				D2660D570FF0864B00986331 /* spl-util.cc in Sources */,
				D2660D590FF0864B00986331 /* player.cc in Sources */,
				D2660D5A0FF0864B00986331 /* abl-show.cc in Sources */,
				D2660D5B0FF0864B00986331 /* files.cc in Sources */,
				D2660D5C0FF0864B00986331 /* directn.cc in Sources */,
				D2660D5D0FF0864B00986331 /* view.cc in Sources */,
				D2660D5E0FF0864B00986331 /* spl-book.cc in Sources */,
				D2660D5F0FF0864B00986331 /* spells4.cc in Sources */,
				D2660D600FF0864B00986331 /* stuff.cc in Sources */,
				D2660D610FF0864B00986331 /* stash.cc in Sources */,
				D2660D620FF0864B00986331 /* transfor.cc in Sources */,
				D2660D630FF0864B00986331 /* tags.cc in Sources */,
				D2660D640FF0864B00986331 /* item_use.cc in Sources */,
				D2660D650FF0864B00986331 /* acr.cc in Sources */,
				D2660D660FF0864B00986331 /* abyss.cc in Sources */,
				D2660D670FF0864B00986331 /* chardump.cc in Sources */,
				D2660D680FF0864B00986331 /* beam.cc in Sources */,
				D2660D690FF0864B00986331 /* spl-cast.cc in Sources */,
				D2660D6A0FF0864B00986331 /* output.cc in Sources */,
				D2660D6B0FF0864B00986331 /* ouch.cc in Sources */,
				D2660D6C0FF0864B00986331 /* message.cc in Sources */,
				D2660D6D0FF0864B00986331 /* menu.cc in Sources */,
				D2660D6E0FF0864B00986331 /* macro.cc in Sources */,
				D2660D6F0FF0864B00986331 /* shopping.cc in Sources */,
				D2660D700FF0864B00986331 /* religion.cc in Sources */,
				D2660D710FF0864B00986331 /* spells3.cc in Sources */,
				D2660D720FF0864B00986331 /* spells2.cc in Sources */,
				D2660D730FF0864B00986331 /* mstuff2.cc in Sources */,
				D2660D740FF0864B00986331 /* monstuff.cc in Sources */,
				D2660D750FF0864B00986331 /* spells1.cc in Sources */,
				D2660D760FF0864B00986331 /* skills2.cc in Sources */,
				D2660D770FF0864B00986331 /* decks.cc in Sources */,
				D2660D780FF0864B00986331 /* describe.cc in Sources */,
				D2660D790FF0864B00986331 /* monspeak.cc in Sources */,
				D2660D7A0FF0864B00986331 /* monplace.cc in Sources */,
				D2660D7B0FF0864B00986331 /* Kills.cc in Sources */,
				D2660D7C0FF0864B00986331 /* effects.cc in Sources */,
				D2660D7D0FF0864B00986331 /* fight.cc in Sources */,
				D2660D7E0FF0864B00986331 /* food.cc in Sources */,
				D2660D7F0FF0864B00986331 /* clua.cc in Sources */,
				D2660D800FF0864B00986331 /* cloud.cc in Sources */,
				D2660D810FF0864B00986331 /* items.cc in Sources */,
				D2660D820FF0864B00986331 /* skills.cc in Sources */,
				D2660D830FF0864B00986331 /* it_use2.cc in Sources */,
				D2660D840FF0864B00986331 /* invent.cc in Sources */,
				D2660D850FF0864B00986331 /* libutil.cc in Sources */,
				D2660D870FF0864B00986331 /* delay.cc in Sources */,
				D2660D880FF0864B00986331 /* dungeon.cc in Sources */,
				D2660D890FF0864B00986331 /* debug.cc in Sources */,
				D2660D8A0FF0864B00986331 /* mt19937ar.cc in Sources */,
				D2660D8B0FF0864B00986331 /* itemprop.cc in Sources */,
				D2660D8C0FF0864B00986331 /* notes.cc in Sources */,
				D2660D8D0FF0864B00986331 /* mapdef.cc in Sources */,
				D2660D8E0FF0864B00986331 /* branch.cc in Sources */,
				D2660D8F0FF0864B00986331 /* mtransit.cc in Sources */,
				D2660D900FF0864B00986331 /* ghost.cc in Sources */,
				D2660D910FF0864B00986331 /* tutorial.cc in Sources */,
				D2660D920FF0864B00986331 /* format.cc in Sources */,
				D2660D930FF0864B00986331 /* database.cc in Sources */,
				D2660D940FF0864B00986331 /* makeitem.cc in Sources */,
				D2660D950FF0864B00986331 /* xom.cc in Sources */,
				D2660D960FF0864B00986331 /* cio.cc in Sources */,
				D2660D970FF0864B00986331 /* mapmark.cc in Sources */,
				D2660D980FF0864B00986331 /* dgnevent.cc in Sources */,
				D2660D990FF0864B00986331 /* luadgn.cc in Sources */,
				D2660D9A0FF0864B00986331 /* place.cc in Sources */,
				D2660D9B0FF0864B00986331 /* terrain.cc in Sources */,
				D2660D9C0FF0864B00986331 /* traps.cc in Sources */,
				D2660D9D0FF0864B00986331 /* state.cc in Sources */,
				D2660D9E0FF0864B00986331 /* store.cc in Sources */,
				D2660D9F0FF0864B00986331 /* mgrow.cc in Sources */,
				D2660DA00FF0864B00986331 /* quiver.cc in Sources */,
				D2660DA10FF0864B00986331 /* version.cc in Sources */,
				D2660DA20FF0864B00986331 /* crash-u.cc in Sources */,
				D2660DA30FF0864B00986331 /* spl-mis.cc in Sources */,
				D2660E1E0FF0868B00986331 /* tile2.cc in Sources */,
				D2660E1F0FF0868B00986331 /* tilebuf.cc in Sources */,
				D2660E200FF0868B00986331 /* tilefont.cc in Sources */,
				D2660E210FF0868B00986331 /* tilemcache.cc in Sources */,
				D2660E220FF0868B00986331 /* tilepick.cc in Sources */,
				D2660E230FF0868B00986331 /* tilereg.cc in Sources */,
				D2660E250FF0868B00986331 /* tiletex.cc in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXTargetDependency section */
		7B0EFD450BD12E9E00002671 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 7B0EFD410BD12E9200002671 /* Lua */;
			targetProxy = 7B0EFD440BD12E9E00002671 /* PBXContainerItemProxy */;
		};
		B02C579E10671327006AC96D /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = D2660D420FF0864B00986331 /* Crawl-tiles-cmd */;
			targetProxy = B02C579D10671327006AC96D /* PBXContainerItemProxy */;
		};
		D2660D430FF0864B00986331 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 7B0EFD410BD12E9200002671 /* Lua */;
			targetProxy = D2660D440FF0864B00986331 /* PBXContainerItemProxy */;
		};
		D2F272370DA1C5BC00445FE9 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 7B0EFD410BD12E9200002671 /* Lua */;
			targetProxy = D2F272360DA1C5BC00445FE9 /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin XCBuildConfiguration section */
		1DEB928608733DD80010E9CD /* Development */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COPY_PHASE_STRIP = NO;
				GCC_DEBUGGING_SYMBOLS = full;
				GCC_ENABLE_FIX_AND_CONTINUE = YES;
				GCC_INLINES_ARE_PRIVATE_EXTERN = NO;
				GCC_OPTIMIZATION_LEVEL = 1;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "$(PROJECT_DIR)/AppHdr.h";
				GCC_PREPROCESSOR_DEFINITIONS = (
					OSX,
					CLUA_BINDINGS,
					DB_NDBM,
				);
				GCC_SYMBOLS_PRIVATE_EXTERN = NO;
				GCC_VERSION = 4.0;
				GCC_WARN_SIGN_COMPARE = NO;
				GCC_WARN_UNUSED_FUNCTION = NO;
				GCC_WARN_UNUSED_LABEL = NO;
				PRODUCT_NAME = crawl;
				YACC_GENERATED_FILE_STEM = InputFileStem;
			};
			name = Development;
		};
		1DEB928A08733DD80010E9CD /* Development */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_PREPROCESSOR_DEFINITIONS = OSX;
				GCC_WARN_ABOUT_MISSING_NEWLINE = YES;
				GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_CHECK_SWITCH_STATEMENTS = YES;
				GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS = YES;
				GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES;
				GCC_WARN_MISSING_PARENTHESES = YES;
				GCC_WARN_NON_VIRTUAL_DESTRUCTOR = YES;
				GCC_WARN_PEDANTIC = YES;
				GCC_WARN_SHADOW = YES;
				GCC_WARN_SIGN_COMPARE = NO;
				GCC_WARN_TYPECHECK_CALLS_TO_PRINTF = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNKNOWN_PRAGMAS = YES;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_LABEL = YES;
				GCC_WARN_UNUSED_VALUE = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				MACOSX_DEPLOYMENT_TARGET_i386 = 10.4;
				MACOSX_DEPLOYMENT_TARGET_ppc = 10.3;
				PREBINDING = NO;
				SDKROOT = "$(DEVELOPER_SDK_DIR)/MacOSX10.4u.sdk";
				WARNING_CFLAGS = "";
			};
			name = Development;
		};
		7B0EFD470BD12EA700002671 /* Development */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_PREPROCESSOR_DEFINITIONS = (
					LUA_USE_MACOSX,
					LUA_USE_READLINE,
				);
				GCC_TREAT_WARNINGS_AS_ERRORS = NO;
				GCC_VERSION = 4.0;
				GCC_WARN_PEDANTIC = NO;
				PRODUCT_NAME = lua;
			};
			name = Development;
		};
		7B0EFD480BD12EA700002671 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_PREPROCESSOR_DEFINITIONS = (
					LUA_USE_MACOSX,
					LUA_USE_READLINE,
				);
				GCC_TREAT_WARNINGS_AS_ERRORS = NO;
				GCC_VERSION = 4.0;
				GCC_WARN_PEDANTIC = NO;
				PRODUCT_NAME = lua;
			};
			name = Release;
		};
		7B0EFD490BD12EA700002671 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_PREPROCESSOR_DEFINITIONS = (
					LUA_USE_MACOSX,
					LUA_USE_READLINE,
				);
				GCC_TREAT_WARNINGS_AS_ERRORS = NO;
				GCC_VERSION = 4.0;
				GCC_WARN_PEDANTIC = NO;
				PRODUCT_NAME = lua;
			};
			name = Debug;
		};
		7B0EFD4A0BD12EA700002671 /* Wizard */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_PREPROCESSOR_DEFINITIONS = (
					LUA_USE_MACOSX,
					LUA_USE_READLINE,
				);
				GCC_TREAT_WARNINGS_AS_ERRORS = NO;
				GCC_VERSION = 4.0;
				GCC_WARN_PEDANTIC = NO;
				PRODUCT_NAME = lua;
			};
			name = Wizard;
		};
		7B97C01F0A8ECFD700CE8936 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COPY_PHASE_STRIP = NO;
				GCC_ENABLE_FIX_AND_CONTINUE = YES;
				GCC_INLINES_ARE_PRIVATE_EXTERN = NO;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "$(PROJECT_DIR)/AppHdr.h";
				GCC_PREPROCESSOR_DEFINITIONS = (
					OSX,
					CLUA_BINDINGS,
					DB_NDBM,
					WIZARD,
					DEBUG,
					DEBUG_ITEM_SCAN,
					FULLDEBUG,
				);
				GCC_SYMBOLS_PRIVATE_EXTERN = NO;
				GCC_VERSION = 4.0;
				GCC_WARN_SIGN_COMPARE = NO;
				GCC_WARN_UNINITIALIZED_AUTOS = NO;
				GCC_WARN_UNUSED_FUNCTION = NO;
				GCC_WARN_UNUSED_LABEL = NO;
				PRODUCT_NAME = crawl;
				YACC_GENERATED_FILE_STEM = InputFileStem;
			};
			name = Debug;
		};
		7B97C0200A8ECFD700CE8936 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_PREPROCESSOR_DEFINITIONS = (
					OSX,
					DEBUG,
					FULLDEBUG,
					DEBUG_ITEM_SCAN,
					WIZARD,
				);
				GCC_WARN_ABOUT_MISSING_NEWLINE = YES;
				GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_CHECK_SWITCH_STATEMENTS = YES;
				GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS = YES;
				GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES;
				GCC_WARN_MISSING_PARENTHESES = YES;
				GCC_WARN_NON_VIRTUAL_DESTRUCTOR = YES;
				GCC_WARN_PEDANTIC = YES;
				GCC_WARN_SHADOW = YES;
				GCC_WARN_SIGN_COMPARE = NO;
				GCC_WARN_TYPECHECK_CALLS_TO_PRINTF = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNKNOWN_PRAGMAS = YES;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_LABEL = YES;
				GCC_WARN_UNUSED_VALUE = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				MACOSX_DEPLOYMENT_TARGET_i386 = 10.4;
				MACOSX_DEPLOYMENT_TARGET_ppc = 10.3;
				PREBINDING = NO;
				SDKROOT = "$(DEVELOPER_SDK_DIR)/MacOSX10.4u.sdk";
				WARNING_CFLAGS = "";
			};
			name = Debug;
		};
		7B97C0240A8ED2AB00CE8936 /* Wizard */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COPY_PHASE_STRIP = NO;
				GCC_ENABLE_FIX_AND_CONTINUE = YES;
				GCC_OPTIMIZATION_LEVEL = 1;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "$(PROJECT_DIR)/AppHdr.h";
				GCC_PREPROCESSOR_DEFINITIONS = (
					OSX,
					CLUA_BINDINGS,
					DB_NDBM,
					WIZARD,
					DEBUG,
					DEBUG_ITEM_SCAN,
				);
				GCC_VERSION = 4.0;
				GCC_WARN_SIGN_COMPARE = NO;
				GCC_WARN_UNUSED_FUNCTION = NO;
				GCC_WARN_UNUSED_LABEL = NO;
				PRODUCT_NAME = crawl;
				YACC_GENERATED_FILE_STEM = InputFileStem;
			};
			name = Wizard;
		};
		7B97C0250A8ED2AB00CE8936 /* Wizard */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_PREPROCESSOR_DEFINITIONS = (
					OSX,
					WIZARD,
					DEBUG,
					DEBUG_ITEM_SCAN,
				);
				GCC_WARN_ABOUT_MISSING_NEWLINE = YES;
				GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_CHECK_SWITCH_STATEMENTS = YES;
				GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS = YES;
				GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES;
				GCC_WARN_MISSING_PARENTHESES = YES;
				GCC_WARN_NON_VIRTUAL_DESTRUCTOR = YES;
				GCC_WARN_PEDANTIC = YES;
				GCC_WARN_SHADOW = YES;
				GCC_WARN_SIGN_COMPARE = NO;
				GCC_WARN_TYPECHECK_CALLS_TO_PRINTF = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNKNOWN_PRAGMAS = YES;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_LABEL = YES;
				GCC_WARN_UNUSED_VALUE = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				MACOSX_DEPLOYMENT_TARGET_i386 = 10.4;
				MACOSX_DEPLOYMENT_TARGET_ppc = 10.3;
				PREBINDING = NO;
				SDKROOT = "$(DEVELOPER_SDK_DIR)/MacOSX10.4u.sdk";
				WARNING_CFLAGS = "";
			};
			name = Wizard;
		};
		7B97C0260A8ED34400CE8936 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_ENABLE_FIX_AND_CONTINUE = NO;
				GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
				GCC_OPTIMIZATION_LEVEL = 1;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "$(PROJECT_DIR)/AppHdr.h";
				GCC_PREPROCESSOR_DEFINITIONS = (
					OSX,
					CLUA_BINDINGS,
					DB_NDBM,
				);
				GCC_VERSION = 4.0;
				GCC_WARN_SIGN_COMPARE = NO;
				GCC_WARN_UNUSED_FUNCTION = NO;
				GCC_WARN_UNUSED_LABEL = NO;
				PRODUCT_NAME = crawl;
				YACC_GENERATED_FILE_STEM = InputFileStem;
			};
			name = Release;
		};
		7B97C0270A8ED34400CE8936 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)";
				ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386";
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_PREPROCESSOR_DEFINITIONS = OSX;
				GCC_WARN_ABOUT_MISSING_NEWLINE = YES;
				GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_CHECK_SWITCH_STATEMENTS = YES;
				GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS = YES;
				GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES;
				GCC_WARN_MISSING_PARENTHESES = YES;
				GCC_WARN_NON_VIRTUAL_DESTRUCTOR = YES;
				GCC_WARN_PEDANTIC = YES;
				GCC_WARN_SHADOW = YES;
				GCC_WARN_SIGN_COMPARE = NO;
				GCC_WARN_TYPECHECK_CALLS_TO_PRINTF = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNKNOWN_PRAGMAS = YES;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_LABEL = YES;
				GCC_WARN_UNUSED_VALUE = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				MACOSX_DEPLOYMENT_TARGET_i386 = 10.4;
				MACOSX_DEPLOYMENT_TARGET_ppc = 10.3;
				PREBINDING = NO;
				SDKROOT = "$(DEVELOPER_SDK_DIR)/MacOSX10.4u.sdk";
				WARNING_CFLAGS = "";
			};
			name = Release;
		};
		D2660DFF0FF0864B00986331 /* Development */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COPY_PHASE_STRIP = NO;
				GCC_DEBUGGING_SYMBOLS = full;
				GCC_ENABLE_FIX_AND_CONTINUE = YES;
				GCC_INLINES_ARE_PRIVATE_EXTERN = NO;
				GCC_OPTIMIZATION_LEVEL = 1;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "$(PROJECT_DIR)/AppHdr.h";
				GCC_PREPROCESSOR_DEFINITIONS = (
					OSX,
					USE_TILE,
					CLUA_BINDINGS,
					DB_NDBM,
				);
				GCC_SYMBOLS_PRIVATE_EXTERN = NO;
				GCC_VERSION = 4.0;
				GCC_WARN_SIGN_COMPARE = NO;
				GCC_WARN_UNUSED_FUNCTION = NO;
				GCC_WARN_UNUSED_LABEL = NO;
				HEADER_SEARCH_PATHS = (
					/Library/Frameworks/Freetype2.framework/Headers,
					/Library/Frameworks/SDL.framework/Headers,
					/Library/Frameworks/SDL_image.framework/Headers,
					/Library/Frameworks/libpng.framework/Headers,
				);
				PRODUCT_NAME = crawl;
				YACC_GENERATED_FILE_STEM = InputFileStem;
			};
			name = Development;
		};
		D2660E000FF0864B00986331 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_ENABLE_FIX_AND_CONTINUE = NO;
				GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
				GCC_OPTIMIZATION_LEVEL = 1;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "$(PROJECT_DIR)/AppHdr.h";
				GCC_PREPROCESSOR_DEFINITIONS = (
					OSX,
					USE_TILE,
					CLUA_BINDINGS,
					DB_NDBM,
				);
				GCC_VERSION = 4.0;
				GCC_WARN_SIGN_COMPARE = NO;
				GCC_WARN_UNUSED_FUNCTION = NO;
				GCC_WARN_UNUSED_LABEL = NO;
				HEADER_SEARCH_PATHS = (
					/Library/Frameworks/Freetype2.framework/Headers,
					/Library/Frameworks/SDL.framework/Headers,
					/Library/Frameworks/SDL_image.framework/Headers,
					/Library/Frameworks/libpng.framework/Headers,
				);
				PRODUCT_NAME = crawl;
				YACC_GENERATED_FILE_STEM = InputFileStem;
			};
			name = Release;
		};
		D2660E010FF0864B00986331 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COPY_PHASE_STRIP = NO;
				GCC_ENABLE_FIX_AND_CONTINUE = YES;
				GCC_INLINES_ARE_PRIVATE_EXTERN = NO;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "$(PROJECT_DIR)/AppHdr.h";
				GCC_PREPROCESSOR_DEFINITIONS = (
					OSX,
					USE_TILE,
					CLUA_BINDINGS,
					DB_NDBM,
					WIZARD,
					DEBUG,
					DEBUG_ITEM_SCAN,
					FULLDEBUG,
				);
				GCC_SYMBOLS_PRIVATE_EXTERN = NO;
				GCC_VERSION = 4.0;
				GCC_WARN_SIGN_COMPARE = NO;
				GCC_WARN_UNINITIALIZED_AUTOS = NO;
				GCC_WARN_UNUSED_FUNCTION = NO;
				GCC_WARN_UNUSED_LABEL = NO;
				HEADER_SEARCH_PATHS = (
					/Library/Frameworks/Freetype2.framework/Headers,
					/Library/Frameworks/SDL.framework/Headers,
					/Library/Frameworks/SDL_image.framework/Headers,
					/Library/Frameworks/libpng.framework/Headers,
				);
				PRODUCT_NAME = crawl;
				YACC_GENERATED_FILE_STEM = InputFileStem;
			};
			name = Debug;
		};
		D2660E020FF0864B00986331 /* Wizard */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COPY_PHASE_STRIP = NO;
				GCC_ENABLE_FIX_AND_CONTINUE = YES;
				GCC_OPTIMIZATION_LEVEL = 1;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "$(PROJECT_DIR)/AppHdr.h";
				GCC_PREPROCESSOR_DEFINITIONS = (
					OSX,
					USE_TILE,
					CLUA_BINDINGS,
					DB_NDBM,
					WIZARD,
					DEBUG,
					DEBUG_ITEM_SCAN,
				);
				GCC_VERSION = 4.0;
				GCC_WARN_SIGN_COMPARE = NO;
				GCC_WARN_UNUSED_FUNCTION = NO;
				GCC_WARN_UNUSED_LABEL = NO;
				HEADER_SEARCH_PATHS = (
					/Library/Frameworks/Freetype2.framework/Headers,
					/Library/Frameworks/SDL.framework/Headers,
					/Library/Frameworks/SDL_image.framework/Headers,
					/Library/Frameworks/libpng.framework/Headers,
				);
				PRODUCT_NAME = crawl;
				YACC_GENERATED_FILE_STEM = InputFileStem;
			};
			name = Wizard;
		};
		D2F271F90DA1C58C00445FE9 /* Development */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COPY_PHASE_STRIP = NO;
				GCC_VERSION = 4.0;
				INFOPLIST_FILE = "Crawl-Info.plist";
				INSTALL_PATH = "$(HOME)/Applications";
				OTHER_LDFLAGS = (
					"-framework",
					Foundation,
					"-framework",
					AppKit,
				);
				PREBINDING = NO;
				PRODUCT_NAME = Crawl;
				WRAPPER_EXTENSION = app;
			};
			name = Development;
		};
		D2F271FA0DA1C58C00445FE9 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COPY_PHASE_STRIP = YES;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				GCC_VERSION = 4.0;
				INFOPLIST_FILE = "Crawl-Info.plist";
				INSTALL_PATH = "$(HOME)/Applications";
				OTHER_LDFLAGS = (
					"-framework",
					Foundation,
					"-framework",
					AppKit,
				);
				PREBINDING = NO;
				PRODUCT_NAME = Crawl;
				WRAPPER_EXTENSION = app;
			};
			name = Release;
		};
		D2F271FB0DA1C58C00445FE9 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COPY_PHASE_STRIP = NO;
				GCC_VERSION = 4.0;
				INFOPLIST_FILE = "Crawl-Info.plist";
				INSTALL_PATH = "$(HOME)/Applications";
				OTHER_LDFLAGS = (
					"-framework",
					Foundation,
					"-framework",
					AppKit,
				);
				PREBINDING = NO;
				PRODUCT_NAME = Crawl;
				WRAPPER_EXTENSION = app;
			};
			name = Debug;
		};
		D2F271FC0DA1C58C00445FE9 /* Wizard */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_VERSION = 4.0;
				INFOPLIST_FILE = "Crawl-Info.plist";
				INSTALL_PATH = "$(HOME)/Applications";
				OTHER_LDFLAGS = (
					"-framework",
					Foundation,
					"-framework",
					AppKit,
				);
				PREBINDING = NO;
				PRODUCT_NAME = Crawl;
				WRAPPER_EXTENSION = app;
			};
			name = Wizard;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		1DEB928508733DD80010E9CD /* Build configuration list for PBXNativeTarget "Crawl-cmd" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				1DEB928608733DD80010E9CD /* Development */,
				7B97C0260A8ED34400CE8936 /* Release */,
				7B97C01F0A8ECFD700CE8936 /* Debug */,
				7B97C0240A8ED2AB00CE8936 /* Wizard */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Development;
		};
		1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "Crawl" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				1DEB928A08733DD80010E9CD /* Development */,
				7B97C0270A8ED34400CE8936 /* Release */,
				7B97C0200A8ECFD700CE8936 /* Debug */,
				7B97C0250A8ED2AB00CE8936 /* Wizard */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Development;
		};
		7B0EFD460BD12EA700002671 /* Build configuration list for PBXNativeTarget "Lua" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				7B0EFD470BD12EA700002671 /* Development */,
				7B0EFD480BD12EA700002671 /* Release */,
				7B0EFD490BD12EA700002671 /* Debug */,
				7B0EFD4A0BD12EA700002671 /* Wizard */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Development;
		};
		D2660DFE0FF0864B00986331 /* Build configuration list for PBXNativeTarget "Crawl-tiles-cmd" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				D2660DFF0FF0864B00986331 /* Development */,
				D2660E000FF0864B00986331 /* Release */,
				D2660E010FF0864B00986331 /* Debug */,
				D2660E020FF0864B00986331 /* Wizard */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Development;
		};
		D2F271FD0DA1C58C00445FE9 /* Build configuration list for PBXNativeTarget "Crawl" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				D2F271F90DA1C58C00445FE9 /* Development */,
				D2F271FA0DA1C58C00445FE9 /* Release */,
				D2F271FB0DA1C58C00445FE9 /* Debug */,
				D2F271FC0DA1C58C00445FE9 /* Wizard */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Development;
		};
/* End XCConfigurationList section */
	};
	rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
}