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 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167
|
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 44;
objects = {
/* Begin PBXBuildFile section */
4C59B09011E7964700760867 /* hints.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4C59B08A11E7964700760867 /* hints.cc */; };
4C59B09111E7964700760867 /* tiledgnbuf.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4C59B08B11E7964700760867 /* tiledgnbuf.cc */; };
4C59B09211E7964700760867 /* tilepick-p.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4C59B08C11E7964700760867 /* tilepick-p.cc */; };
4C59B09311E7964700760867 /* tilereg-mon.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4C59B08D11E7964700760867 /* tilereg-mon.cc */; };
4C59B09411E7964700760867 /* tileview.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4C59B08E11E7964700760867 /* tileview.cc */; };
4C59B0AD11E798C400760867 /* tiledef-feat.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4C59B0AA11E798C400760867 /* tiledef-feat.cc */; };
4C59B0AE11E798C400760867 /* tiledef-floor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4C59B0AB11E798C400760867 /* tiledef-floor.cc */; };
4C59B0AF11E798C400760867 /* tiledef-wall.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4C59B0AC11E798C400760867 /* tiledef-wall.cc */; };
4C59B0BF11E79BB100760867 /* dgn-actions.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4C59B08911E7964700760867 /* dgn-actions.cc */; };
4C59B0C011E79BB600760867 /* dgn-actions.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4C59B08911E7964700760867 /* dgn-actions.cc */; };
4C59B0D611E79F6800760867 /* hints.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4C59B08A11E7964700760867 /* hints.cc */; };
4C59B0E711E7A06D00760867 /* feat.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C59B0E411E7A06D00760867 /* feat.png */; };
4C59B0E811E7A06D00760867 /* floor.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C59B0E511E7A06D00760867 /* floor.png */; };
4C59B0E911E7A06D00760867 /* wall.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C59B0E611E7A06D00760867 /* wall.png */; };
7B09F5441133D63E004F149D /* godconduct.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F53B1133D63E004F149D /* godconduct.cc */; };
7B09F5451133D63E004F149D /* godpassive.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F53D1133D63E004F149D /* godpassive.cc */; };
7B09F5461133D63E004F149D /* godprayer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F53F1133D63E004F149D /* godprayer.cc */; };
7B09F5471133D63E004F149D /* l_feat.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F5411133D63E004F149D /* l_feat.cc */; };
7B09F5481133D63E004F149D /* l_spells.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F5421133D63E004F149D /* l_spells.cc */; };
7B09F5601133D66C004F149D /* mgen_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F54D1133D66C004F149D /* mgen_data.cc */; };
7B09F5611133D66C004F149D /* mislead.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F5501133D66C004F149D /* mislead.cc */; };
7B09F5621133D66C004F149D /* mon_resist_def.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F5521133D66C004F149D /* mon_resist_def.cc */; };
7B09F5631133D66C004F149D /* mon-clone.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F5541133D66C004F149D /* mon-clone.cc */; };
7B09F5641133D66C004F149D /* mon-death.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F5561133D66C004F149D /* mon-death.cc */; };
7B09F5651133D66C004F149D /* pattern.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F5591133D66C004F149D /* pattern.cc */; };
7B09F5661133D66C004F149D /* transform.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F55B1133D66C004F149D /* transform.cc */; };
7B09F56D1133D6AB004F149D /* behold.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F7210BD494400A99626 /* behold.cc */; };
7B09F56E1133D6AB004F149D /* bitary.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F7310BD494400A99626 /* bitary.cc */; };
7B09F56F1133D6AB004F149D /* branch.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F7510BD494400A99626 /* branch.cc */; };
7B09F5701133D6AB004F149D /* chardump.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F7810BD494400A99626 /* chardump.cc */; };
7B09F5711133D6AB004F149D /* cio.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F7A10BD494400A99626 /* cio.cc */; };
7B09F5721133D6AB004F149D /* cloud.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F7C10BD494400A99626 /* cloud.cc */; };
7B09F5731133D6AB004F149D /* clua.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F7E10BD494400A99626 /* clua.cc */; };
7B09F5741133D6AB004F149D /* cluautil.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F8010BD494400A99626 /* cluautil.cc */; };
7B09F5751133D6AB004F149D /* colour.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F8410BD494400A99626 /* colour.cc */; };
7B09F5761133D6AB004F149D /* command.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F8610BD494400A99626 /* command.cc */; };
7B09F5771133D6AB004F149D /* coord-circle.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F8910BD494400A99626 /* coord-circle.cc */; };
7B09F5781133D6AB004F149D /* coord.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F8B10BD494400A99626 /* coord.cc */; };
7B09F5791133D6AB004F149D /* coordit.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F8D10BD494400A99626 /* coordit.cc */; };
7B09F57A1133D6AB004F149D /* crash-u.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F9010BD494400A99626 /* crash-u.cc */; };
7B09F57B1133D6AB004F149D /* ctest.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F9310BD494400A99626 /* ctest.cc */; };
7B09F57C1133D6AB004F149D /* database.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F9510BD494400A99626 /* database.cc */; };
7B09F57D1133D6AB004F149D /* dbg-asrt.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F9710BD494400A99626 /* dbg-asrt.cc */; };
7B09F57E1133D6AB004F149D /* dbg-maps.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F9910BD494400A99626 /* dbg-maps.cc */; };
7B09F57F1133D6AB004F149D /* dbg-scan.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F9B10BD494400A99626 /* dbg-scan.cc */; };
7B09F5801133D6AB004F149D /* dbg-util.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F9D10BD494400A99626 /* dbg-util.cc */; };
7B09F5811133D6AB004F149D /* decks.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FA010BD494400A99626 /* decks.cc */; };
7B09F5821133D6AB004F149D /* delay.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FA310BD494400A99626 /* delay.cc */; };
7B09F5831133D6AB004F149D /* describe.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FA510BD494400A99626 /* describe.cc */; };
7B09F5841133D6AB004F149D /* dgnevent.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FA710BD494400A99626 /* dgnevent.cc */; };
7B09F5851133D6AB004F149D /* directn.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FA910BD494400A99626 /* directn.cc */; };
7B09F5861133D6AB004F149D /* dlua.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FAB10BD494400A99626 /* dlua.cc */; };
7B09F5871133D6AB004F149D /* dungeon.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FAD10BD494400A99626 /* dungeon.cc */; };
7B09F5881133D6AB004F149D /* effects.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FAF10BD494400A99626 /* effects.cc */; };
7B09F5891133D6AB004F149D /* exclude.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FB310BD494400A99626 /* exclude.cc */; };
7B09F58A1133D6AB004F149D /* feature.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FB610BD494400A99626 /* feature.cc */; };
7B09F58B1133D6AB004F149D /* fight.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FB810BD494400A99626 /* fight.cc */; };
7B09F58C1133D6AB004F149D /* files.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FBA10BD494400A99626 /* files.cc */; };
7B09F58D1133D6AB004F149D /* food.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FBE10BD494400A99626 /* food.cc */; };
7B09F58E1133D6AB004F149D /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FC010BD494400A99626 /* format.cc */; };
7B09F58F1133D6AB004F149D /* fprop.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FC210BD494400A99626 /* fprop.cc */; };
7B09F5901133D6AB004F149D /* geom2d.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FC410BD494400A99626 /* geom2d.cc */; };
7B09F5911133D6AB004F149D /* ghost.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FC610BD494400A99626 /* ghost.cc */; };
7B09F5921133D6AB004F149D /* godabil.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FC810BD494400A99626 /* godabil.cc */; };
7B09F5931133D6AB004F149D /* godconduct.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F53B1133D63E004F149D /* godconduct.cc */; };
7B09F5941133D6AB004F149D /* goditem.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FCA10BD494400A99626 /* goditem.cc */; };
7B09F5951133D6AB004F149D /* godpassive.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F53D1133D63E004F149D /* godpassive.cc */; };
7B09F5961133D6AB004F149D /* godprayer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F53F1133D63E004F149D /* godprayer.cc */; };
7B09F5971133D6AB004F149D /* godwrath.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FCC10BD494400A99626 /* godwrath.cc */; };
7B09F5981133D6AB004F149D /* hiscores.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FCE10BD494400A99626 /* hiscores.cc */; };
7B09F5991133D6AB004F149D /* initfile.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FD010BD494400A99626 /* initfile.cc */; };
7B09F59A1133D6AB004F149D /* invent.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FD210BD494400A99626 /* invent.cc */; };
7B09F59B1133D6AB004F149D /* it_use2.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FD410BD494400A99626 /* it_use2.cc */; };
7B09F59C1133D6AB004F149D /* it_use3.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FD610BD494400A99626 /* it_use3.cc */; };
7B09F59D1133D6AB004F149D /* item_use.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FD810BD494400A99626 /* item_use.cc */; };
7B09F59E1133D6AB004F149D /* itemname.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FDA10BD494400A99626 /* itemname.cc */; };
7B09F59F1133D6AB004F149D /* itemprop.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FDD10BD494400A99626 /* itemprop.cc */; };
7B09F5A01133D6AB004F149D /* items.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FDF10BD494400A99626 /* items.cc */; };
7B09F5A11133D6AB004F149D /* jobs.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FE110BD494400A99626 /* jobs.cc */; };
7B09F5A21133D6AB004F149D /* kills.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FE310BD494400A99626 /* kills.cc */; };
7B09F5A31133D6AB004F149D /* l_crawl.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FE510BD494400A99626 /* l_crawl.cc */; };
7B09F5A41133D6AB004F149D /* l_debug.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FE610BD494400A99626 /* l_debug.cc */; };
7B09F5A51133D6AB004F149D /* l_dgn.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FE810BD494400A99626 /* l_dgn.cc */; };
7B09F5A61133D6AB004F149D /* l_dgnbld.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FE910BD494400A99626 /* l_dgnbld.cc */; };
7B09F5A71133D6AB004F149D /* l_dgnevt.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FEA10BD494400A99626 /* l_dgnevt.cc */; };
7B09F5A81133D6AB004F149D /* l_dgngrd.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FEB10BD494400A99626 /* l_dgngrd.cc */; };
7B09F5A91133D6AB004F149D /* l_dgnit.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FEC10BD494400A99626 /* l_dgnit.cc */; };
7B09F5AA1133D6AB004F149D /* l_dgnlvl.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FED10BD494400A99626 /* l_dgnlvl.cc */; };
7B09F5AB1133D6AB004F149D /* l_dgnmon.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FEE10BD494400A99626 /* l_dgnmon.cc */; };
7B09F5AC1133D6AB004F149D /* l_dgntil.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FEF10BD494400A99626 /* l_dgntil.cc */; };
7B09F5AD1133D6AB004F149D /* l_feat.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F5411133D63E004F149D /* l_feat.cc */; };
7B09F5AE1133D6AB004F149D /* l_file.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FF010BD494400A99626 /* l_file.cc */; };
7B09F5AF1133D6AB004F149D /* l_food.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FF110BD494400A99626 /* l_food.cc */; };
7B09F5B01133D6AB004F149D /* l_global.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FF210BD494400A99626 /* l_global.cc */; };
7B09F5B11133D6AB004F149D /* l_item.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FF310BD494400A99626 /* l_item.cc */; };
7B09F5B21133D6AB004F149D /* l_los.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FF510BD494400A99626 /* l_los.cc */; };
7B09F5B31133D6AB004F149D /* l_mapgrd.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FF610BD494400A99626 /* l_mapgrd.cc */; };
7B09F5B41133D6AB004F149D /* l_mapmrk.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FF710BD494400A99626 /* l_mapmrk.cc */; };
7B09F5B51133D6AB004F149D /* l_moninf.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FF810BD494400A99626 /* l_moninf.cc */; };
7B09F5B61133D6AB004F149D /* l_mons.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FF910BD494400A99626 /* l_mons.cc */; };
7B09F5B71133D6AB004F149D /* l_option.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FFA10BD494400A99626 /* l_option.cc */; };
7B09F5B81133D6AB004F149D /* l_spells.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F5421133D63E004F149D /* l_spells.cc */; };
7B09F5B91133D6AB004F149D /* l_subvault.cc in Sources */ = {isa = PBXBuildFile; fileRef = 93F94B1E10C178990077B142 /* l_subvault.cc */; };
7B09F5BA1133D6AB004F149D /* l_travel.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FFB10BD494400A99626 /* l_travel.cc */; };
7B09F5BB1133D6AB004F149D /* l_view.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FFC10BD494400A99626 /* l_view.cc */; };
7B09F5BC1133D6AB004F149D /* l_you.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FFD10BD494400A99626 /* l_you.cc */; };
7B09F5BD1133D6AB004F149D /* lev-pand.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FFE10BD494400A99626 /* lev-pand.cc */; };
7B09F5BE1133D6AB004F149D /* libgui.cc in Sources */ = {isa = PBXBuildFile; fileRef = B02C574310670C63006AC96D /* libgui.cc */; };
7B09F5C01133D6AB004F149D /* libutil.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6400310BD494400A99626 /* libutil.cc */; };
7B09F5C21133D6AB004F149D /* los.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6400910BD494400A99626 /* los.cc */; };
7B09F5C31133D6AB004F149D /* los_def.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6400710BD494400A99626 /* los_def.cc */; };
7B09F5C41133D6AB004F149D /* losparam.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6400B10BD494400A99626 /* losparam.cc */; };
7B09F5C51133D6AB004F149D /* luaterp.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6400D10BD494400A99626 /* luaterp.cc */; };
7B09F5C61133D6AB004F149D /* macro.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6400F10BD494400A99626 /* macro.cc */; };
7B09F5C81133D6AB004F149D /* main.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6401110BD494400A99626 /* main.cc */; };
7B09F5C91133D6AB004F149D /* makeitem.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6401510BD494400A99626 /* makeitem.cc */; };
7B09F5CA1133D6AB004F149D /* map_knowledge.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6401710BD494400A99626 /* map_knowledge.cc */; };
7B09F5CB1133D6AB004F149D /* mapmark.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6401910BD494400A99626 /* mapmark.cc */; };
7B09F5CC1133D6AB004F149D /* maps.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6401B10BD494400A99626 /* maps.cc */; };
7B09F5CD1133D6AB004F149D /* menu.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6401E10BD494400A99626 /* menu.cc */; };
7B09F5CE1133D6AB004F149D /* message.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6402010BD494400A99626 /* message.cc */; };
7B09F5CF1133D6AB004F149D /* mgen_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F54D1133D66C004F149D /* mgen_data.cc */; };
7B09F5D01133D6AB004F149D /* misc.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6402210BD494400A99626 /* misc.cc */; };
7B09F5D11133D6AB004F149D /* mislead.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F5501133D66C004F149D /* mislead.cc */; };
7B09F5D21133D6AB004F149D /* mon-abil.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6402410BD494400A99626 /* mon-abil.cc */; };
7B09F5D31133D6AB004F149D /* mon-act.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6402610BD494400A99626 /* mon-act.cc */; };
7B09F5D41133D6AB004F149D /* mon-behv.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6402810BD494400A99626 /* mon-behv.cc */; };
7B09F5D51133D6AB004F149D /* mon-cast.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6402A10BD494400A99626 /* mon-cast.cc */; };
7B09F5D61133D6AB004F149D /* mon-clone.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F5541133D66C004F149D /* mon-clone.cc */; };
7B09F5D71133D6AB004F149D /* mon-death.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F5561133D66C004F149D /* mon-death.cc */; };
7B09F5D81133D6AB004F149D /* mon-gear.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6402D10BD494400A99626 /* mon-gear.cc */; };
7B09F5D91133D6AB004F149D /* mon-grow.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6402F10BD494400A99626 /* mon-grow.cc */; };
7B09F5DA1133D6AB004F149D /* mon-info.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6403110BD494400A99626 /* mon-info.cc */; };
7B09F5DB1133D6AB004F149D /* mon-iter.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6403310BD494400A99626 /* mon-iter.cc */; };
7B09F5DC1133D6AB004F149D /* mon-movetarget.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6403510BD494400A99626 /* mon-movetarget.cc */; };
7B09F5DD1133D6AB004F149D /* mon-pathfind.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6403710BD494400A99626 /* mon-pathfind.cc */; };
7B09F5DE1133D6AB004F149D /* mon-pick.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6403910BD494400A99626 /* mon-pick.cc */; };
7B09F5DF1133D6AB004F149D /* mon-place.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6403B10BD494400A99626 /* mon-place.cc */; };
7B09F5E01133D6AB004F149D /* mon-speak.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6403D10BD494400A99626 /* mon-speak.cc */; };
7B09F5E11133D6AB004F149D /* mon-stuff.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6404010BD494400A99626 /* mon-stuff.cc */; };
7B09F5E21133D6AB004F149D /* mon-transit.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6404210BD494400A99626 /* mon-transit.cc */; };
7B09F5E31133D6AB004F149D /* mon-util.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6404410BD494400A99626 /* mon-util.cc */; };
7B09F5E41133D6AB004F149D /* mon_resist_def.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F5521133D66C004F149D /* mon_resist_def.cc */; };
7B09F5E51133D6AB004F149D /* monster.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6404610BD494400A99626 /* monster.cc */; };
7B09F5E61133D6AB004F149D /* mt19937ar.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6404A10BD494500A99626 /* mt19937ar.cc */; };
7B09F5E71133D6AB004F149D /* mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6404C10BD494500A99626 /* mutation.cc */; };
7B09F5E81133D6AB004F149D /* newgame.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6404E10BD494500A99626 /* newgame.cc */; };
7B09F5E91133D6AB004F149D /* ng-init.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6405010BD494500A99626 /* ng-init.cc */; };
7B09F5EA1133D6AB004F149D /* ng-input.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6405210BD494500A99626 /* ng-input.cc */; };
7B09F5EB1133D6AB004F149D /* ng-restr.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6405410BD494500A99626 /* ng-restr.cc */; };
7B09F5EC1133D6AB004F149D /* notes.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6405610BD494500A99626 /* notes.cc */; };
7B09F5ED1133D6AB004F149D /* ouch.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6405910BD494500A99626 /* ouch.cc */; };
7B09F5EE1133D6AB004F149D /* output.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6405B10BD494500A99626 /* output.cc */; };
7B09F5EF1133D6AB004F149D /* pattern.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F5591133D66C004F149D /* pattern.cc */; };
7B09F5F01133D6AB004F149D /* place.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6405F10BD494500A99626 /* place.cc */; };
7B09F5F11133D6AB004F149D /* player.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6406210BD494500A99626 /* player.cc */; };
7B09F5F21133D6AB004F149D /* quiver.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6406410BD494500A99626 /* quiver.cc */; };
7B09F5F31133D6AB004F149D /* random.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6406710BD494500A99626 /* random.cc */; };
7B09F5F41133D6AB004F149D /* ray.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6406910BD494500A99626 /* ray.cc */; };
7B09F5F51133D6AB004F149D /* religion.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6406B10BD494500A99626 /* religion.cc */; };
7B09F5F61133D6AB004F149D /* rng.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6406D10BD494500A99626 /* rng.cc */; };
7B09F5F71133D6AB004F149D /* sha256.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6406F10BD494500A99626 /* sha256.cc */; };
7B09F5F81133D6AB004F149D /* shopping.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6407110BD494500A99626 /* shopping.cc */; };
7B09F5F91133D6AB004F149D /* shout.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6407310BD494500A99626 /* shout.cc */; };
7B09F5FA1133D6AB004F149D /* show.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6407510BD494500A99626 /* show.cc */; };
7B09F5FB1133D6AB004F149D /* showsymb.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6407710BD494500A99626 /* showsymb.cc */; };
7B09F5FC1133D6AB004F149D /* skills.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6407910BD494500A99626 /* skills.cc */; };
7B09F5FD1133D6AB004F149D /* skills2.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6407B10BD494500A99626 /* skills2.cc */; };
7B09F5FE1133D6AB004F149D /* species.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6407D10BD494500A99626 /* species.cc */; };
7B09F5FF1133D6AB004F149D /* spells1.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6407F10BD494500A99626 /* spells1.cc */; };
7B09F6001133D6AB004F149D /* spells2.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6408110BD494500A99626 /* spells2.cc */; };
7B09F6011133D6AB004F149D /* spells3.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6408310BD494500A99626 /* spells3.cc */; };
7B09F6021133D6AB004F149D /* spells4.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6408510BD494500A99626 /* spells4.cc */; };
7B09F6031133D6AB004F149D /* spl-book.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6408710BD494500A99626 /* spl-book.cc */; };
7B09F6041133D6AB004F149D /* spl-cast.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6408910BD494500A99626 /* spl-cast.cc */; };
7B09F6051133D6AB004F149D /* spl-mis.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6408C10BD494500A99626 /* spl-mis.cc */; };
7B09F6061133D6AB004F149D /* spl-util.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6408E10BD494500A99626 /* spl-util.cc */; };
7B09F6071133D6AB004F149D /* sqldbm.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6409010BD494500A99626 /* sqldbm.cc */; };
7B09F6081133D6AB004F149D /* stash.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6409210BD494500A99626 /* stash.cc */; };
7B09F6091133D6AB004F149D /* state.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6409410BD494500A99626 /* state.cc */; };
7B09F60A1133D6AB004F149D /* store.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6409610BD494500A99626 /* store.cc */; };
7B09F60B1133D6AB004F149D /* stuff.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6409810BD494500A99626 /* stuff.cc */; };
7B09F60C1133D6AB004F149D /* tags.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6409A10BD494500A99626 /* tags.cc */; };
7B09F60D1133D6AB004F149D /* teleport.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6409C10BD494500A99626 /* teleport.cc */; };
7B09F60E1133D6AB004F149D /* terrain.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6409E10BD494500A99626 /* terrain.cc */; };
7B09F6201133D6AB004F149D /* transform.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F55B1133D66C004F149D /* transform.cc */; };
7B09F6211133D6AB004F149D /* traps.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D640A210BD494500A99626 /* traps.cc */; };
7B09F6221133D6AB004F149D /* travel.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D640A410BD494500A99626 /* travel.cc */; };
7B09F6241133D6AB004F149D /* version.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D640A810BD494500A99626 /* version.cc */; };
7B09F6251133D6AB004F149D /* view.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D640AA10BD494500A99626 /* view.cc */; };
7B09F6261133D6AB004F149D /* viewchar.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D640AC10BD494500A99626 /* viewchar.cc */; };
7B09F6271133D6AB004F149D /* viewgeom.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D640AE10BD494500A99626 /* viewgeom.cc */; };
7B09F6281133D6AB004F149D /* viewmap.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D640B010BD494500A99626 /* viewmap.cc */; };
7B09F6291133D6AB004F149D /* wiz-dgn.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D640B210BD494500A99626 /* wiz-dgn.cc */; };
7B09F62A1133D6AB004F149D /* wiz-fsim.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D640B410BD494500A99626 /* wiz-fsim.cc */; };
7B09F62B1133D6AB004F149D /* wiz-item.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D640B610BD494500A99626 /* wiz-item.cc */; };
7B09F62C1133D6AB004F149D /* wiz-mon.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D640B810BD494500A99626 /* wiz-mon.cc */; };
7B09F62D1133D6AB004F149D /* wiz-you.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D640BA10BD494500A99626 /* wiz-you.cc */; };
7B09F62E1133D6AB004F149D /* xom.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D640BC10BD494500A99626 /* xom.cc */; };
7B09F63F1133D823004F149D /* dgn-height.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F6371133D823004F149D /* dgn-height.cc */; };
7B09F6401133D823004F149D /* dgn-overview.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F6391133D823004F149D /* dgn-overview.cc */; };
7B09F6411133D823004F149D /* dgn-shoals.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F63B1133D823004F149D /* dgn-shoals.cc */; };
7B09F6421133D823004F149D /* dgn-swamp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F63D1133D823004F149D /* dgn-swamp.cc */; };
7B09F6431133D823004F149D /* dgn-height.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F6371133D823004F149D /* dgn-height.cc */; };
7B09F6441133D823004F149D /* dgn-overview.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F6391133D823004F149D /* dgn-overview.cc */; };
7B09F6451133D823004F149D /* dgn-shoals.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F63B1133D823004F149D /* dgn-shoals.cc */; };
7B09F6461133D823004F149D /* dgn-swamp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F63D1133D823004F149D /* dgn-swamp.cc */; };
7B09F64A1133D92C004F149D /* message-stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F6491133D92C004F149D /* message-stream.cc */; };
7B09F64B1133D92C004F149D /* message-stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F6491133D92C004F149D /* message-stream.cc */; };
7B09F6501133DA4D004F149D /* mon-project.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F64E1133DA4D004F149D /* mon-project.cc */; };
7B09F6511133DA4D004F149D /* mon-project.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B09F64E1133DA4D004F149D /* mon-project.cc */; };
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 */; };
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 */; };
7B51657B11859CD6005B23ED /* tiledoll.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B51655D11859CD6005B23ED /* tiledoll.cc */; };
7B51657C11859CD6005B23ED /* tilereg-crt.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B51655F11859CD6005B23ED /* tilereg-crt.cc */; };
7B51657D11859CD6005B23ED /* tilereg-dgn.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B51656111859CD6005B23ED /* tilereg-dgn.cc */; };
7B51657E11859CD6005B23ED /* tilereg-doll.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B51656311859CD6005B23ED /* tilereg-doll.cc */; };
7B51657F11859CD6005B23ED /* tilereg-grid.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B51656511859CD6005B23ED /* tilereg-grid.cc */; };
7B51658011859CD6005B23ED /* tilereg-inv.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B51656711859CD6005B23ED /* tilereg-inv.cc */; };
7B51658111859CD6005B23ED /* tilereg-map.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B51656911859CD6005B23ED /* tilereg-map.cc */; };
7B51658211859CD6005B23ED /* tilereg-mem.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B51656B11859CD6005B23ED /* tilereg-mem.cc */; };
7B51658311859CD6005B23ED /* tilereg-menu.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B51656D11859CD6005B23ED /* tilereg-menu.cc */; };
7B51658411859CD6005B23ED /* tilereg-msg.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B51656F11859CD6005B23ED /* tilereg-msg.cc */; };
7B51658511859CD6005B23ED /* tilereg-spl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B51657111859CD6005B23ED /* tilereg-spl.cc */; };
7B51658611859CD6005B23ED /* tilereg-stat.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B51657311859CD6005B23ED /* tilereg-stat.cc */; };
7B51658711859CD6005B23ED /* tilereg-tab.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B51657511859CD6005B23ED /* tilereg-tab.cc */; };
7B51658811859CD6005B23ED /* tilereg-text.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B51657711859CD6005B23ED /* tilereg-text.cc */; };
7B51658911859CD6005B23ED /* tilereg-title.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B51657911859CD6005B23ED /* tilereg-title.cc */; };
7B51658E11859CE3005B23ED /* glwrapper-ogl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B51658A11859CE3005B23ED /* glwrapper-ogl.cc */; };
7B51658F11859CE3005B23ED /* glwrapper.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B51658C11859CE3005B23ED /* glwrapper.cc */; };
7B51659411859CFA005B23ED /* act-iter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B51659211859CFA005B23ED /* act-iter.cc */; };
7B51659511859CFA005B23ED /* act-iter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B51659211859CFA005B23ED /* act-iter.cc */; };
7B51659811859D1A005B23ED /* fontwrapper-ft.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B51659611859D1A005B23ED /* fontwrapper-ft.cc */; };
7B51659C11859D30005B23ED /* dgl-message.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B51659911859D30005B23ED /* dgl-message.cc */; };
7B51659D11859D30005B23ED /* dgl-message.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B51659911859D30005B23ED /* dgl-message.cc */; };
7B5165A011859D44005B23ED /* losglobal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B51659E11859D44005B23ED /* losglobal.cc */; };
7B5165A111859D44005B23ED /* losglobal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B51659E11859D44005B23ED /* losglobal.cc */; };
7B5165AD11859D5A005B23ED /* ng-setup.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B5165A411859D5A005B23ED /* ng-setup.cc */; };
7B5165AE11859D5A005B23ED /* ng-wanderer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B5165A611859D5A005B23ED /* ng-wanderer.cc */; };
7B5165AF11859D5A005B23ED /* place-info.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B5165A811859D5A005B23ED /* place-info.cc */; };
7B5165B011859D5A005B23ED /* player-act.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B5165AA11859D5A005B23ED /* player-act.cc */; };
7B5165B111859D5A005B23ED /* player-stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B5165AB11859D5A005B23ED /* player-stats.cc */; };
7B5165B211859D5A005B23ED /* ng-setup.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B5165A411859D5A005B23ED /* ng-setup.cc */; };
7B5165B311859D5A005B23ED /* ng-wanderer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B5165A611859D5A005B23ED /* ng-wanderer.cc */; };
7B5165B411859D5A005B23ED /* place-info.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B5165A811859D5A005B23ED /* place-info.cc */; };
7B5165B511859D5A005B23ED /* player-act.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B5165AA11859D5A005B23ED /* player-act.cc */; };
7B5165B611859D5A005B23ED /* player-stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B5165AB11859D5A005B23ED /* player-stats.cc */; };
7B5165C611859D82005B23ED /* random-var.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B5165B711859D82005B23ED /* random-var.cc */; };
7B5165C711859D82005B23ED /* spl-zap.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B5165BA11859D82005B23ED /* spl-zap.cc */; };
7B5165C811859D82005B23ED /* sprint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B5165BC11859D82005B23ED /* sprint.cc */; };
7B5165C911859D82005B23ED /* stairs.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B5165BE11859D82005B23ED /* stairs.cc */; };
7B5165CA11859D82005B23ED /* startup.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B5165C011859D82005B23ED /* startup.cc */; };
7B5165CB11859D82005B23ED /* tagstring.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B5165C311859D82005B23ED /* tagstring.cc */; };
7B5165CC11859D82005B23ED /* random-var.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B5165B711859D82005B23ED /* random-var.cc */; };
7B5165CD11859D82005B23ED /* spl-zap.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B5165BA11859D82005B23ED /* spl-zap.cc */; };
7B5165CE11859D82005B23ED /* sprint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B5165BC11859D82005B23ED /* sprint.cc */; };
7B5165CF11859D82005B23ED /* stairs.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B5165BE11859D82005B23ED /* stairs.cc */; };
7B5165D011859D82005B23ED /* startup.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B5165C011859D82005B23ED /* startup.cc */; };
7B5165D111859D82005B23ED /* tagstring.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B5165C311859D82005B23ED /* tagstring.cc */; };
7B5165D511859D90005B23ED /* windowmanager-sdl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B5165D211859D90005B23ED /* windowmanager-sdl.cc */; };
7BBC4A070B0F783C00F27D45 /* levcomp.lpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B352ED10B001B9E00CABB32 /* levcomp.lpp */; };
7BBC4A080B0F783C00F27D45 /* levcomp.ypp in Sources */ = {isa = PBXBuildFile; fileRef = 7B352ED20B001B9E00CABB32 /* levcomp.ypp */; };
7BDE8444116D247D00974D63 /* player-equip.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BDE8442116D247D00974D63 /* player-equip.cc */; };
7BDE8445116D247D00974D63 /* player-equip.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BDE8442116D247D00974D63 /* player-equip.cc */; };
7BDE8447116D24B300974D63 /* abl-show.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F5D10BD494300A99626 /* abl-show.cc */; };
7BDE8448116D24B300974D63 /* abyss.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F5F10BD494300A99626 /* abyss.cc */; };
7BDE8449116D24B300974D63 /* actor-los.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F6110BD494300A99626 /* actor-los.cc */; };
7BDE844A116D24B300974D63 /* actor.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F6210BD494300A99626 /* actor.cc */; };
7BDE844B116D24B300974D63 /* areas.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F6610BD494300A99626 /* areas.cc */; };
7BDE844C116D24B300974D63 /* arena.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F6810BD494300A99626 /* arena.cc */; };
7BDE844D116D24B300974D63 /* artefact.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F6C10BD494300A99626 /* artefact.cc */; };
7BDE844E116D24B300974D63 /* attitude-change.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F6E10BD494300A99626 /* attitude-change.cc */; };
7BDE844F116D24B300974D63 /* beam.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F7010BD494300A99626 /* beam.cc */; };
7BDE8456116D24E600974D63 /* libunix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BDE8454116D24E600974D63 /* libunix.cc */; };
93F94B1F10C178990077B142 /* l_subvault.cc in Sources */ = {isa = PBXBuildFile; fileRef = 93F94B1E10C178990077B142 /* l_subvault.cc */; };
B032D686106C02070002D70D /* liblua.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B0EFD420BD12E9200002671 /* liblua.a */; };
B032D687106C02070002D70D /* libreadline.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B3B07560BD13A8100F2980E /* libreadline.dylib */; };
B032D688106C02070002D70D /* libncurses.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B3B075F0BD13AF000F2980E /* libncurses.dylib */; };
B032D68C106C02070002D70D /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B0B5DFC91066F9A80020B21F /* OpenGL.framework */; };
B032D68E106C02070002D70D /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B02C57901067129A006AC96D /* AppKit.framework */; };
B032D68F106C02150002D70D /* levcomp.ypp in Sources */ = {isa = PBXBuildFile; fileRef = 7B352ED20B001B9E00CABB32 /* levcomp.ypp */; };
B032D690106C02150002D70D /* levcomp.lpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B352ED10B001B9E00CABB32 /* levcomp.lpp */; };
B032D691106C02150002D70D /* SDLMain.m in Sources */ = {isa = PBXBuildFile; fileRef = B02C576010670ED2006AC96D /* SDLMain.m */; };
B032D692106C02150002D70D /* tiledef-dngn.cc in Sources */ = {isa = PBXBuildFile; fileRef = B0B5DFD31066FA240020B21F /* tiledef-dngn.cc */; };
B032D693106C02150002D70D /* tiledef-gui.cc in Sources */ = {isa = PBXBuildFile; fileRef = B0B5DFD51066FA240020B21F /* tiledef-gui.cc */; };
B032D694106C02150002D70D /* tiledef-main.cc in Sources */ = {isa = PBXBuildFile; fileRef = B0B5DFD71066FA240020B21F /* tiledef-main.cc */; };
B032D695106C02150002D70D /* tiledef-player.cc in Sources */ = {isa = PBXBuildFile; fileRef = B0B5DFD91066FA240020B21F /* tiledef-player.cc */; };
B032D696106C02150002D70D /* tiledef-unrand.cc in Sources */ = {isa = PBXBuildFile; fileRef = B0B5DFDB1066FA240020B21F /* tiledef-unrand.cc */; };
B032D697106C02150002D70D /* libgui.cc in Sources */ = {isa = PBXBuildFile; fileRef = B02C574310670C63006AC96D /* libgui.cc */; };
B032D698106C02150002D70D /* tilesdl.cc in Sources */ = {isa = PBXBuildFile; fileRef = D2660E120FF0868B00986331 /* tilesdl.cc */; };
B032D6DC106C02150002D70D /* mapdef.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B352E9D0B00183400CABB32 /* mapdef.cc */; };
B032D6F4106C02150002D70D /* tilebuf.cc in Sources */ = {isa = PBXBuildFile; fileRef = D2660E080FF0868B00986331 /* tilebuf.cc */; };
B032D6F5106C02150002D70D /* tilefont.cc in Sources */ = {isa = PBXBuildFile; fileRef = D2660E0A0FF0868B00986331 /* tilefont.cc */; };
B032D6F6106C02150002D70D /* tilemcache.cc in Sources */ = {isa = PBXBuildFile; fileRef = D2660E0C0FF0868B00986331 /* tilemcache.cc */; };
B032D6F7106C02150002D70D /* tilepick.cc in Sources */ = {isa = PBXBuildFile; fileRef = D2660E0E0FF0868B00986331 /* tilepick.cc */; };
B032D6F8106C02150002D70D /* tilereg.cc in Sources */ = {isa = PBXBuildFile; fileRef = D2660E0F0FF0868B00986331 /* tilereg.cc */; };
B032D6F9106C02150002D70D /* tiletex.cc in Sources */ = {isa = PBXBuildFile; fileRef = D2660E140FF0868B00986331 /* tiletex.cc */; };
B032D6FB106C02540002D70D /* dat in Resources */ = {isa = PBXBuildFile; fileRef = D2F271FE0DA1C5AD00445FE9 /* dat */; };
B032D6FC106C02540002D70D /* docs in Resources */ = {isa = PBXBuildFile; fileRef = D2F2723F0DA1C61600445FE9 /* docs */; };
B032D6FD106C02540002D70D /* Crawl.icns in Resources */ = {isa = PBXBuildFile; fileRef = D2A696BC0DA29D4E00FDDE82 /* Crawl.icns */; };
B032D700106C02930002D70D /* dngn.png in Copy Dungeon Tiles */ = {isa = PBXBuildFile; fileRef = B090C2EE10671F8900AE855D /* dngn.png */; };
B032D701106C02930002D70D /* gui.png in Copy Dungeon Tiles */ = {isa = PBXBuildFile; fileRef = B090C2EF10671F8900AE855D /* gui.png */; };
B032D702106C02930002D70D /* main.png in Copy Dungeon Tiles */ = {isa = PBXBuildFile; fileRef = B090C2F010671F8900AE855D /* main.png */; };
B032D703106C02930002D70D /* player.png in Copy Dungeon Tiles */ = {isa = PBXBuildFile; fileRef = B090C2F110671F8900AE855D /* player.png */; };
B082657910731B5B006EEC5A /* sqlite3.c in Sources */ = {isa = PBXBuildFile; fileRef = B082657610731AB5006EEC5A /* sqlite3.c */; };
B090C2F210671F8900AE855D /* dngn.png in Copy Dungeon Tiles */ = {isa = PBXBuildFile; fileRef = B090C2EE10671F8900AE855D /* dngn.png */; };
B090C2F310671F8900AE855D /* gui.png in Copy Dungeon Tiles */ = {isa = PBXBuildFile; fileRef = B090C2EF10671F8900AE855D /* gui.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 */; };
B09CCE671083159100623CFA /* settings in Resources */ = {isa = PBXBuildFile; fileRef = B09CCE5A1083159100623CFA /* settings */; };
B09CCE6C108315B300623CFA /* settings in Resources */ = {isa = PBXBuildFile; fileRef = B09CCE5A1083159100623CFA /* settings */; };
B0C9CF51108DF1F900E7FA35 /* main.cc in Sources */ = {isa = PBXBuildFile; fileRef = D25C91860FF0368E00D9E8AD /* main.cc */; };
B0C9CF52108DF1F900E7FA35 /* tile.cc in Sources */ = {isa = PBXBuildFile; fileRef = D25C91870FF0368E00D9E8AD /* tile.cc */; };
B0C9CF53108DF1F900E7FA35 /* tile_colour.cc in Sources */ = {isa = PBXBuildFile; fileRef = D25C91890FF0368E00D9E8AD /* tile_colour.cc */; };
B0C9CF56108DF1F900E7FA35 /* tile_page.cc in Sources */ = {isa = PBXBuildFile; fileRef = D25C918E0FF0368E00D9E8AD /* tile_page.cc */; };
B0C9CF57108DF20100E7FA35 /* tile_list_processor.cc in Sources */ = {isa = PBXBuildFile; fileRef = D25C918C0FF0368E00D9E8AD /* tile_list_processor.cc */; };
B0C9CF58108DF20F00E7FA35 /* libpng.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B0F7DFEE1086F4EA008FFA70 /* libpng.framework */; };
B0C9CF59108DF21300E7FA35 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B0F7DF091086EE7A008FFA70 /* SDL.framework */; };
B0C9CF5A108DF21700E7FA35 /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B0F7DF861086F0CB008FFA70 /* SDL_image.framework */; };
B0C9CF5E108DF23400E7FA35 /* libpng.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B0F7DFEE1086F4EA008FFA70 /* libpng.framework */; };
B0C9CF5F108DF23700E7FA35 /* SDL_image.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B0F7DF861086F0CB008FFA70 /* SDL_image.framework */; };
B0C9CF60108DF23900E7FA35 /* SDL.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B0F7DF091086EE7A008FFA70 /* SDL.framework */; };
B0C9CF87108DF38200E7FA35 /* SDLMain.m in Sources */ = {isa = PBXBuildFile; fileRef = B02C576010670ED2006AC96D /* SDLMain.m */; };
B0C9CFE0108E014800E7FA35 /* libSQLite.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B082656F10731A95006EEC5A /* libSQLite.a */; };
B0F7DEF81086EDFE008FFA70 /* Freetype2.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B0F7DEF51086EDE5008FFA70 /* Freetype2.framework */; };
B0F7DF181086EEBC008FFA70 /* SDL.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B0F7DF091086EE7A008FFA70 /* SDL.framework */; };
B0F7DF191086EEC6008FFA70 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B0F7DF091086EE7A008FFA70 /* SDL.framework */; };
B0F7DF1A1086EEC6008FFA70 /* Freetype2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B0F7DEF51086EDE5008FFA70 /* Freetype2.framework */; };
B0F7DF8B1086F0D5008FFA70 /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B0F7DF861086F0CB008FFA70 /* SDL_image.framework */; };
B0F7DF8C1086F0DB008FFA70 /* SDL_image.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B0F7DF861086F0CB008FFA70 /* SDL_image.framework */; };
B0F7DFEF1086F4F1008FFA70 /* libpng.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B0F7DFEE1086F4EA008FFA70 /* libpng.framework */; };
B0F7DFF01086F4F6008FFA70 /* libpng.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B0F7DFEE1086F4EA008FFA70 /* libpng.framework */; };
D2A696BD0DA29D4E00FDDE82 /* Crawl.icns in Resources */ = {isa = PBXBuildFile; fileRef = D2A696BC0DA29D4E00FDDE82 /* Crawl.icns */; };
D2F272350DA1C5AD00445FE9 /* dat in Resources */ = {isa = PBXBuildFile; fileRef = D2F271FE0DA1C5AD00445FE9 /* dat */; };
D2F2725B0DA1C61600445FE9 /* docs in Resources */ = {isa = PBXBuildFile; fileRef = D2F2723F0DA1C61600445FE9 /* docs */; };
E5D640BE10BD494500A99626 /* abl-show.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F5D10BD494300A99626 /* abl-show.cc */; };
E5D640BF10BD494500A99626 /* abyss.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F5F10BD494300A99626 /* abyss.cc */; };
E5D640C010BD494500A99626 /* actor-los.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F6110BD494300A99626 /* actor-los.cc */; };
E5D640C110BD494500A99626 /* actor.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F6210BD494300A99626 /* actor.cc */; };
E5D640C210BD494500A99626 /* AppHdr.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F6410BD494300A99626 /* AppHdr.cc */; };
E5D640C310BD494500A99626 /* areas.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F6610BD494300A99626 /* areas.cc */; };
E5D640C410BD494500A99626 /* arena.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F6810BD494300A99626 /* arena.cc */; };
E5D640C510BD494500A99626 /* artefact.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F6C10BD494300A99626 /* artefact.cc */; };
E5D640C610BD494500A99626 /* attitude-change.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F6E10BD494300A99626 /* attitude-change.cc */; };
E5D640C710BD494500A99626 /* beam.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F7010BD494300A99626 /* beam.cc */; };
E5D640C810BD494500A99626 /* behold.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F7210BD494400A99626 /* behold.cc */; };
E5D640C910BD494500A99626 /* bitary.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F7310BD494400A99626 /* bitary.cc */; };
E5D640CA10BD494500A99626 /* branch.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F7510BD494400A99626 /* branch.cc */; };
E5D640CB10BD494500A99626 /* chardump.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F7810BD494400A99626 /* chardump.cc */; };
E5D640CC10BD494500A99626 /* cio.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F7A10BD494400A99626 /* cio.cc */; };
E5D640CD10BD494500A99626 /* cloud.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F7C10BD494400A99626 /* cloud.cc */; };
E5D640CE10BD494500A99626 /* clua.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F7E10BD494400A99626 /* clua.cc */; };
E5D640CF10BD494500A99626 /* cluautil.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F8010BD494400A99626 /* cluautil.cc */; };
E5D640D010BD494500A99626 /* colour.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F8410BD494400A99626 /* colour.cc */; };
E5D640D110BD494500A99626 /* command.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F8610BD494400A99626 /* command.cc */; };
E5D640D210BD494500A99626 /* coord-circle.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F8910BD494400A99626 /* coord-circle.cc */; };
E5D640D310BD494500A99626 /* coord.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F8B10BD494400A99626 /* coord.cc */; };
E5D640D410BD494500A99626 /* coordit.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F8D10BD494400A99626 /* coordit.cc */; };
E5D640D610BD494500A99626 /* crash-u.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F9010BD494400A99626 /* crash-u.cc */; };
E5D640D810BD494500A99626 /* ctest.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F9310BD494400A99626 /* ctest.cc */; };
E5D640D910BD494500A99626 /* database.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F9510BD494400A99626 /* database.cc */; };
E5D640DA10BD494500A99626 /* dbg-asrt.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F9710BD494400A99626 /* dbg-asrt.cc */; };
E5D640DB10BD494500A99626 /* dbg-maps.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F9910BD494400A99626 /* dbg-maps.cc */; };
E5D640DC10BD494500A99626 /* dbg-scan.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F9B10BD494400A99626 /* dbg-scan.cc */; };
E5D640DD10BD494500A99626 /* dbg-util.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63F9D10BD494400A99626 /* dbg-util.cc */; };
E5D640DE10BD494500A99626 /* decks.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FA010BD494400A99626 /* decks.cc */; };
E5D640DF10BD494500A99626 /* delay.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FA310BD494400A99626 /* delay.cc */; };
E5D640E010BD494500A99626 /* describe.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FA510BD494400A99626 /* describe.cc */; };
E5D640E110BD494500A99626 /* dgnevent.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FA710BD494400A99626 /* dgnevent.cc */; };
E5D640E210BD494500A99626 /* directn.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FA910BD494400A99626 /* directn.cc */; };
E5D640E310BD494500A99626 /* dlua.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FAB10BD494400A99626 /* dlua.cc */; };
E5D640E410BD494500A99626 /* dungeon.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FAD10BD494400A99626 /* dungeon.cc */; };
E5D640E510BD494500A99626 /* effects.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FAF10BD494400A99626 /* effects.cc */; };
E5D640E610BD494500A99626 /* exclude.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FB310BD494400A99626 /* exclude.cc */; };
E5D640E710BD494500A99626 /* feature.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FB610BD494400A99626 /* feature.cc */; };
E5D640E810BD494500A99626 /* fight.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FB810BD494400A99626 /* fight.cc */; };
E5D640E910BD494500A99626 /* files.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FBA10BD494400A99626 /* files.cc */; };
E5D640EA10BD494500A99626 /* food.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FBE10BD494400A99626 /* food.cc */; };
E5D640EB10BD494500A99626 /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FC010BD494400A99626 /* format.cc */; };
E5D640EC10BD494500A99626 /* fprop.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FC210BD494400A99626 /* fprop.cc */; };
E5D640ED10BD494500A99626 /* geom2d.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FC410BD494400A99626 /* geom2d.cc */; };
E5D640EE10BD494500A99626 /* ghost.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FC610BD494400A99626 /* ghost.cc */; };
E5D640EF10BD494500A99626 /* godabil.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FC810BD494400A99626 /* godabil.cc */; };
E5D640F010BD494500A99626 /* goditem.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FCA10BD494400A99626 /* goditem.cc */; };
E5D640F110BD494500A99626 /* godwrath.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FCC10BD494400A99626 /* godwrath.cc */; };
E5D640F210BD494500A99626 /* hiscores.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FCE10BD494400A99626 /* hiscores.cc */; };
E5D640F310BD494500A99626 /* initfile.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FD010BD494400A99626 /* initfile.cc */; };
E5D640F410BD494500A99626 /* invent.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FD210BD494400A99626 /* invent.cc */; };
E5D640F510BD494500A99626 /* it_use2.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FD410BD494400A99626 /* it_use2.cc */; };
E5D640F610BD494500A99626 /* it_use3.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FD610BD494400A99626 /* it_use3.cc */; };
E5D640F710BD494500A99626 /* item_use.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FD810BD494400A99626 /* item_use.cc */; };
E5D640F810BD494500A99626 /* itemname.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FDA10BD494400A99626 /* itemname.cc */; };
E5D640F910BD494500A99626 /* itemprop.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FDD10BD494400A99626 /* itemprop.cc */; };
E5D640FA10BD494500A99626 /* items.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FDF10BD494400A99626 /* items.cc */; };
E5D640FB10BD494500A99626 /* jobs.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FE110BD494400A99626 /* jobs.cc */; };
E5D640FC10BD494500A99626 /* kills.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FE310BD494400A99626 /* kills.cc */; };
E5D640FD10BD494500A99626 /* l_crawl.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FE510BD494400A99626 /* l_crawl.cc */; };
E5D640FE10BD494500A99626 /* l_debug.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FE610BD494400A99626 /* l_debug.cc */; };
E5D640FF10BD494500A99626 /* l_dgn.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FE810BD494400A99626 /* l_dgn.cc */; };
E5D6410010BD494500A99626 /* l_dgnbld.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FE910BD494400A99626 /* l_dgnbld.cc */; };
E5D6410110BD494500A99626 /* l_dgnevt.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FEA10BD494400A99626 /* l_dgnevt.cc */; };
E5D6410210BD494500A99626 /* l_dgngrd.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FEB10BD494400A99626 /* l_dgngrd.cc */; };
E5D6410310BD494500A99626 /* l_dgnit.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FEC10BD494400A99626 /* l_dgnit.cc */; };
E5D6410410BD494500A99626 /* l_dgnlvl.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FED10BD494400A99626 /* l_dgnlvl.cc */; };
E5D6410510BD494500A99626 /* l_dgnmon.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FEE10BD494400A99626 /* l_dgnmon.cc */; };
E5D6410610BD494500A99626 /* l_dgntil.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FEF10BD494400A99626 /* l_dgntil.cc */; };
E5D6410710BD494500A99626 /* l_file.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FF010BD494400A99626 /* l_file.cc */; };
E5D6410810BD494500A99626 /* l_food.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FF110BD494400A99626 /* l_food.cc */; };
E5D6410910BD494500A99626 /* l_global.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FF210BD494400A99626 /* l_global.cc */; };
E5D6410A10BD494500A99626 /* l_item.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FF310BD494400A99626 /* l_item.cc */; };
E5D6410B10BD494500A99626 /* l_los.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FF510BD494400A99626 /* l_los.cc */; };
E5D6410C10BD494500A99626 /* l_mapgrd.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FF610BD494400A99626 /* l_mapgrd.cc */; };
E5D6410D10BD494500A99626 /* l_mapmrk.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FF710BD494400A99626 /* l_mapmrk.cc */; };
E5D6410E10BD494500A99626 /* l_moninf.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FF810BD494400A99626 /* l_moninf.cc */; };
E5D6410F10BD494500A99626 /* l_mons.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FF910BD494400A99626 /* l_mons.cc */; };
E5D6411010BD494500A99626 /* l_option.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FFA10BD494400A99626 /* l_option.cc */; };
E5D6411110BD494500A99626 /* l_travel.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FFB10BD494400A99626 /* l_travel.cc */; };
E5D6411210BD494500A99626 /* l_view.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FFC10BD494400A99626 /* l_view.cc */; };
E5D6411310BD494500A99626 /* l_you.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FFD10BD494400A99626 /* l_you.cc */; };
E5D6411410BD494500A99626 /* lev-pand.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D63FFE10BD494400A99626 /* lev-pand.cc */; };
E5D6411610BD494500A99626 /* libutil.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6400310BD494400A99626 /* libutil.cc */; };
E5D6411810BD494500A99626 /* los_def.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6400710BD494400A99626 /* los_def.cc */; };
E5D6411910BD494500A99626 /* los.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6400910BD494400A99626 /* los.cc */; };
E5D6411A10BD494500A99626 /* losparam.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6400B10BD494400A99626 /* losparam.cc */; };
E5D6411B10BD494500A99626 /* luaterp.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6400D10BD494400A99626 /* luaterp.cc */; };
E5D6411C10BD494500A99626 /* macro.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6400F10BD494400A99626 /* macro.cc */; };
E5D6411D10BD494500A99626 /* main.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6401110BD494400A99626 /* main.cc */; };
E5D6412110BD494500A99626 /* makeitem.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6401510BD494400A99626 /* makeitem.cc */; };
E5D6412210BD494500A99626 /* map_knowledge.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6401710BD494400A99626 /* map_knowledge.cc */; };
E5D6412310BD494500A99626 /* mapmark.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6401910BD494400A99626 /* mapmark.cc */; };
E5D6412410BD494500A99626 /* maps.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6401B10BD494400A99626 /* maps.cc */; };
E5D6412510BD494500A99626 /* menu.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6401E10BD494400A99626 /* menu.cc */; };
E5D6412610BD494500A99626 /* message.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6402010BD494400A99626 /* message.cc */; };
E5D6412710BD494500A99626 /* misc.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6402210BD494400A99626 /* misc.cc */; };
E5D6412810BD494500A99626 /* mon-abil.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6402410BD494400A99626 /* mon-abil.cc */; };
E5D6412910BD494500A99626 /* mon-act.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6402610BD494400A99626 /* mon-act.cc */; };
E5D6412A10BD494500A99626 /* mon-behv.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6402810BD494400A99626 /* mon-behv.cc */; };
E5D6412B10BD494500A99626 /* mon-cast.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6402A10BD494400A99626 /* mon-cast.cc */; };
E5D6412C10BD494500A99626 /* mon-gear.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6402D10BD494400A99626 /* mon-gear.cc */; };
E5D6412D10BD494500A99626 /* mon-grow.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6402F10BD494400A99626 /* mon-grow.cc */; };
E5D6412E10BD494500A99626 /* mon-info.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6403110BD494400A99626 /* mon-info.cc */; };
E5D6412F10BD494500A99626 /* mon-iter.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6403310BD494400A99626 /* mon-iter.cc */; };
E5D6413010BD494500A99626 /* mon-movetarget.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6403510BD494400A99626 /* mon-movetarget.cc */; };
E5D6413110BD494500A99626 /* mon-pathfind.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6403710BD494400A99626 /* mon-pathfind.cc */; };
E5D6413210BD494500A99626 /* mon-pick.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6403910BD494400A99626 /* mon-pick.cc */; };
E5D6413310BD494500A99626 /* mon-place.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6403B10BD494400A99626 /* mon-place.cc */; };
E5D6413410BD494500A99626 /* mon-speak.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6403D10BD494400A99626 /* mon-speak.cc */; };
E5D6413510BD494500A99626 /* mon-stuff.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6404010BD494400A99626 /* mon-stuff.cc */; };
E5D6413610BD494500A99626 /* mon-transit.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6404210BD494400A99626 /* mon-transit.cc */; };
E5D6413710BD494500A99626 /* mon-util.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6404410BD494400A99626 /* mon-util.cc */; };
E5D6413810BD494500A99626 /* monster.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6404610BD494400A99626 /* monster.cc */; };
E5D6413910BD494500A99626 /* mt19937ar.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6404A10BD494500A99626 /* mt19937ar.cc */; };
E5D6413A10BD494500A99626 /* mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6404C10BD494500A99626 /* mutation.cc */; };
E5D6413B10BD494500A99626 /* newgame.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6404E10BD494500A99626 /* newgame.cc */; };
E5D6413C10BD494500A99626 /* ng-init.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6405010BD494500A99626 /* ng-init.cc */; };
E5D6413D10BD494500A99626 /* ng-input.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6405210BD494500A99626 /* ng-input.cc */; };
E5D6413E10BD494500A99626 /* ng-restr.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6405410BD494500A99626 /* ng-restr.cc */; };
E5D6413F10BD494500A99626 /* notes.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6405610BD494500A99626 /* notes.cc */; };
E5D6414010BD494500A99626 /* ouch.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6405910BD494500A99626 /* ouch.cc */; };
E5D6414110BD494500A99626 /* output.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6405B10BD494500A99626 /* output.cc */; };
E5D6414310BD494500A99626 /* place.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6405F10BD494500A99626 /* place.cc */; };
E5D6414410BD494500A99626 /* player.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6406210BD494500A99626 /* player.cc */; };
E5D6414510BD494500A99626 /* quiver.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6406410BD494500A99626 /* quiver.cc */; };
E5D6414610BD494500A99626 /* random.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6406710BD494500A99626 /* random.cc */; };
E5D6414710BD494500A99626 /* ray.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6406910BD494500A99626 /* ray.cc */; };
E5D6414810BD494500A99626 /* religion.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6406B10BD494500A99626 /* religion.cc */; };
E5D6414910BD494500A99626 /* rng.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6406D10BD494500A99626 /* rng.cc */; };
E5D6414A10BD494500A99626 /* sha256.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6406F10BD494500A99626 /* sha256.cc */; };
E5D6414B10BD494500A99626 /* shopping.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6407110BD494500A99626 /* shopping.cc */; };
E5D6414C10BD494500A99626 /* shout.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6407310BD494500A99626 /* shout.cc */; };
E5D6414D10BD494500A99626 /* show.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6407510BD494500A99626 /* show.cc */; };
E5D6414E10BD494500A99626 /* showsymb.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6407710BD494500A99626 /* showsymb.cc */; };
E5D6414F10BD494500A99626 /* skills.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6407910BD494500A99626 /* skills.cc */; };
E5D6415010BD494500A99626 /* skills2.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6407B10BD494500A99626 /* skills2.cc */; };
E5D6415110BD494500A99626 /* species.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6407D10BD494500A99626 /* species.cc */; };
E5D6415210BD494500A99626 /* spells1.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6407F10BD494500A99626 /* spells1.cc */; };
E5D6415310BD494500A99626 /* spells2.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6408110BD494500A99626 /* spells2.cc */; };
E5D6415410BD494500A99626 /* spells3.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6408310BD494500A99626 /* spells3.cc */; };
E5D6415510BD494500A99626 /* spells4.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6408510BD494500A99626 /* spells4.cc */; };
E5D6415610BD494500A99626 /* spl-book.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6408710BD494500A99626 /* spl-book.cc */; };
E5D6415710BD494500A99626 /* spl-cast.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6408910BD494500A99626 /* spl-cast.cc */; };
E5D6415810BD494500A99626 /* spl-mis.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6408C10BD494500A99626 /* spl-mis.cc */; };
E5D6415910BD494500A99626 /* spl-util.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6408E10BD494500A99626 /* spl-util.cc */; };
E5D6415A10BD494500A99626 /* sqldbm.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6409010BD494500A99626 /* sqldbm.cc */; };
E5D6415B10BD494500A99626 /* stash.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6409210BD494500A99626 /* stash.cc */; };
E5D6415C10BD494500A99626 /* state.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6409410BD494500A99626 /* state.cc */; };
E5D6415D10BD494500A99626 /* store.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6409610BD494500A99626 /* store.cc */; };
E5D6415E10BD494500A99626 /* stuff.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6409810BD494500A99626 /* stuff.cc */; };
E5D6415F10BD494500A99626 /* tags.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6409A10BD494500A99626 /* tags.cc */; };
E5D6416010BD494500A99626 /* teleport.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6409C10BD494500A99626 /* teleport.cc */; };
E5D6416110BD494500A99626 /* terrain.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D6409E10BD494500A99626 /* terrain.cc */; };
E5D6416310BD494500A99626 /* traps.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D640A210BD494500A99626 /* traps.cc */; };
E5D6416410BD494500A99626 /* travel.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D640A410BD494500A99626 /* travel.cc */; };
E5D6416610BD494500A99626 /* version.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D640A810BD494500A99626 /* version.cc */; };
E5D6416710BD494500A99626 /* view.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D640AA10BD494500A99626 /* view.cc */; };
E5D6416810BD494500A99626 /* viewchar.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D640AC10BD494500A99626 /* viewchar.cc */; };
E5D6416910BD494500A99626 /* viewgeom.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D640AE10BD494500A99626 /* viewgeom.cc */; };
E5D6416A10BD494500A99626 /* viewmap.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D640B010BD494500A99626 /* viewmap.cc */; };
E5D6416B10BD494500A99626 /* wiz-dgn.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D640B210BD494500A99626 /* wiz-dgn.cc */; };
E5D6416C10BD494500A99626 /* wiz-fsim.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D640B410BD494500A99626 /* wiz-fsim.cc */; };
E5D6416D10BD494500A99626 /* wiz-item.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D640B610BD494500A99626 /* wiz-item.cc */; };
E5D6416E10BD494500A99626 /* wiz-mon.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D640B810BD494500A99626 /* wiz-mon.cc */; };
E5D6416F10BD494500A99626 /* wiz-you.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D640BA10BD494500A99626 /* wiz-you.cc */; };
E5D6417010BD494500A99626 /* xom.cc in Sources */ = {isa = PBXBuildFile; fileRef = E5D640BC10BD494500A99626 /* xom.cc */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
7B0EFD440BD12E9E00002671 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 7B0EFD410BD12E9200002671;
remoteInfo = Lua;
};
7B5165E011859E4A005B23ED /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = B0C9CF45108DF1AF00E7FA35;
remoteInfo = tilegen;
};
B032D520106C019C0002D70D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 8DD76FA90486AB0100D96B5E;
remoteInfo = "Crawl-cmd";
};
B032D52F106C01DB0002D70D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 7B0EFD410BD12E9200002671;
remoteInfo = Lua;
};
B082658510731C1C006EEC5A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = B082656E10731A95006EEC5A;
remoteInfo = SQLite;
};
B082658710731C22006EEC5A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = B082656E10731A95006EEC5A;
remoteInfo = SQLite;
};
B0C9CF63108DF24C00E7FA35 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = B0F7DEF91086EE79008FFA70 /* SDL.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = BECDF5FE0761BA81005FE872;
remoteInfo = Framework;
};
B0C9CF65108DF24C00E7FA35 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = B0F7DFE61086F4EA008FFA70 /* libpng.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = 8D07F2BC0486CC7A007CD1D0;
remoteInfo = libpng;
};
B0C9CF67108DF24C00E7FA35 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = B0F7DF7B1086F0CB008FFA70 /* SDL_image.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = BE1FA71807AF4C44004B6283;
remoteInfo = Framework;
};
B0C9CF69108DF26100E7FA35 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = B0C9CF45108DF1AF00E7FA35;
remoteInfo = tilegen;
};
B0F7DEF21086EDE5008FFA70 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = B0F7DEEA1086EDE4008FFA70 /* Freetype2.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = D2AAC046055464E500DB518D;
remoteInfo = "Static Library";
};
B0F7DEF41086EDE5008FFA70 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = B0F7DEEA1086EDE4008FFA70 /* Freetype2.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = B0B5E10F106701A60020B21F;
remoteInfo = Framework;
};
B0F7DEF61086EDF2008FFA70 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = B0F7DEEA1086EDE4008FFA70 /* Freetype2.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = B0B5E10E106701A60020B21F;
remoteInfo = Framework;
};
B0F7DF081086EE7A008FFA70 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = B0F7DEF91086EE79008FFA70 /* SDL.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = BECDF66C0761BA81005FE872;
remoteInfo = Framework;
};
B0F7DF0A1086EE7A008FFA70 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = B0F7DEF91086EE79008FFA70 /* SDL.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = BECDF6B30761BA81005FE872;
remoteInfo = "Static Library";
};
B0F7DF0C1086EE7A008FFA70 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = B0F7DEF91086EE79008FFA70 /* SDL.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = BECDF6BA0761BA81005FE872;
remoteInfo = "Main Library";
};
B0F7DF0E1086EE7A008FFA70 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = B0F7DEF91086EE79008FFA70 /* SDL.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = BECDF6BE0761BA81005FE872;
remoteInfo = "Standard DMG";
};
B0F7DF101086EE7A008FFA70 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = B0F7DEF91086EE79008FFA70 /* SDL.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = BECDF6C30761BA81005FE872;
remoteInfo = "Developer Extras Package";
};
B0F7DF161086EEB0008FFA70 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = B0F7DEF91086EE79008FFA70 /* SDL.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = BECDF5FE0761BA81005FE872;
remoteInfo = Framework;
};
B0F7DF851086F0CB008FFA70 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = B0F7DF7B1086F0CB008FFA70 /* SDL_image.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = BE1FA72E07AF4C45004B6283;
remoteInfo = Framework;
};
B0F7DF871086F0CB008FFA70 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = B0F7DF7B1086F0CB008FFA70 /* SDL_image.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = BE1FA74107AF4C45004B6283;
remoteInfo = "Static Library";
};
B0F7DF891086F0CB008FFA70 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = B0F7DF7B1086F0CB008FFA70 /* SDL_image.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = BE1FA74507AF4C45004B6283;
remoteInfo = "Create DMG";
};
B0F7DF9C1086F107008FFA70 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = B0F7DF7B1086F0CB008FFA70 /* SDL_image.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = BE1FA71807AF4C44004B6283;
remoteInfo = Framework;
};
B0F7DFED1086F4EA008FFA70 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = B0F7DFE61086F4EA008FFA70 /* libpng.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 8D07F2C80486CC7A007CD1D0;
remoteInfo = libpng;
};
B0F7E170108764C7008FFA70 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = B0F7DFE61086F4EA008FFA70 /* libpng.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = 8D07F2BC0486CC7A007CD1D0;
remoteInfo = libpng;
};
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 = (
7B352EA10B00183400CABB32 /* mapdef.h in CopyFiles */,
);
runOnlyForDeploymentPostprocessing = 1;
};
B032D70E106C03000002D70D /* Copy Dungeon Tiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = dat/tiles;
dstSubfolderSpec = 7;
files = (
B032D700106C02930002D70D /* dngn.png in Copy Dungeon Tiles */,
B032D701106C02930002D70D /* gui.png in Copy Dungeon Tiles */,
B032D702106C02930002D70D /* main.png in Copy Dungeon Tiles */,
B032D703106C02930002D70D /* player.png in Copy Dungeon Tiles */,
);
name = "Copy Dungeon Tiles";
runOnlyForDeploymentPostprocessing = 0;
};
B032D70F106C03000002D70D /* Copy Frameworks */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 10;
files = (
B0F7DFF01086F4F6008FFA70 /* libpng.framework in Copy Frameworks */,
B0F7DF181086EEBC008FFA70 /* SDL.framework in Copy Frameworks */,
B0F7DF8C1086F0DB008FFA70 /* SDL_image.framework in Copy Frameworks */,
B0F7DEF81086EDFE008FFA70 /* Freetype2.framework in Copy Frameworks */,
);
name = "Copy Frameworks";
runOnlyForDeploymentPostprocessing = 0;
};
B090C2ED10671F5F00AE855D /* Copy Dungeon Tiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = dat/tiles;
dstSubfolderSpec = 7;
files = (
B090C2F210671F8900AE855D /* dngn.png in Copy Dungeon Tiles */,
B090C2F310671F8900AE855D /* gui.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 = (
);
name = "Copy Frameworks";
runOnlyForDeploymentPostprocessing = 0;
};
B0C9CF7A108DF28700E7FA35 /* Copy Frameworks */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 10;
files = (
B0C9CF5E108DF23400E7FA35 /* libpng.framework in Copy Frameworks */,
B0C9CF5F108DF23700E7FA35 /* SDL_image.framework in Copy Frameworks */,
B0C9CF60108DF23900E7FA35 /* SDL.framework in Copy Frameworks */,
);
name = "Copy Frameworks";
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
4C59B08711E7964700760867 /* dgn-actions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "dgn-actions.h"; sourceTree = "<group>"; };
4C59B08811E7964700760867 /* hints.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hints.h; sourceTree = "<group>"; };
4C59B08911E7964700760867 /* dgn-actions.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "dgn-actions.cc"; sourceTree = "<group>"; };
4C59B08A11E7964700760867 /* hints.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = hints.cc; sourceTree = "<group>"; };
4C59B08B11E7964700760867 /* tiledgnbuf.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tiledgnbuf.cc; sourceTree = "<group>"; };
4C59B08C11E7964700760867 /* tilepick-p.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "tilepick-p.cc"; sourceTree = "<group>"; };
4C59B08D11E7964700760867 /* tilereg-mon.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "tilereg-mon.cc"; sourceTree = "<group>"; };
4C59B08E11E7964700760867 /* tileview.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tileview.cc; sourceTree = "<group>"; };
4C59B0A711E798C400760867 /* tiledef-feat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "tiledef-feat.h"; path = "rltiles/tiledef-feat.h"; sourceTree = "<group>"; };
4C59B0A811E798C400760867 /* tiledef-floor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "tiledef-floor.h"; path = "rltiles/tiledef-floor.h"; sourceTree = "<group>"; };
4C59B0A911E798C400760867 /* tiledef-wall.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "tiledef-wall.h"; path = "rltiles/tiledef-wall.h"; sourceTree = "<group>"; };
4C59B0AA11E798C400760867 /* tiledef-feat.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = "tiledef-feat.cc"; path = "rltiles/tiledef-feat.cc"; sourceTree = "<group>"; };
4C59B0AB11E798C400760867 /* tiledef-floor.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = "tiledef-floor.cc"; path = "rltiles/tiledef-floor.cc"; sourceTree = "<group>"; };
4C59B0AC11E798C400760867 /* tiledef-wall.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = "tiledef-wall.cc"; path = "rltiles/tiledef-wall.cc"; sourceTree = "<group>"; };
4C59B0E411E7A06D00760867 /* feat.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = feat.png; path = rltiles/feat.png; sourceTree = "<group>"; };
4C59B0E511E7A06D00760867 /* floor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = floor.png; path = rltiles/floor.png; sourceTree = "<group>"; };
4C59B0E611E7A06D00760867 /* wall.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = wall.png; path = rltiles/wall.png; sourceTree = "<group>"; };
7B09F53B1133D63E004F149D /* godconduct.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = godconduct.cc; sourceTree = "<group>"; };
7B09F53C1133D63E004F149D /* godconduct.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = godconduct.h; sourceTree = "<group>"; };
7B09F53D1133D63E004F149D /* godpassive.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = godpassive.cc; sourceTree = "<group>"; };
7B09F53E1133D63E004F149D /* godpassive.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = godpassive.h; sourceTree = "<group>"; };
7B09F53F1133D63E004F149D /* godprayer.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = godprayer.cc; sourceTree = "<group>"; };
7B09F5401133D63E004F149D /* godprayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = godprayer.h; sourceTree = "<group>"; };
7B09F5411133D63E004F149D /* l_feat.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = l_feat.cc; sourceTree = "<group>"; };
7B09F5421133D63E004F149D /* l_spells.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = l_spells.cc; sourceTree = "<group>"; };
7B09F54C1133D66C004F149D /* melee_attack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = melee_attack.h; sourceTree = "<group>"; };
7B09F54D1133D66C004F149D /* mgen_data.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mgen_data.cc; sourceTree = "<group>"; };
7B09F54E1133D66C004F149D /* mgen_data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mgen_data.h; sourceTree = "<group>"; };
7B09F54F1133D66C004F149D /* mgen_enum.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mgen_enum.h; sourceTree = "<group>"; };
7B09F5501133D66C004F149D /* mislead.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mislead.cc; sourceTree = "<group>"; };
7B09F5511133D66C004F149D /* mislead.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mislead.h; sourceTree = "<group>"; };
7B09F5521133D66C004F149D /* mon_resist_def.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mon_resist_def.cc; sourceTree = "<group>"; };
7B09F5531133D66C004F149D /* mon_resist_def.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mon_resist_def.h; sourceTree = "<group>"; };
7B09F5541133D66C004F149D /* mon-clone.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "mon-clone.cc"; sourceTree = "<group>"; };
7B09F5551133D66C004F149D /* mon-clone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "mon-clone.h"; sourceTree = "<group>"; };
7B09F5561133D66C004F149D /* mon-death.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "mon-death.cc"; sourceTree = "<group>"; };
7B09F5571133D66C004F149D /* mon-death.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "mon-death.h"; sourceTree = "<group>"; };
7B09F5581133D66C004F149D /* mon-enum.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "mon-enum.h"; sourceTree = "<group>"; };
7B09F5591133D66C004F149D /* pattern.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pattern.cc; sourceTree = "<group>"; };
7B09F55A1133D66C004F149D /* pattern.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pattern.h; sourceTree = "<group>"; };
7B09F55B1133D66C004F149D /* transform.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = transform.cc; sourceTree = "<group>"; };
7B09F55C1133D66C004F149D /* transform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = transform.h; sourceTree = "<group>"; };
7B09F55D1133D66C004F149D /* trap_def.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = trap_def.h; sourceTree = "<group>"; };
7B09F55E1133D66C004F149D /* travel_defs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = travel_defs.h; sourceTree = "<group>"; };
7B09F55F1133D66C004F149D /* unwind.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unwind.h; sourceTree = "<group>"; };
7B09F6371133D823004F149D /* dgn-height.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "dgn-height.cc"; sourceTree = "<group>"; };
7B09F6381133D823004F149D /* dgn-height.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "dgn-height.h"; sourceTree = "<group>"; };
7B09F6391133D823004F149D /* dgn-overview.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "dgn-overview.cc"; sourceTree = "<group>"; };
7B09F63A1133D823004F149D /* dgn-overview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "dgn-overview.h"; sourceTree = "<group>"; };
7B09F63B1133D823004F149D /* dgn-shoals.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "dgn-shoals.cc"; sourceTree = "<group>"; };
7B09F63C1133D823004F149D /* dgn-shoals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "dgn-shoals.h"; sourceTree = "<group>"; };
7B09F63D1133D823004F149D /* dgn-swamp.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "dgn-swamp.cc"; sourceTree = "<group>"; };
7B09F63E1133D823004F149D /* dgn-swamp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "dgn-swamp.h"; sourceTree = "<group>"; };
7B09F6491133D92C004F149D /* message-stream.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "message-stream.cc"; sourceTree = "<group>"; };
7B09F64E1133DA4D004F149D /* mon-project.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "mon-project.cc"; sourceTree = "<group>"; };
7B09F64F1133DA4D004F149D /* mon-project.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "mon-project.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>"; };
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>"; };
7B51655D11859CD6005B23ED /* tiledoll.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tiledoll.cc; sourceTree = "<group>"; };
7B51655E11859CD6005B23ED /* tiledoll.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tiledoll.h; sourceTree = "<group>"; };
7B51655F11859CD6005B23ED /* tilereg-crt.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "tilereg-crt.cc"; sourceTree = "<group>"; };
7B51656011859CD6005B23ED /* tilereg-crt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "tilereg-crt.h"; sourceTree = "<group>"; };
7B51656111859CD6005B23ED /* tilereg-dgn.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "tilereg-dgn.cc"; sourceTree = "<group>"; };
7B51656211859CD6005B23ED /* tilereg-dgn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "tilereg-dgn.h"; sourceTree = "<group>"; };
7B51656311859CD6005B23ED /* tilereg-doll.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "tilereg-doll.cc"; sourceTree = "<group>"; };
7B51656411859CD6005B23ED /* tilereg-doll.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "tilereg-doll.h"; sourceTree = "<group>"; };
7B51656511859CD6005B23ED /* tilereg-grid.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "tilereg-grid.cc"; sourceTree = "<group>"; };
7B51656611859CD6005B23ED /* tilereg-grid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "tilereg-grid.h"; sourceTree = "<group>"; };
7B51656711859CD6005B23ED /* tilereg-inv.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "tilereg-inv.cc"; sourceTree = "<group>"; };
7B51656811859CD6005B23ED /* tilereg-inv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "tilereg-inv.h"; sourceTree = "<group>"; };
7B51656911859CD6005B23ED /* tilereg-map.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "tilereg-map.cc"; sourceTree = "<group>"; };
7B51656A11859CD6005B23ED /* tilereg-map.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "tilereg-map.h"; sourceTree = "<group>"; };
7B51656B11859CD6005B23ED /* tilereg-mem.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "tilereg-mem.cc"; sourceTree = "<group>"; };
7B51656C11859CD6005B23ED /* tilereg-mem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "tilereg-mem.h"; sourceTree = "<group>"; };
7B51656D11859CD6005B23ED /* tilereg-menu.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "tilereg-menu.cc"; sourceTree = "<group>"; };
7B51656E11859CD6005B23ED /* tilereg-menu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "tilereg-menu.h"; sourceTree = "<group>"; };
7B51656F11859CD6005B23ED /* tilereg-msg.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "tilereg-msg.cc"; sourceTree = "<group>"; };
7B51657011859CD6005B23ED /* tilereg-msg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "tilereg-msg.h"; sourceTree = "<group>"; };
7B51657111859CD6005B23ED /* tilereg-spl.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "tilereg-spl.cc"; sourceTree = "<group>"; };
7B51657211859CD6005B23ED /* tilereg-spl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "tilereg-spl.h"; sourceTree = "<group>"; };
7B51657311859CD6005B23ED /* tilereg-stat.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "tilereg-stat.cc"; sourceTree = "<group>"; };
7B51657411859CD6005B23ED /* tilereg-stat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "tilereg-stat.h"; sourceTree = "<group>"; };
7B51657511859CD6005B23ED /* tilereg-tab.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "tilereg-tab.cc"; sourceTree = "<group>"; };
7B51657611859CD6005B23ED /* tilereg-tab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "tilereg-tab.h"; sourceTree = "<group>"; };
7B51657711859CD6005B23ED /* tilereg-text.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "tilereg-text.cc"; sourceTree = "<group>"; };
7B51657811859CD6005B23ED /* tilereg-text.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "tilereg-text.h"; sourceTree = "<group>"; };
7B51657911859CD6005B23ED /* tilereg-title.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "tilereg-title.cc"; sourceTree = "<group>"; };
7B51657A11859CD6005B23ED /* tilereg-title.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "tilereg-title.h"; sourceTree = "<group>"; };
7B51658A11859CE3005B23ED /* glwrapper-ogl.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "glwrapper-ogl.cc"; sourceTree = "<group>"; };
7B51658B11859CE3005B23ED /* glwrapper-ogl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "glwrapper-ogl.h"; sourceTree = "<group>"; };
7B51658C11859CE3005B23ED /* glwrapper.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glwrapper.cc; sourceTree = "<group>"; };
7B51658D11859CE3005B23ED /* glwrapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glwrapper.h; sourceTree = "<group>"; };
7B51659211859CFA005B23ED /* act-iter.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "act-iter.cc"; sourceTree = "<group>"; };
7B51659311859CFA005B23ED /* act-iter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "act-iter.h"; sourceTree = "<group>"; };
7B51659611859D1A005B23ED /* fontwrapper-ft.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "fontwrapper-ft.cc"; sourceTree = "<group>"; };
7B51659711859D1A005B23ED /* fontwrapper-ft.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "fontwrapper-ft.h"; sourceTree = "<group>"; };
7B51659911859D30005B23ED /* dgl-message.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "dgl-message.cc"; sourceTree = "<group>"; };
7B51659A11859D30005B23ED /* dgl-message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "dgl-message.h"; sourceTree = "<group>"; };
7B51659B11859D30005B23ED /* flood_find.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = flood_find.h; sourceTree = "<group>"; };
7B51659E11859D44005B23ED /* losglobal.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = losglobal.cc; sourceTree = "<group>"; };
7B51659F11859D44005B23ED /* losglobal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = losglobal.h; sourceTree = "<group>"; };
7B5165A211859D5A005B23ED /* mutation-data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "mutation-data.h"; sourceTree = "<group>"; };
7B5165A311859D5A005B23ED /* newgame_def.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = newgame_def.h; sourceTree = "<group>"; };
7B5165A411859D5A005B23ED /* ng-setup.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "ng-setup.cc"; sourceTree = "<group>"; };
7B5165A511859D5A005B23ED /* ng-setup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ng-setup.h"; sourceTree = "<group>"; };
7B5165A611859D5A005B23ED /* ng-wanderer.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "ng-wanderer.cc"; sourceTree = "<group>"; };
7B5165A711859D5A005B23ED /* ng-wanderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ng-wanderer.h"; sourceTree = "<group>"; };
7B5165A811859D5A005B23ED /* place-info.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "place-info.cc"; sourceTree = "<group>"; };
7B5165A911859D5A005B23ED /* place-info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "place-info.h"; sourceTree = "<group>"; };
7B5165AA11859D5A005B23ED /* player-act.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "player-act.cc"; sourceTree = "<group>"; };
7B5165AB11859D5A005B23ED /* player-stats.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "player-stats.cc"; sourceTree = "<group>"; };
7B5165AC11859D5A005B23ED /* player-stats.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "player-stats.h"; sourceTree = "<group>"; };
7B5165B711859D82005B23ED /* random-var.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "random-var.cc"; sourceTree = "<group>"; };
7B5165B811859D82005B23ED /* random-var.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "random-var.h"; sourceTree = "<group>"; };
7B5165B911859D82005B23ED /* religion-enum.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "religion-enum.h"; sourceTree = "<group>"; };
7B5165BA11859D82005B23ED /* spl-zap.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "spl-zap.cc"; sourceTree = "<group>"; };
7B5165BB11859D82005B23ED /* spl-zap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "spl-zap.h"; sourceTree = "<group>"; };
7B5165BC11859D82005B23ED /* sprint.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sprint.cc; sourceTree = "<group>"; };
7B5165BD11859D82005B23ED /* sprint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sprint.h; sourceTree = "<group>"; };
7B5165BE11859D82005B23ED /* stairs.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stairs.cc; sourceTree = "<group>"; };
7B5165BF11859D82005B23ED /* stairs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stairs.h; sourceTree = "<group>"; };
7B5165C011859D82005B23ED /* startup.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = startup.cc; sourceTree = "<group>"; };
7B5165C111859D82005B23ED /* startup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = startup.h; sourceTree = "<group>"; };
7B5165C211859D82005B23ED /* tag-version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "tag-version.h"; sourceTree = "<group>"; };
7B5165C311859D82005B23ED /* tagstring.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tagstring.cc; sourceTree = "<group>"; };
7B5165C411859D82005B23ED /* tagstring.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tagstring.h; sourceTree = "<group>"; };
7B5165C511859D82005B23ED /* zap-data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "zap-data.h"; sourceTree = "<group>"; };
7B5165D211859D90005B23ED /* windowmanager-sdl.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "windowmanager-sdl.cc"; sourceTree = "<group>"; };
7B5165D311859D90005B23ED /* windowmanager-sdl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "windowmanager-sdl.h"; sourceTree = "<group>"; };
7B5165D411859D90005B23ED /* windowmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = windowmanager.h; sourceTree = "<group>"; };
7BDE8442116D247D00974D63 /* player-equip.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "player-equip.cc"; sourceTree = "<group>"; };
7BDE8443116D247D00974D63 /* player-equip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "player-equip.h"; sourceTree = "<group>"; };
7BDE8454116D24E600974D63 /* libunix.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = libunix.cc; sourceTree = "<group>"; };
7BDE8455116D24E600974D63 /* libunix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = libunix.h; sourceTree = "<group>"; };
8DD76FB20486AB0100D96B5E /* crawl */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = crawl; sourceTree = BUILT_PRODUCTS_DIR; };
93F94B1E10C178990077B142 /* l_subvault.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = l_subvault.cc; 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>"; };
B032D527106C01AF0002D70D /* Dungeon Crawl Stone Soup.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Dungeon Crawl Stone Soup.app"; sourceTree = BUILT_PRODUCTS_DIR; };
B082656F10731A95006EEC5A /* libSQLite.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libSQLite.a; sourceTree = BUILT_PRODUCTS_DIR; };
B082657610731AB5006EEC5A /* sqlite3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sqlite3.c; path = contrib/sqlite/sqlite3.c; sourceTree = "<group>"; };
B082657710731AB5006EEC5A /* sqlite3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sqlite3.h; path = contrib/sqlite/sqlite3.h; sourceTree = "<group>"; };
B090C2EE10671F8900AE855D /* dngn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = dngn.png; path = rltiles/dngn.png; sourceTree = "<group>"; };
B090C2EF10671F8900AE855D /* gui.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = gui.png; path = rltiles/gui.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>"; };
B09CCE3010830F1A00623CFA /* Crawl-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = "Crawl-Info.plist"; path = "mac/Crawl-Info.plist"; sourceTree = "<group>"; };
B09CCE5A1083159100623CFA /* settings */ = {isa = PBXFileReference; lastKnownFileType = folder; name = settings; path = ../settings; sourceTree = SOURCE_ROOT; };
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>"; };
B0B5DFD51066FA240020B21F /* tiledef-gui.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = "tiledef-gui.cc"; path = "rltiles/tiledef-gui.cc"; sourceTree = "<group>"; };
B0B5DFD61066FA240020B21F /* tiledef-gui.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "tiledef-gui.h"; path = "rltiles/tiledef-gui.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>"; };
B0B5DFDB1066FA240020B21F /* tiledef-unrand.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = "tiledef-unrand.cc"; path = "rltiles/tiledef-unrand.cc"; sourceTree = "<group>"; };
B0B5DFDC1066FA240020B21F /* tiledef-unrand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "tiledef-unrand.h"; path = "rltiles/tiledef-unrand.h"; sourceTree = "<group>"; };
B0C9CF46108DF1AF00E7FA35 /* tilegen.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = tilegen.app; sourceTree = BUILT_PRODUCTS_DIR; };
B0C9CFD6108DFF0F00E7FA35 /* tilegen-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = "tilegen-Info.plist"; path = "rltiles/tilegen-Info.plist"; sourceTree = "<group>"; };
B0F7DEEA1086EDE4008FFA70 /* Freetype2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = Freetype2.xcodeproj; path = contrib/freetype/builds/mac/Xcode/Freetype2.xcodeproj; sourceTree = "<group>"; };
B0F7DEF91086EE79008FFA70 /* SDL.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = SDL.xcodeproj; path = contrib/sdl/Xcode/SDL/SDL.xcodeproj; sourceTree = "<group>"; };
B0F7DF7B1086F0CB008FFA70 /* SDL_image.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = SDL_image.xcodeproj; path = "contrib/sdl-image/Xcode/SDL_image.xcodeproj"; sourceTree = "<group>"; };
B0F7DFE61086F4EA008FFA70 /* libpng.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = libpng.xcodeproj; path = contrib/libpng/projects/xcode/libpng.xcodeproj; sourceTree = "<group>"; };
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>"; };
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>"; };
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>"; };
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 /* Dungeon Crawl Stone Soup - ASCII.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Dungeon Crawl Stone Soup - ASCII.app"; sourceTree = BUILT_PRODUCTS_DIR; };
D2F271FE0DA1C5AD00445FE9 /* dat */ = {isa = PBXFileReference; lastKnownFileType = folder; path = dat; sourceTree = "<group>"; };
D2F2723F0DA1C61600445FE9 /* docs */ = {isa = PBXFileReference; lastKnownFileType = folder; name = docs; path = ../docs; sourceTree = SOURCE_ROOT; };
E5D63F5D10BD494300A99626 /* abl-show.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "abl-show.cc"; sourceTree = "<group>"; };
E5D63F5E10BD494300A99626 /* abl-show.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "abl-show.h"; sourceTree = "<group>"; };
E5D63F5F10BD494300A99626 /* abyss.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = abyss.cc; sourceTree = "<group>"; };
E5D63F6010BD494300A99626 /* abyss.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = abyss.h; sourceTree = "<group>"; };
E5D63F6110BD494300A99626 /* actor-los.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "actor-los.cc"; sourceTree = "<group>"; };
E5D63F6210BD494300A99626 /* actor.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = actor.cc; sourceTree = "<group>"; };
E5D63F6310BD494300A99626 /* actor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = actor.h; sourceTree = "<group>"; };
E5D63F6410BD494300A99626 /* AppHdr.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AppHdr.cc; sourceTree = "<group>"; };
E5D63F6510BD494300A99626 /* AppHdr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppHdr.h; sourceTree = "<group>"; };
E5D63F6610BD494300A99626 /* areas.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = areas.cc; sourceTree = "<group>"; };
E5D63F6710BD494300A99626 /* areas.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = areas.h; sourceTree = "<group>"; };
E5D63F6810BD494300A99626 /* arena.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = arena.cc; sourceTree = "<group>"; };
E5D63F6910BD494300A99626 /* arena.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = arena.h; sourceTree = "<group>"; };
E5D63F6B10BD494300A99626 /* art-func.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "art-func.h"; sourceTree = "<group>"; };
E5D63F6C10BD494300A99626 /* artefact.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = artefact.cc; sourceTree = "<group>"; };
E5D63F6D10BD494300A99626 /* artefact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = artefact.h; sourceTree = "<group>"; };
E5D63F6E10BD494300A99626 /* attitude-change.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "attitude-change.cc"; sourceTree = "<group>"; };
E5D63F6F10BD494300A99626 /* attitude-change.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "attitude-change.h"; sourceTree = "<group>"; };
E5D63F7010BD494300A99626 /* beam.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = beam.cc; sourceTree = "<group>"; };
E5D63F7110BD494300A99626 /* beam.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = beam.h; sourceTree = "<group>"; };
E5D63F7210BD494400A99626 /* behold.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = behold.cc; sourceTree = "<group>"; };
E5D63F7310BD494400A99626 /* bitary.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = bitary.cc; sourceTree = "<group>"; };
E5D63F7410BD494400A99626 /* bitary.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bitary.h; sourceTree = "<group>"; };
E5D63F7510BD494400A99626 /* branch.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = branch.cc; sourceTree = "<group>"; };
E5D63F7610BD494400A99626 /* branch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = branch.h; sourceTree = "<group>"; };
E5D63F7810BD494400A99626 /* chardump.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chardump.cc; sourceTree = "<group>"; };
E5D63F7910BD494400A99626 /* chardump.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chardump.h; sourceTree = "<group>"; };
E5D63F7A10BD494400A99626 /* cio.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cio.cc; sourceTree = "<group>"; };
E5D63F7B10BD494400A99626 /* cio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cio.h; sourceTree = "<group>"; };
E5D63F7C10BD494400A99626 /* cloud.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cloud.cc; sourceTree = "<group>"; };
E5D63F7D10BD494400A99626 /* cloud.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cloud.h; sourceTree = "<group>"; };
E5D63F7E10BD494400A99626 /* clua.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = clua.cc; sourceTree = "<group>"; };
E5D63F7F10BD494400A99626 /* clua.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = clua.h; sourceTree = "<group>"; };
E5D63F8010BD494400A99626 /* cluautil.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cluautil.cc; sourceTree = "<group>"; };
E5D63F8110BD494400A99626 /* cluautil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cluautil.h; sourceTree = "<group>"; };
E5D63F8210BD494400A99626 /* cmd-keys.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "cmd-keys.h"; sourceTree = "<group>"; };
E5D63F8310BD494400A99626 /* cmd-name.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "cmd-name.h"; sourceTree = "<group>"; };
E5D63F8410BD494400A99626 /* colour.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = colour.cc; sourceTree = "<group>"; };
E5D63F8510BD494400A99626 /* colour.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = colour.h; sourceTree = "<group>"; };
E5D63F8610BD494400A99626 /* command.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = command.cc; sourceTree = "<group>"; };
E5D63F8710BD494400A99626 /* command.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = command.h; sourceTree = "<group>"; };
E5D63F8910BD494400A99626 /* coord-circle.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "coord-circle.cc"; sourceTree = "<group>"; };
E5D63F8A10BD494400A99626 /* coord-circle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "coord-circle.h"; sourceTree = "<group>"; };
E5D63F8B10BD494400A99626 /* coord.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = coord.cc; sourceTree = "<group>"; };
E5D63F8C10BD494400A99626 /* coord.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = coord.h; sourceTree = "<group>"; };
E5D63F8D10BD494400A99626 /* coordit.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = coordit.cc; sourceTree = "<group>"; };
E5D63F8E10BD494400A99626 /* coordit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = coordit.h; sourceTree = "<group>"; };
E5D63F9010BD494400A99626 /* crash-u.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "crash-u.cc"; sourceTree = "<group>"; };
E5D63F9210BD494400A99626 /* crash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = crash.h; sourceTree = "<group>"; };
E5D63F9310BD494400A99626 /* ctest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ctest.cc; sourceTree = "<group>"; };
E5D63F9410BD494400A99626 /* ctest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ctest.h; sourceTree = "<group>"; };
E5D63F9510BD494400A99626 /* database.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = database.cc; sourceTree = "<group>"; };
E5D63F9610BD494400A99626 /* database.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = database.h; sourceTree = "<group>"; };
E5D63F9710BD494400A99626 /* dbg-asrt.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "dbg-asrt.cc"; sourceTree = "<group>"; };
E5D63F9810BD494400A99626 /* dbg-crsh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "dbg-crsh.h"; sourceTree = "<group>"; };
E5D63F9910BD494400A99626 /* dbg-maps.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "dbg-maps.cc"; sourceTree = "<group>"; };
E5D63F9A10BD494400A99626 /* dbg-maps.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "dbg-maps.h"; sourceTree = "<group>"; };
E5D63F9B10BD494400A99626 /* dbg-scan.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "dbg-scan.cc"; sourceTree = "<group>"; };
E5D63F9C10BD494400A99626 /* dbg-scan.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "dbg-scan.h"; sourceTree = "<group>"; };
E5D63F9D10BD494400A99626 /* dbg-util.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "dbg-util.cc"; sourceTree = "<group>"; };
E5D63F9E10BD494400A99626 /* dbg-util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "dbg-util.h"; sourceTree = "<group>"; };
E5D63F9F10BD494400A99626 /* debug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = debug.h; sourceTree = "<group>"; };
E5D63FA010BD494400A99626 /* decks.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = decks.cc; sourceTree = "<group>"; };
E5D63FA110BD494400A99626 /* decks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = decks.h; sourceTree = "<group>"; };
E5D63FA210BD494400A99626 /* defines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = defines.h; sourceTree = "<group>"; };
E5D63FA310BD494400A99626 /* delay.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = delay.cc; sourceTree = "<group>"; };
E5D63FA410BD494400A99626 /* delay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = delay.h; sourceTree = "<group>"; };
E5D63FA510BD494400A99626 /* describe.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = describe.cc; sourceTree = "<group>"; };
E5D63FA610BD494400A99626 /* describe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = describe.h; sourceTree = "<group>"; };
E5D63FA710BD494400A99626 /* dgnevent.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dgnevent.cc; sourceTree = "<group>"; };
E5D63FA810BD494400A99626 /* dgnevent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dgnevent.h; sourceTree = "<group>"; };
E5D63FA910BD494400A99626 /* directn.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = directn.cc; sourceTree = "<group>"; };
E5D63FAA10BD494400A99626 /* directn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = directn.h; sourceTree = "<group>"; };
E5D63FAB10BD494400A99626 /* dlua.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dlua.cc; sourceTree = "<group>"; };
E5D63FAC10BD494400A99626 /* dlua.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dlua.h; sourceTree = "<group>"; };
E5D63FAD10BD494400A99626 /* dungeon.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dungeon.cc; sourceTree = "<group>"; };
E5D63FAE10BD494400A99626 /* dungeon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dungeon.h; sourceTree = "<group>"; };
E5D63FAF10BD494400A99626 /* effects.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = effects.cc; sourceTree = "<group>"; };
E5D63FB010BD494400A99626 /* effects.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = effects.h; sourceTree = "<group>"; };
E5D63FB110BD494400A99626 /* enum.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = enum.h; sourceTree = "<group>"; };
E5D63FB210BD494400A99626 /* env.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = env.h; sourceTree = "<group>"; };
E5D63FB310BD494400A99626 /* exclude.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = exclude.cc; sourceTree = "<group>"; };
E5D63FB410BD494400A99626 /* exclude.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = exclude.h; sourceTree = "<group>"; };
E5D63FB510BD494400A99626 /* externs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = externs.h; sourceTree = "<group>"; };
E5D63FB610BD494400A99626 /* feature.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = feature.cc; sourceTree = "<group>"; };
E5D63FB710BD494400A99626 /* feature.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = feature.h; sourceTree = "<group>"; };
E5D63FB810BD494400A99626 /* fight.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = fight.cc; sourceTree = "<group>"; };
E5D63FB910BD494400A99626 /* fight.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fight.h; sourceTree = "<group>"; };
E5D63FBA10BD494400A99626 /* files.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = files.cc; sourceTree = "<group>"; };
E5D63FBB10BD494400A99626 /* files.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = files.h; sourceTree = "<group>"; };
E5D63FBC10BD494400A99626 /* fixedarray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fixedarray.h; sourceTree = "<group>"; };
E5D63FBD10BD494400A99626 /* fixedvector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fixedvector.h; sourceTree = "<group>"; };
E5D63FBE10BD494400A99626 /* food.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = food.cc; sourceTree = "<group>"; };
E5D63FBF10BD494400A99626 /* food.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = food.h; sourceTree = "<group>"; };
E5D63FC010BD494400A99626 /* format.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = format.cc; sourceTree = "<group>"; };
E5D63FC110BD494400A99626 /* format.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = format.h; sourceTree = "<group>"; };
E5D63FC210BD494400A99626 /* fprop.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = fprop.cc; sourceTree = "<group>"; };
E5D63FC310BD494400A99626 /* fprop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fprop.h; sourceTree = "<group>"; };
E5D63FC410BD494400A99626 /* geom2d.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = geom2d.cc; sourceTree = "<group>"; };
E5D63FC510BD494400A99626 /* geom2d.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = geom2d.h; sourceTree = "<group>"; };
E5D63FC610BD494400A99626 /* ghost.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ghost.cc; sourceTree = "<group>"; };
E5D63FC710BD494400A99626 /* ghost.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ghost.h; sourceTree = "<group>"; };
E5D63FC810BD494400A99626 /* godabil.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = godabil.cc; sourceTree = "<group>"; };
E5D63FC910BD494400A99626 /* godabil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = godabil.h; sourceTree = "<group>"; };
E5D63FCA10BD494400A99626 /* goditem.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = goditem.cc; sourceTree = "<group>"; };
E5D63FCB10BD494400A99626 /* goditem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = goditem.h; sourceTree = "<group>"; };
E5D63FCC10BD494400A99626 /* godwrath.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = godwrath.cc; sourceTree = "<group>"; };
E5D63FCD10BD494400A99626 /* godwrath.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = godwrath.h; sourceTree = "<group>"; };
E5D63FCE10BD494400A99626 /* hiscores.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = hiscores.cc; sourceTree = "<group>"; };
E5D63FCF10BD494400A99626 /* hiscores.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hiscores.h; sourceTree = "<group>"; };
E5D63FD010BD494400A99626 /* initfile.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = initfile.cc; sourceTree = "<group>"; };
E5D63FD110BD494400A99626 /* initfile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = initfile.h; sourceTree = "<group>"; };
E5D63FD210BD494400A99626 /* invent.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = invent.cc; sourceTree = "<group>"; };
E5D63FD310BD494400A99626 /* invent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = invent.h; sourceTree = "<group>"; };
E5D63FD410BD494400A99626 /* it_use2.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = it_use2.cc; sourceTree = "<group>"; };
E5D63FD510BD494400A99626 /* it_use2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = it_use2.h; sourceTree = "<group>"; };
E5D63FD610BD494400A99626 /* it_use3.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = it_use3.cc; sourceTree = "<group>"; };
E5D63FD710BD494400A99626 /* it_use3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = it_use3.h; sourceTree = "<group>"; };
E5D63FD810BD494400A99626 /* item_use.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = item_use.cc; sourceTree = "<group>"; };
E5D63FD910BD494400A99626 /* item_use.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = item_use.h; sourceTree = "<group>"; };
E5D63FDA10BD494400A99626 /* itemname.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemname.cc; sourceTree = "<group>"; };
E5D63FDB10BD494400A99626 /* itemname.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemname.h; sourceTree = "<group>"; };
E5D63FDC10BD494400A99626 /* itemprop-enum.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "itemprop-enum.h"; sourceTree = "<group>"; };
E5D63FDD10BD494400A99626 /* itemprop.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemprop.cc; sourceTree = "<group>"; };
E5D63FDE10BD494400A99626 /* itemprop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemprop.h; sourceTree = "<group>"; };
E5D63FDF10BD494400A99626 /* items.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = items.cc; sourceTree = "<group>"; };
E5D63FE010BD494400A99626 /* items.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = items.h; sourceTree = "<group>"; };
E5D63FE110BD494400A99626 /* jobs.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jobs.cc; sourceTree = "<group>"; };
E5D63FE210BD494400A99626 /* jobs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jobs.h; sourceTree = "<group>"; };
E5D63FE310BD494400A99626 /* kills.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = kills.cc; sourceTree = "<group>"; };
E5D63FE410BD494400A99626 /* kills.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kills.h; sourceTree = "<group>"; };
E5D63FE510BD494400A99626 /* l_crawl.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = l_crawl.cc; sourceTree = "<group>"; };
E5D63FE610BD494400A99626 /* l_debug.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = l_debug.cc; sourceTree = "<group>"; };
E5D63FE710BD494400A99626 /* l_defs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = l_defs.h; sourceTree = "<group>"; };
E5D63FE810BD494400A99626 /* l_dgn.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = l_dgn.cc; sourceTree = "<group>"; };
E5D63FE910BD494400A99626 /* l_dgnbld.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = l_dgnbld.cc; sourceTree = "<group>"; };
E5D63FEA10BD494400A99626 /* l_dgnevt.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = l_dgnevt.cc; sourceTree = "<group>"; };
E5D63FEB10BD494400A99626 /* l_dgngrd.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = l_dgngrd.cc; sourceTree = "<group>"; };
E5D63FEC10BD494400A99626 /* l_dgnit.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = l_dgnit.cc; sourceTree = "<group>"; };
E5D63FED10BD494400A99626 /* l_dgnlvl.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = l_dgnlvl.cc; sourceTree = "<group>"; };
E5D63FEE10BD494400A99626 /* l_dgnmon.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = l_dgnmon.cc; sourceTree = "<group>"; };
E5D63FEF10BD494400A99626 /* l_dgntil.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = l_dgntil.cc; sourceTree = "<group>"; };
E5D63FF010BD494400A99626 /* l_file.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = l_file.cc; sourceTree = "<group>"; };
E5D63FF110BD494400A99626 /* l_food.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = l_food.cc; sourceTree = "<group>"; };
E5D63FF210BD494400A99626 /* l_global.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = l_global.cc; sourceTree = "<group>"; };
E5D63FF310BD494400A99626 /* l_item.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = l_item.cc; sourceTree = "<group>"; };
E5D63FF410BD494400A99626 /* l_libs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = l_libs.h; sourceTree = "<group>"; };
E5D63FF510BD494400A99626 /* l_los.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = l_los.cc; sourceTree = "<group>"; };
E5D63FF610BD494400A99626 /* l_mapgrd.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = l_mapgrd.cc; sourceTree = "<group>"; };
E5D63FF710BD494400A99626 /* l_mapmrk.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = l_mapmrk.cc; sourceTree = "<group>"; };
E5D63FF810BD494400A99626 /* l_moninf.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = l_moninf.cc; sourceTree = "<group>"; };
E5D63FF910BD494400A99626 /* l_mons.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = l_mons.cc; sourceTree = "<group>"; };
E5D63FFA10BD494400A99626 /* l_option.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = l_option.cc; sourceTree = "<group>"; };
E5D63FFB10BD494400A99626 /* l_travel.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = l_travel.cc; sourceTree = "<group>"; };
E5D63FFC10BD494400A99626 /* l_view.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = l_view.cc; sourceTree = "<group>"; };
E5D63FFD10BD494400A99626 /* l_you.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = l_you.cc; sourceTree = "<group>"; };
E5D63FFE10BD494400A99626 /* lev-pand.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "lev-pand.cc"; sourceTree = "<group>"; };
E5D63FFF10BD494400A99626 /* lev-pand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "lev-pand.h"; sourceTree = "<group>"; };
E5D6400110BD494400A99626 /* libdos.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = libdos.h; sourceTree = "<group>"; };
E5D6400310BD494400A99626 /* libutil.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = libutil.cc; sourceTree = "<group>"; };
E5D6400410BD494400A99626 /* libutil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = libutil.h; sourceTree = "<group>"; };
E5D6400710BD494400A99626 /* los_def.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = los_def.cc; sourceTree = "<group>"; };
E5D6400810BD494400A99626 /* los_def.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = los_def.h; sourceTree = "<group>"; };
E5D6400910BD494400A99626 /* los.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = los.cc; sourceTree = "<group>"; };
E5D6400A10BD494400A99626 /* los.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = los.h; sourceTree = "<group>"; };
E5D6400B10BD494400A99626 /* losparam.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = losparam.cc; sourceTree = "<group>"; };
E5D6400C10BD494400A99626 /* losparam.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = losparam.h; sourceTree = "<group>"; };
E5D6400D10BD494400A99626 /* luaterp.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = luaterp.cc; sourceTree = "<group>"; };
E5D6400E10BD494400A99626 /* luaterp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = luaterp.h; sourceTree = "<group>"; };
E5D6400F10BD494400A99626 /* macro.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = macro.cc; sourceTree = "<group>"; };
E5D6401010BD494400A99626 /* macro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = macro.h; sourceTree = "<group>"; };
E5D6401110BD494400A99626 /* main.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cc; sourceTree = "<group>"; };
E5D6401510BD494400A99626 /* makeitem.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = makeitem.cc; sourceTree = "<group>"; };
E5D6401610BD494400A99626 /* makeitem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = makeitem.h; sourceTree = "<group>"; };
E5D6401710BD494400A99626 /* map_knowledge.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = map_knowledge.cc; sourceTree = "<group>"; };
E5D6401810BD494400A99626 /* map_knowledge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = map_knowledge.h; sourceTree = "<group>"; };
E5D6401910BD494400A99626 /* mapmark.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mapmark.cc; sourceTree = "<group>"; };
E5D6401A10BD494400A99626 /* mapmark.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mapmark.h; sourceTree = "<group>"; };
E5D6401B10BD494400A99626 /* maps.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = maps.cc; sourceTree = "<group>"; };
E5D6401C10BD494400A99626 /* maps.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = maps.h; sourceTree = "<group>"; };
E5D6401D10BD494400A99626 /* matrix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = matrix.h; sourceTree = "<group>"; };
E5D6401E10BD494400A99626 /* menu.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = menu.cc; sourceTree = "<group>"; };
E5D6401F10BD494400A99626 /* menu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = menu.h; sourceTree = "<group>"; };
E5D6402010BD494400A99626 /* message.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = message.cc; sourceTree = "<group>"; };
E5D6402110BD494400A99626 /* message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = message.h; sourceTree = "<group>"; };
E5D6402210BD494400A99626 /* misc.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = misc.cc; sourceTree = "<group>"; };
E5D6402310BD494400A99626 /* misc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = misc.h; sourceTree = "<group>"; };
E5D6402410BD494400A99626 /* mon-abil.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "mon-abil.cc"; sourceTree = "<group>"; };
E5D6402510BD494400A99626 /* mon-abil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "mon-abil.h"; sourceTree = "<group>"; };
E5D6402610BD494400A99626 /* mon-act.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "mon-act.cc"; sourceTree = "<group>"; };
E5D6402710BD494400A99626 /* mon-act.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "mon-act.h"; sourceTree = "<group>"; };
E5D6402810BD494400A99626 /* mon-behv.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "mon-behv.cc"; sourceTree = "<group>"; };
E5D6402910BD494400A99626 /* mon-behv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "mon-behv.h"; sourceTree = "<group>"; };
E5D6402A10BD494400A99626 /* mon-cast.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "mon-cast.cc"; sourceTree = "<group>"; };
E5D6402B10BD494400A99626 /* mon-cast.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "mon-cast.h"; sourceTree = "<group>"; };
E5D6402C10BD494400A99626 /* mon-data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "mon-data.h"; sourceTree = "<group>"; };
E5D6402D10BD494400A99626 /* mon-gear.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "mon-gear.cc"; sourceTree = "<group>"; };
E5D6402E10BD494400A99626 /* mon-gear.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "mon-gear.h"; sourceTree = "<group>"; };
E5D6402F10BD494400A99626 /* mon-grow.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "mon-grow.cc"; sourceTree = "<group>"; };
E5D6403010BD494400A99626 /* mon-grow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "mon-grow.h"; sourceTree = "<group>"; };
E5D6403110BD494400A99626 /* mon-info.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "mon-info.cc"; sourceTree = "<group>"; };
E5D6403210BD494400A99626 /* mon-info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "mon-info.h"; sourceTree = "<group>"; };
E5D6403310BD494400A99626 /* mon-iter.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "mon-iter.cc"; sourceTree = "<group>"; };
E5D6403410BD494400A99626 /* mon-iter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "mon-iter.h"; sourceTree = "<group>"; };
E5D6403510BD494400A99626 /* mon-movetarget.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "mon-movetarget.cc"; sourceTree = "<group>"; };
E5D6403610BD494400A99626 /* mon-movetarget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "mon-movetarget.h"; sourceTree = "<group>"; };
E5D6403710BD494400A99626 /* mon-pathfind.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "mon-pathfind.cc"; sourceTree = "<group>"; };
E5D6403810BD494400A99626 /* mon-pathfind.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "mon-pathfind.h"; sourceTree = "<group>"; };
E5D6403910BD494400A99626 /* mon-pick.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "mon-pick.cc"; sourceTree = "<group>"; };
E5D6403A10BD494400A99626 /* mon-pick.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "mon-pick.h"; sourceTree = "<group>"; };
E5D6403B10BD494400A99626 /* mon-place.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "mon-place.cc"; sourceTree = "<group>"; };
E5D6403C10BD494400A99626 /* mon-place.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "mon-place.h"; sourceTree = "<group>"; };
E5D6403D10BD494400A99626 /* mon-speak.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "mon-speak.cc"; sourceTree = "<group>"; };
E5D6403E10BD494400A99626 /* mon-speak.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "mon-speak.h"; sourceTree = "<group>"; };
E5D6403F10BD494400A99626 /* mon-spll.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "mon-spll.h"; sourceTree = "<group>"; };
E5D6404010BD494400A99626 /* mon-stuff.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "mon-stuff.cc"; sourceTree = "<group>"; };
E5D6404110BD494400A99626 /* mon-stuff.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "mon-stuff.h"; sourceTree = "<group>"; };
E5D6404210BD494400A99626 /* mon-transit.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "mon-transit.cc"; sourceTree = "<group>"; };
E5D6404310BD494400A99626 /* mon-transit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "mon-transit.h"; sourceTree = "<group>"; };
E5D6404410BD494400A99626 /* mon-util.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "mon-util.cc"; sourceTree = "<group>"; };
E5D6404510BD494400A99626 /* mon-util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "mon-util.h"; sourceTree = "<group>"; };
E5D6404610BD494400A99626 /* monster.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = monster.cc; sourceTree = "<group>"; };
E5D6404710BD494400A99626 /* monster.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = monster.h; sourceTree = "<group>"; };
E5D6404810BD494500A99626 /* mpr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mpr.h; sourceTree = "<group>"; };
E5D6404910BD494500A99626 /* msvc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = msvc.h; sourceTree = "<group>"; };
E5D6404A10BD494500A99626 /* mt19937ar.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mt19937ar.cc; sourceTree = "<group>"; };
E5D6404B10BD494500A99626 /* mt19937ar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mt19937ar.h; sourceTree = "<group>"; };
E5D6404C10BD494500A99626 /* mutation.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mutation.cc; sourceTree = "<group>"; };
E5D6404D10BD494500A99626 /* mutation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mutation.h; sourceTree = "<group>"; };
E5D6404E10BD494500A99626 /* newgame.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = newgame.cc; sourceTree = "<group>"; };
E5D6404F10BD494500A99626 /* newgame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = newgame.h; sourceTree = "<group>"; };
E5D6405010BD494500A99626 /* ng-init.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "ng-init.cc"; sourceTree = "<group>"; };
E5D6405110BD494500A99626 /* ng-init.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ng-init.h"; sourceTree = "<group>"; };
E5D6405210BD494500A99626 /* ng-input.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "ng-input.cc"; sourceTree = "<group>"; };
E5D6405310BD494500A99626 /* ng-input.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ng-input.h"; sourceTree = "<group>"; };
E5D6405410BD494500A99626 /* ng-restr.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "ng-restr.cc"; sourceTree = "<group>"; };
E5D6405510BD494500A99626 /* ng-restr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ng-restr.h"; sourceTree = "<group>"; };
E5D6405610BD494500A99626 /* notes.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = notes.cc; sourceTree = "<group>"; };
E5D6405710BD494500A99626 /* notes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = notes.h; sourceTree = "<group>"; };
E5D6405810BD494500A99626 /* options.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = options.h; sourceTree = "<group>"; };
E5D6405910BD494500A99626 /* ouch.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ouch.cc; sourceTree = "<group>"; };
E5D6405A10BD494500A99626 /* ouch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ouch.h; sourceTree = "<group>"; };
E5D6405B10BD494500A99626 /* output.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = output.cc; sourceTree = "<group>"; };
E5D6405C10BD494500A99626 /* output.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = output.h; sourceTree = "<group>"; };
E5D6405F10BD494500A99626 /* place.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = place.cc; sourceTree = "<group>"; };
E5D6406010BD494500A99626 /* place.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = place.h; sourceTree = "<group>"; };
E5D6406110BD494500A99626 /* platform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = platform.h; sourceTree = "<group>"; };
E5D6406210BD494500A99626 /* player.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = player.cc; sourceTree = "<group>"; };
E5D6406310BD494500A99626 /* player.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = player.h; sourceTree = "<group>"; };
E5D6406410BD494500A99626 /* quiver.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = quiver.cc; sourceTree = "<group>"; };
E5D6406510BD494500A99626 /* quiver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = quiver.h; sourceTree = "<group>"; };
E5D6406610BD494500A99626 /* random-weight.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "random-weight.h"; sourceTree = "<group>"; };
E5D6406710BD494500A99626 /* random.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = random.cc; sourceTree = "<group>"; };
E5D6406810BD494500A99626 /* random.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = random.h; sourceTree = "<group>"; };
E5D6406910BD494500A99626 /* ray.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ray.cc; sourceTree = "<group>"; };
E5D6406A10BD494500A99626 /* ray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ray.h; sourceTree = "<group>"; };
E5D6406B10BD494500A99626 /* religion.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = religion.cc; sourceTree = "<group>"; };
E5D6406C10BD494500A99626 /* religion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = religion.h; sourceTree = "<group>"; };
E5D6406D10BD494500A99626 /* rng.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rng.cc; sourceTree = "<group>"; };
E5D6406E10BD494500A99626 /* rng.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rng.h; sourceTree = "<group>"; };
E5D6406F10BD494500A99626 /* sha256.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sha256.cc; sourceTree = "<group>"; };
E5D6407010BD494500A99626 /* sha256.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sha256.h; sourceTree = "<group>"; };
E5D6407110BD494500A99626 /* shopping.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = shopping.cc; sourceTree = "<group>"; };
E5D6407210BD494500A99626 /* shopping.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shopping.h; sourceTree = "<group>"; };
E5D6407310BD494500A99626 /* shout.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = shout.cc; sourceTree = "<group>"; };
E5D6407410BD494500A99626 /* shout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shout.h; sourceTree = "<group>"; };
E5D6407510BD494500A99626 /* show.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = show.cc; sourceTree = "<group>"; };
E5D6407610BD494500A99626 /* show.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = show.h; sourceTree = "<group>"; };
E5D6407710BD494500A99626 /* showsymb.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = showsymb.cc; sourceTree = "<group>"; };
E5D6407810BD494500A99626 /* showsymb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = showsymb.h; sourceTree = "<group>"; };
E5D6407910BD494500A99626 /* skills.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = skills.cc; sourceTree = "<group>"; };
E5D6407A10BD494500A99626 /* skills.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = skills.h; sourceTree = "<group>"; };
E5D6407B10BD494500A99626 /* skills2.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = skills2.cc; sourceTree = "<group>"; };
E5D6407C10BD494500A99626 /* skills2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = skills2.h; sourceTree = "<group>"; };
E5D6407D10BD494500A99626 /* species.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = species.cc; sourceTree = "<group>"; };
E5D6407E10BD494500A99626 /* species.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = species.h; sourceTree = "<group>"; };
E5D6407F10BD494500A99626 /* spells1.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = spells1.cc; sourceTree = "<group>"; };
E5D6408010BD494500A99626 /* spells1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = spells1.h; sourceTree = "<group>"; };
E5D6408110BD494500A99626 /* spells2.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = spells2.cc; sourceTree = "<group>"; };
E5D6408210BD494500A99626 /* spells2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = spells2.h; sourceTree = "<group>"; };
E5D6408310BD494500A99626 /* spells3.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = spells3.cc; sourceTree = "<group>"; };
E5D6408410BD494500A99626 /* spells3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = spells3.h; sourceTree = "<group>"; };
E5D6408510BD494500A99626 /* spells4.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = spells4.cc; sourceTree = "<group>"; };
E5D6408610BD494500A99626 /* spells4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = spells4.h; sourceTree = "<group>"; };
E5D6408710BD494500A99626 /* spl-book.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "spl-book.cc"; sourceTree = "<group>"; };
E5D6408810BD494500A99626 /* spl-book.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "spl-book.h"; sourceTree = "<group>"; };
E5D6408910BD494500A99626 /* spl-cast.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "spl-cast.cc"; sourceTree = "<group>"; };
E5D6408A10BD494500A99626 /* spl-cast.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "spl-cast.h"; sourceTree = "<group>"; };
E5D6408B10BD494500A99626 /* spl-data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "spl-data.h"; sourceTree = "<group>"; };
E5D6408C10BD494500A99626 /* spl-mis.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "spl-mis.cc"; sourceTree = "<group>"; };
E5D6408D10BD494500A99626 /* spl-mis.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "spl-mis.h"; sourceTree = "<group>"; };
E5D6408E10BD494500A99626 /* spl-util.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "spl-util.cc"; sourceTree = "<group>"; };
E5D6408F10BD494500A99626 /* spl-util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "spl-util.h"; sourceTree = "<group>"; };
E5D6409010BD494500A99626 /* sqldbm.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sqldbm.cc; sourceTree = "<group>"; };
E5D6409110BD494500A99626 /* sqldbm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sqldbm.h; sourceTree = "<group>"; };
E5D6409210BD494500A99626 /* stash.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stash.cc; sourceTree = "<group>"; };
E5D6409310BD494500A99626 /* stash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stash.h; sourceTree = "<group>"; };
E5D6409410BD494500A99626 /* state.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = state.cc; sourceTree = "<group>"; };
E5D6409510BD494500A99626 /* state.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = state.h; sourceTree = "<group>"; };
E5D6409610BD494500A99626 /* store.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = store.cc; sourceTree = "<group>"; };
E5D6409710BD494500A99626 /* store.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = store.h; sourceTree = "<group>"; };
E5D6409810BD494500A99626 /* stuff.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stuff.cc; sourceTree = "<group>"; };
E5D6409910BD494500A99626 /* stuff.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stuff.h; sourceTree = "<group>"; };
E5D6409A10BD494500A99626 /* tags.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tags.cc; sourceTree = "<group>"; };
E5D6409B10BD494500A99626 /* tags.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tags.h; sourceTree = "<group>"; };
E5D6409C10BD494500A99626 /* teleport.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = teleport.cc; sourceTree = "<group>"; };
E5D6409D10BD494500A99626 /* teleport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = teleport.h; sourceTree = "<group>"; };
E5D6409E10BD494500A99626 /* terrain.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = terrain.cc; sourceTree = "<group>"; };
E5D6409F10BD494500A99626 /* terrain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = terrain.h; sourceTree = "<group>"; };
E5D640A210BD494500A99626 /* traps.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = traps.cc; sourceTree = "<group>"; };
E5D640A310BD494500A99626 /* traps.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = traps.h; sourceTree = "<group>"; };
E5D640A410BD494500A99626 /* travel.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = travel.cc; sourceTree = "<group>"; };
E5D640A510BD494500A99626 /* travel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = travel.h; sourceTree = "<group>"; };
E5D640A810BD494500A99626 /* version.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = version.cc; sourceTree = "<group>"; };
E5D640A910BD494500A99626 /* version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = version.h; sourceTree = "<group>"; };
E5D640AA10BD494500A99626 /* view.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = view.cc; sourceTree = "<group>"; };
E5D640AB10BD494500A99626 /* view.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = view.h; sourceTree = "<group>"; };
E5D640AC10BD494500A99626 /* viewchar.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = viewchar.cc; sourceTree = "<group>"; };
E5D640AD10BD494500A99626 /* viewchar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = viewchar.h; sourceTree = "<group>"; };
E5D640AE10BD494500A99626 /* viewgeom.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = viewgeom.cc; sourceTree = "<group>"; };
E5D640AF10BD494500A99626 /* viewgeom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = viewgeom.h; sourceTree = "<group>"; };
E5D640B010BD494500A99626 /* viewmap.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = viewmap.cc; sourceTree = "<group>"; };
E5D640B110BD494500A99626 /* viewmap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = viewmap.h; sourceTree = "<group>"; };
E5D640B210BD494500A99626 /* wiz-dgn.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "wiz-dgn.cc"; sourceTree = "<group>"; };
E5D640B310BD494500A99626 /* wiz-dgn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "wiz-dgn.h"; sourceTree = "<group>"; };
E5D640B410BD494500A99626 /* wiz-fsim.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "wiz-fsim.cc"; sourceTree = "<group>"; };
E5D640B510BD494500A99626 /* wiz-fsim.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "wiz-fsim.h"; sourceTree = "<group>"; };
E5D640B610BD494500A99626 /* wiz-item.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "wiz-item.cc"; sourceTree = "<group>"; };
E5D640B710BD494500A99626 /* wiz-item.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "wiz-item.h"; sourceTree = "<group>"; };
E5D640B810BD494500A99626 /* wiz-mon.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "wiz-mon.cc"; sourceTree = "<group>"; };
E5D640B910BD494500A99626 /* wiz-mon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "wiz-mon.h"; sourceTree = "<group>"; };
E5D640BA10BD494500A99626 /* wiz-you.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "wiz-you.cc"; sourceTree = "<group>"; };
E5D640BB10BD494500A99626 /* wiz-you.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "wiz-you.h"; sourceTree = "<group>"; };
E5D640BC10BD494500A99626 /* xom.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = xom.cc; sourceTree = "<group>"; };
E5D640BD10BD494500A99626 /* xom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xom.h; sourceTree = "<group>"; };
/* 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;
};
B032D525106C01AF0002D70D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
B0C9CFE0108E014800E7FA35 /* libSQLite.a in Frameworks */,
B032D68E106C02070002D70D /* AppKit.framework in Frameworks */,
B032D686106C02070002D70D /* liblua.a in Frameworks */,
B032D688106C02070002D70D /* libncurses.dylib in Frameworks */,
B032D687106C02070002D70D /* libreadline.dylib in Frameworks */,
B032D68C106C02070002D70D /* OpenGL.framework in Frameworks */,
B0F7DFEF1086F4F1008FFA70 /* libpng.framework in Frameworks */,
B0F7DF8B1086F0D5008FFA70 /* SDL_image.framework in Frameworks */,
B0F7DF191086EEC6008FFA70 /* SDL.framework in Frameworks */,
B0F7DF1A1086EEC6008FFA70 /* Freetype2.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
B082656D10731A95006EEC5A /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
B0C9CF44108DF1AF00E7FA35 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
B0C9CF5A108DF21700E7FA35 /* SDL_image.framework in Frameworks */,
B0C9CF59108DF21300E7FA35 /* SDL.framework in Frameworks */,
B0C9CF58108DF20F00E7FA35 /* libpng.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
08FB7794FE84155DC02AAC07 /* Crawl */ = {
isa = PBXGroup;
children = (
B0F7DFE61086F4EA008FFA70 /* libpng.xcodeproj */,
B0F7DF7B1086F0CB008FFA70 /* SDL_image.xcodeproj */,
B0F7DEF91086EE79008FFA70 /* SDL.xcodeproj */,
B0F7DEEA1086EDE4008FFA70 /* Freetype2.xcodeproj */,
C6A0FF2B0290797F04C91782 /* Documentation */,
D25C91990FF037A000D9E8AD /* Frameworks */,
7B3B07610BD13B1700F2980E /* Libraries */,
D2AE25EC0DA2621100E15489 /* Mac */,
1AB674ADFE9D54B511CA2CBB /* Products */,
7B352F1B0B0022C900CABB32 /* Resources */,
08FB7795FE84155DC02AAC07 /* Source */,
);
name = Crawl;
sourceTree = "<group>";
};
08FB7795FE84155DC02AAC07 /* Source */ = {
isa = PBXGroup;
children = (
7B352EF00B001F5B00CABB32 /* Crawl */,
7B352E950B0017CF00CABB32 /* Levcomp */,
7B0EFD4B0BD12EEA00002671 /* Lua */,
D25C917A0FF035D100D9E8AD /* rltiles */,
7B352EF30B001FA700CABB32 /* Shared */,
B082657410731AA1006EEC5A /* SQLite */,
D25C91790FF035AF00D9E8AD /* Tiles */,
);
name = Source;
sourceTree = "<group>";
};
1AB674ADFE9D54B511CA2CBB /* Products */ = {
isa = PBXGroup;
children = (
8DD76FB20486AB0100D96B5E /* crawl */,
7B0EFD420BD12E9200002671 /* liblua.a */,
D2F271F60DA1C58C00445FE9 /* Dungeon Crawl Stone Soup - ASCII.app */,
B032D527106C01AF0002D70D /* Dungeon Crawl Stone Soup.app */,
B082656F10731A95006EEC5A /* libSQLite.a */,
B0C9CF46108DF1AF00E7FA35 /* tilegen.app */,
);
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 = contrib/lua/src;
sourceTree = "<group>";
};
7B352E950B0017CF00CABB32 /* Levcomp */ = {
isa = PBXGroup;
children = (
7B352ED10B001B9E00CABB32 /* levcomp.lpp */,
7B352ED20B001B9E00CABB32 /* levcomp.ypp */,
);
name = Levcomp;
sourceTree = "<group>";
};
7B352EF00B001F5B00CABB32 /* Crawl */ = {
isa = PBXGroup;
children = (
4C59B08711E7964700760867 /* dgn-actions.h */,
4C59B08811E7964700760867 /* hints.h */,
4C59B08A11E7964700760867 /* hints.cc */,
E5D63F5D10BD494300A99626 /* abl-show.cc */,
E5D63F5E10BD494300A99626 /* abl-show.h */,
E5D63F5F10BD494300A99626 /* abyss.cc */,
E5D63F6010BD494300A99626 /* abyss.h */,
7B51659211859CFA005B23ED /* act-iter.cc */,
7B51659311859CFA005B23ED /* act-iter.h */,
E5D63F6110BD494300A99626 /* actor-los.cc */,
E5D63F6210BD494300A99626 /* actor.cc */,
E5D63F6310BD494300A99626 /* actor.h */,
E5D63F6410BD494300A99626 /* AppHdr.cc */,
E5D63F6510BD494300A99626 /* AppHdr.h */,
E5D63F6610BD494300A99626 /* areas.cc */,
E5D63F6710BD494300A99626 /* areas.h */,
E5D63F6810BD494300A99626 /* arena.cc */,
E5D63F6910BD494300A99626 /* arena.h */,
E5D63F6B10BD494300A99626 /* art-func.h */,
E5D63F6C10BD494300A99626 /* artefact.cc */,
E5D63F6D10BD494300A99626 /* artefact.h */,
E5D63F6E10BD494300A99626 /* attitude-change.cc */,
E5D63F6F10BD494300A99626 /* attitude-change.h */,
E5D63F7010BD494300A99626 /* beam.cc */,
E5D63F7110BD494300A99626 /* beam.h */,
E5D63F7210BD494400A99626 /* behold.cc */,
E5D63F7310BD494400A99626 /* bitary.cc */,
E5D63F7410BD494400A99626 /* bitary.h */,
E5D63F7510BD494400A99626 /* branch.cc */,
E5D63F7610BD494400A99626 /* branch.h */,
E5D63F7810BD494400A99626 /* chardump.cc */,
E5D63F7910BD494400A99626 /* chardump.h */,
E5D63F7A10BD494400A99626 /* cio.cc */,
E5D63F7B10BD494400A99626 /* cio.h */,
E5D63F7C10BD494400A99626 /* cloud.cc */,
E5D63F7D10BD494400A99626 /* cloud.h */,
E5D63F7E10BD494400A99626 /* clua.cc */,
E5D63F7F10BD494400A99626 /* clua.h */,
E5D63F8010BD494400A99626 /* cluautil.cc */,
E5D63F8110BD494400A99626 /* cluautil.h */,
E5D63F8210BD494400A99626 /* cmd-keys.h */,
E5D63F8310BD494400A99626 /* cmd-name.h */,
E5D63F8410BD494400A99626 /* colour.cc */,
E5D63F8510BD494400A99626 /* colour.h */,
E5D63F8610BD494400A99626 /* command.cc */,
E5D63F8710BD494400A99626 /* command.h */,
E5D63F8910BD494400A99626 /* coord-circle.cc */,
E5D63F8A10BD494400A99626 /* coord-circle.h */,
E5D63F8B10BD494400A99626 /* coord.cc */,
E5D63F8C10BD494400A99626 /* coord.h */,
E5D63F8D10BD494400A99626 /* coordit.cc */,
E5D63F8E10BD494400A99626 /* coordit.h */,
E5D63F9010BD494400A99626 /* crash-u.cc */,
E5D63F9210BD494400A99626 /* crash.h */,
E5D63F9310BD494400A99626 /* ctest.cc */,
E5D63F9410BD494400A99626 /* ctest.h */,
E5D63F9510BD494400A99626 /* database.cc */,
E5D63F9610BD494400A99626 /* database.h */,
E5D63F9710BD494400A99626 /* dbg-asrt.cc */,
E5D63F9810BD494400A99626 /* dbg-crsh.h */,
E5D63F9910BD494400A99626 /* dbg-maps.cc */,
E5D63F9A10BD494400A99626 /* dbg-maps.h */,
E5D63F9B10BD494400A99626 /* dbg-scan.cc */,
E5D63F9C10BD494400A99626 /* dbg-scan.h */,
E5D63F9D10BD494400A99626 /* dbg-util.cc */,
E5D63F9E10BD494400A99626 /* dbg-util.h */,
E5D63F9F10BD494400A99626 /* debug.h */,
E5D63FA010BD494400A99626 /* decks.cc */,
E5D63FA110BD494400A99626 /* decks.h */,
E5D63FA210BD494400A99626 /* defines.h */,
E5D63FA310BD494400A99626 /* delay.cc */,
E5D63FA410BD494400A99626 /* delay.h */,
E5D63FA510BD494400A99626 /* describe.cc */,
E5D63FA610BD494400A99626 /* describe.h */,
7B51659911859D30005B23ED /* dgl-message.cc */,
7B51659A11859D30005B23ED /* dgl-message.h */,
4C59B08911E7964700760867 /* dgn-actions.cc */,
7B09F6371133D823004F149D /* dgn-height.cc */,
7B09F6381133D823004F149D /* dgn-height.h */,
7B09F6391133D823004F149D /* dgn-overview.cc */,
7B09F63A1133D823004F149D /* dgn-overview.h */,
7B09F63B1133D823004F149D /* dgn-shoals.cc */,
7B09F63C1133D823004F149D /* dgn-shoals.h */,
7B09F63D1133D823004F149D /* dgn-swamp.cc */,
7B09F63E1133D823004F149D /* dgn-swamp.h */,
E5D63FA710BD494400A99626 /* dgnevent.cc */,
E5D63FA810BD494400A99626 /* dgnevent.h */,
E5D63FA910BD494400A99626 /* directn.cc */,
E5D63FAA10BD494400A99626 /* directn.h */,
E5D63FAB10BD494400A99626 /* dlua.cc */,
E5D63FAC10BD494400A99626 /* dlua.h */,
E5D63FAD10BD494400A99626 /* dungeon.cc */,
E5D63FAE10BD494400A99626 /* dungeon.h */,
E5D63FAF10BD494400A99626 /* effects.cc */,
E5D63FB010BD494400A99626 /* effects.h */,
E5D63FB110BD494400A99626 /* enum.h */,
E5D63FB210BD494400A99626 /* env.h */,
E5D63FB310BD494400A99626 /* exclude.cc */,
E5D63FB410BD494400A99626 /* exclude.h */,
E5D63FB510BD494400A99626 /* externs.h */,
E5D63FB610BD494400A99626 /* feature.cc */,
E5D63FB710BD494400A99626 /* feature.h */,
E5D63FB810BD494400A99626 /* fight.cc */,
E5D63FB910BD494400A99626 /* fight.h */,
E5D63FBA10BD494400A99626 /* files.cc */,
E5D63FBB10BD494400A99626 /* files.h */,
E5D63FBC10BD494400A99626 /* fixedarray.h */,
E5D63FBD10BD494400A99626 /* fixedvector.h */,
7B51659B11859D30005B23ED /* flood_find.h */,
7B51659611859D1A005B23ED /* fontwrapper-ft.cc */,
7B51659711859D1A005B23ED /* fontwrapper-ft.h */,
E5D63FBE10BD494400A99626 /* food.cc */,
E5D63FBF10BD494400A99626 /* food.h */,
E5D63FC010BD494400A99626 /* format.cc */,
E5D63FC110BD494400A99626 /* format.h */,
E5D63FC210BD494400A99626 /* fprop.cc */,
E5D63FC310BD494400A99626 /* fprop.h */,
E5D63FC410BD494400A99626 /* geom2d.cc */,
E5D63FC510BD494400A99626 /* geom2d.h */,
E5D63FC610BD494400A99626 /* ghost.cc */,
E5D63FC710BD494400A99626 /* ghost.h */,
7B51658A11859CE3005B23ED /* glwrapper-ogl.cc */,
7B51658B11859CE3005B23ED /* glwrapper-ogl.h */,
7B51658C11859CE3005B23ED /* glwrapper.cc */,
7B51658D11859CE3005B23ED /* glwrapper.h */,
E5D63FC810BD494400A99626 /* godabil.cc */,
E5D63FC910BD494400A99626 /* godabil.h */,
7B09F53B1133D63E004F149D /* godconduct.cc */,
7B09F53C1133D63E004F149D /* godconduct.h */,
E5D63FCA10BD494400A99626 /* goditem.cc */,
E5D63FCB10BD494400A99626 /* goditem.h */,
7B09F53D1133D63E004F149D /* godpassive.cc */,
7B09F53E1133D63E004F149D /* godpassive.h */,
7B09F53F1133D63E004F149D /* godprayer.cc */,
7B09F5401133D63E004F149D /* godprayer.h */,
E5D63FCC10BD494400A99626 /* godwrath.cc */,
E5D63FCD10BD494400A99626 /* godwrath.h */,
E5D63FCE10BD494400A99626 /* hiscores.cc */,
E5D63FCF10BD494400A99626 /* hiscores.h */,
E5D63FD010BD494400A99626 /* initfile.cc */,
E5D63FD110BD494400A99626 /* initfile.h */,
E5D63FD210BD494400A99626 /* invent.cc */,
E5D63FD310BD494400A99626 /* invent.h */,
E5D63FD410BD494400A99626 /* it_use2.cc */,
E5D63FD510BD494400A99626 /* it_use2.h */,
E5D63FD610BD494400A99626 /* it_use3.cc */,
E5D63FD710BD494400A99626 /* it_use3.h */,
E5D63FD810BD494400A99626 /* item_use.cc */,
E5D63FD910BD494400A99626 /* item_use.h */,
E5D63FDA10BD494400A99626 /* itemname.cc */,
E5D63FDB10BD494400A99626 /* itemname.h */,
E5D63FDC10BD494400A99626 /* itemprop-enum.h */,
E5D63FDD10BD494400A99626 /* itemprop.cc */,
E5D63FDE10BD494400A99626 /* itemprop.h */,
E5D63FDF10BD494400A99626 /* items.cc */,
E5D63FE010BD494400A99626 /* items.h */,
E5D63FE110BD494400A99626 /* jobs.cc */,
E5D63FE210BD494400A99626 /* jobs.h */,
E5D63FE310BD494400A99626 /* kills.cc */,
E5D63FE410BD494400A99626 /* kills.h */,
E5D63FE510BD494400A99626 /* l_crawl.cc */,
E5D63FE610BD494400A99626 /* l_debug.cc */,
E5D63FE710BD494400A99626 /* l_defs.h */,
E5D63FE810BD494400A99626 /* l_dgn.cc */,
E5D63FE910BD494400A99626 /* l_dgnbld.cc */,
E5D63FEA10BD494400A99626 /* l_dgnevt.cc */,
E5D63FEB10BD494400A99626 /* l_dgngrd.cc */,
E5D63FEC10BD494400A99626 /* l_dgnit.cc */,
E5D63FED10BD494400A99626 /* l_dgnlvl.cc */,
E5D63FEE10BD494400A99626 /* l_dgnmon.cc */,
E5D63FEF10BD494400A99626 /* l_dgntil.cc */,
7B09F5411133D63E004F149D /* l_feat.cc */,
E5D63FF010BD494400A99626 /* l_file.cc */,
E5D63FF110BD494400A99626 /* l_food.cc */,
E5D63FF210BD494400A99626 /* l_global.cc */,
E5D63FF310BD494400A99626 /* l_item.cc */,
E5D63FF410BD494400A99626 /* l_libs.h */,
E5D63FF510BD494400A99626 /* l_los.cc */,
E5D63FF610BD494400A99626 /* l_mapgrd.cc */,
E5D63FF710BD494400A99626 /* l_mapmrk.cc */,
E5D63FF810BD494400A99626 /* l_moninf.cc */,
E5D63FF910BD494400A99626 /* l_mons.cc */,
E5D63FFA10BD494400A99626 /* l_option.cc */,
7B09F5421133D63E004F149D /* l_spells.cc */,
93F94B1E10C178990077B142 /* l_subvault.cc */,
E5D63FFB10BD494400A99626 /* l_travel.cc */,
E5D63FFC10BD494400A99626 /* l_view.cc */,
E5D63FFD10BD494400A99626 /* l_you.cc */,
E5D63FFE10BD494400A99626 /* lev-pand.cc */,
E5D63FFF10BD494400A99626 /* lev-pand.h */,
E5D6400110BD494400A99626 /* libdos.h */,
7BDE8454116D24E600974D63 /* libunix.cc */,
7BDE8455116D24E600974D63 /* libunix.h */,
E5D6400310BD494400A99626 /* libutil.cc */,
E5D6400410BD494400A99626 /* libutil.h */,
E5D6400910BD494400A99626 /* los.cc */,
E5D6400A10BD494400A99626 /* los.h */,
E5D6400710BD494400A99626 /* los_def.cc */,
E5D6400810BD494400A99626 /* los_def.h */,
7B51659E11859D44005B23ED /* losglobal.cc */,
7B51659F11859D44005B23ED /* losglobal.h */,
E5D6400B10BD494400A99626 /* losparam.cc */,
E5D6400C10BD494400A99626 /* losparam.h */,
E5D6400D10BD494400A99626 /* luaterp.cc */,
E5D6400E10BD494400A99626 /* luaterp.h */,
E5D6400F10BD494400A99626 /* macro.cc */,
E5D6401010BD494400A99626 /* macro.h */,
E5D6401110BD494400A99626 /* main.cc */,
E5D6401510BD494400A99626 /* makeitem.cc */,
E5D6401610BD494400A99626 /* makeitem.h */,
E5D6401710BD494400A99626 /* map_knowledge.cc */,
E5D6401810BD494400A99626 /* map_knowledge.h */,
E5D6401910BD494400A99626 /* mapmark.cc */,
E5D6401A10BD494400A99626 /* mapmark.h */,
E5D6401B10BD494400A99626 /* maps.cc */,
E5D6401C10BD494400A99626 /* maps.h */,
E5D6401D10BD494400A99626 /* matrix.h */,
7B09F54C1133D66C004F149D /* melee_attack.h */,
E5D6401E10BD494400A99626 /* menu.cc */,
E5D6401F10BD494400A99626 /* menu.h */,
7B09F6491133D92C004F149D /* message-stream.cc */,
E5D6402010BD494400A99626 /* message.cc */,
E5D6402110BD494400A99626 /* message.h */,
7B09F54D1133D66C004F149D /* mgen_data.cc */,
7B09F54E1133D66C004F149D /* mgen_data.h */,
7B09F54F1133D66C004F149D /* mgen_enum.h */,
E5D6402210BD494400A99626 /* misc.cc */,
E5D6402310BD494400A99626 /* misc.h */,
7B09F5501133D66C004F149D /* mislead.cc */,
7B09F5511133D66C004F149D /* mislead.h */,
E5D6402410BD494400A99626 /* mon-abil.cc */,
E5D6402510BD494400A99626 /* mon-abil.h */,
E5D6402610BD494400A99626 /* mon-act.cc */,
E5D6402710BD494400A99626 /* mon-act.h */,
E5D6402810BD494400A99626 /* mon-behv.cc */,
E5D6402910BD494400A99626 /* mon-behv.h */,
E5D6402A10BD494400A99626 /* mon-cast.cc */,
E5D6402B10BD494400A99626 /* mon-cast.h */,
7B09F5541133D66C004F149D /* mon-clone.cc */,
7B09F5551133D66C004F149D /* mon-clone.h */,
E5D6402C10BD494400A99626 /* mon-data.h */,
7B09F5561133D66C004F149D /* mon-death.cc */,
7B09F5571133D66C004F149D /* mon-death.h */,
7B09F5581133D66C004F149D /* mon-enum.h */,
E5D6402D10BD494400A99626 /* mon-gear.cc */,
E5D6402E10BD494400A99626 /* mon-gear.h */,
E5D6402F10BD494400A99626 /* mon-grow.cc */,
E5D6403010BD494400A99626 /* mon-grow.h */,
E5D6403110BD494400A99626 /* mon-info.cc */,
E5D6403210BD494400A99626 /* mon-info.h */,
E5D6403310BD494400A99626 /* mon-iter.cc */,
E5D6403410BD494400A99626 /* mon-iter.h */,
E5D6403510BD494400A99626 /* mon-movetarget.cc */,
E5D6403610BD494400A99626 /* mon-movetarget.h */,
E5D6403710BD494400A99626 /* mon-pathfind.cc */,
E5D6403810BD494400A99626 /* mon-pathfind.h */,
E5D6403910BD494400A99626 /* mon-pick.cc */,
E5D6403A10BD494400A99626 /* mon-pick.h */,
E5D6403B10BD494400A99626 /* mon-place.cc */,
E5D6403C10BD494400A99626 /* mon-place.h */,
7B09F64E1133DA4D004F149D /* mon-project.cc */,
7B09F64F1133DA4D004F149D /* mon-project.h */,
E5D6403D10BD494400A99626 /* mon-speak.cc */,
E5D6403E10BD494400A99626 /* mon-speak.h */,
E5D6403F10BD494400A99626 /* mon-spll.h */,
E5D6404010BD494400A99626 /* mon-stuff.cc */,
E5D6404110BD494400A99626 /* mon-stuff.h */,
E5D6404210BD494400A99626 /* mon-transit.cc */,
E5D6404310BD494400A99626 /* mon-transit.h */,
E5D6404410BD494400A99626 /* mon-util.cc */,
E5D6404510BD494400A99626 /* mon-util.h */,
7B09F5521133D66C004F149D /* mon_resist_def.cc */,
7B09F5531133D66C004F149D /* mon_resist_def.h */,
E5D6404610BD494400A99626 /* monster.cc */,
E5D6404710BD494400A99626 /* monster.h */,
E5D6404810BD494500A99626 /* mpr.h */,
E5D6404910BD494500A99626 /* msvc.h */,
E5D6404A10BD494500A99626 /* mt19937ar.cc */,
E5D6404B10BD494500A99626 /* mt19937ar.h */,
7B5165A211859D5A005B23ED /* mutation-data.h */,
E5D6404C10BD494500A99626 /* mutation.cc */,
E5D6404D10BD494500A99626 /* mutation.h */,
E5D6404E10BD494500A99626 /* newgame.cc */,
E5D6404F10BD494500A99626 /* newgame.h */,
7B5165A311859D5A005B23ED /* newgame_def.h */,
E5D6405010BD494500A99626 /* ng-init.cc */,
E5D6405110BD494500A99626 /* ng-init.h */,
E5D6405210BD494500A99626 /* ng-input.cc */,
E5D6405310BD494500A99626 /* ng-input.h */,
E5D6405410BD494500A99626 /* ng-restr.cc */,
E5D6405510BD494500A99626 /* ng-restr.h */,
7B5165A411859D5A005B23ED /* ng-setup.cc */,
7B5165A511859D5A005B23ED /* ng-setup.h */,
7B5165A611859D5A005B23ED /* ng-wanderer.cc */,
7B5165A711859D5A005B23ED /* ng-wanderer.h */,
E5D6405610BD494500A99626 /* notes.cc */,
E5D6405710BD494500A99626 /* notes.h */,
E5D6405810BD494500A99626 /* options.h */,
E5D6405910BD494500A99626 /* ouch.cc */,
E5D6405A10BD494500A99626 /* ouch.h */,
E5D6405B10BD494500A99626 /* output.cc */,
E5D6405C10BD494500A99626 /* output.h */,
7B09F5591133D66C004F149D /* pattern.cc */,
7B09F55A1133D66C004F149D /* pattern.h */,
7B5165A811859D5A005B23ED /* place-info.cc */,
7B5165A911859D5A005B23ED /* place-info.h */,
E5D6405F10BD494500A99626 /* place.cc */,
E5D6406010BD494500A99626 /* place.h */,
E5D6406110BD494500A99626 /* platform.h */,
7B5165AA11859D5A005B23ED /* player-act.cc */,
7BDE8442116D247D00974D63 /* player-equip.cc */,
7BDE8443116D247D00974D63 /* player-equip.h */,
7B5165AB11859D5A005B23ED /* player-stats.cc */,
7B5165AC11859D5A005B23ED /* player-stats.h */,
E5D6406210BD494500A99626 /* player.cc */,
E5D6406310BD494500A99626 /* player.h */,
E5D6406410BD494500A99626 /* quiver.cc */,
E5D6406510BD494500A99626 /* quiver.h */,
7B5165B711859D82005B23ED /* random-var.cc */,
7B5165B811859D82005B23ED /* random-var.h */,
E5D6406610BD494500A99626 /* random-weight.h */,
E5D6406710BD494500A99626 /* random.cc */,
E5D6406810BD494500A99626 /* random.h */,
E5D6406910BD494500A99626 /* ray.cc */,
E5D6406A10BD494500A99626 /* ray.h */,
7B5165B911859D82005B23ED /* religion-enum.h */,
E5D6406B10BD494500A99626 /* religion.cc */,
E5D6406C10BD494500A99626 /* religion.h */,
E5D6406D10BD494500A99626 /* rng.cc */,
E5D6406E10BD494500A99626 /* rng.h */,
E5D6406F10BD494500A99626 /* sha256.cc */,
E5D6407010BD494500A99626 /* sha256.h */,
E5D6407110BD494500A99626 /* shopping.cc */,
E5D6407210BD494500A99626 /* shopping.h */,
E5D6407310BD494500A99626 /* shout.cc */,
E5D6407410BD494500A99626 /* shout.h */,
E5D6407510BD494500A99626 /* show.cc */,
E5D6407610BD494500A99626 /* show.h */,
E5D6407710BD494500A99626 /* showsymb.cc */,
E5D6407810BD494500A99626 /* showsymb.h */,
E5D6407910BD494500A99626 /* skills.cc */,
E5D6407A10BD494500A99626 /* skills.h */,
E5D6407B10BD494500A99626 /* skills2.cc */,
E5D6407C10BD494500A99626 /* skills2.h */,
E5D6407D10BD494500A99626 /* species.cc */,
E5D6407E10BD494500A99626 /* species.h */,
E5D6407F10BD494500A99626 /* spells1.cc */,
E5D6408010BD494500A99626 /* spells1.h */,
E5D6408110BD494500A99626 /* spells2.cc */,
E5D6408210BD494500A99626 /* spells2.h */,
E5D6408310BD494500A99626 /* spells3.cc */,
E5D6408410BD494500A99626 /* spells3.h */,
E5D6408510BD494500A99626 /* spells4.cc */,
E5D6408610BD494500A99626 /* spells4.h */,
E5D6408710BD494500A99626 /* spl-book.cc */,
E5D6408810BD494500A99626 /* spl-book.h */,
E5D6408910BD494500A99626 /* spl-cast.cc */,
E5D6408A10BD494500A99626 /* spl-cast.h */,
E5D6408B10BD494500A99626 /* spl-data.h */,
E5D6408C10BD494500A99626 /* spl-mis.cc */,
E5D6408D10BD494500A99626 /* spl-mis.h */,
E5D6408E10BD494500A99626 /* spl-util.cc */,
E5D6408F10BD494500A99626 /* spl-util.h */,
7B5165BA11859D82005B23ED /* spl-zap.cc */,
7B5165BB11859D82005B23ED /* spl-zap.h */,
7B5165BC11859D82005B23ED /* sprint.cc */,
7B5165BD11859D82005B23ED /* sprint.h */,
E5D6409010BD494500A99626 /* sqldbm.cc */,
E5D6409110BD494500A99626 /* sqldbm.h */,
7B5165BE11859D82005B23ED /* stairs.cc */,
7B5165BF11859D82005B23ED /* stairs.h */,
7B5165C011859D82005B23ED /* startup.cc */,
7B5165C111859D82005B23ED /* startup.h */,
E5D6409210BD494500A99626 /* stash.cc */,
E5D6409310BD494500A99626 /* stash.h */,
E5D6409410BD494500A99626 /* state.cc */,
E5D6409510BD494500A99626 /* state.h */,
E5D6409610BD494500A99626 /* store.cc */,
E5D6409710BD494500A99626 /* store.h */,
E5D6409810BD494500A99626 /* stuff.cc */,
E5D6409910BD494500A99626 /* stuff.h */,
7B5165C211859D82005B23ED /* tag-version.h */,
E5D6409A10BD494500A99626 /* tags.cc */,
E5D6409B10BD494500A99626 /* tags.h */,
7B5165C311859D82005B23ED /* tagstring.cc */,
7B5165C411859D82005B23ED /* tagstring.h */,
E5D6409C10BD494500A99626 /* teleport.cc */,
E5D6409D10BD494500A99626 /* teleport.h */,
E5D6409E10BD494500A99626 /* terrain.cc */,
E5D6409F10BD494500A99626 /* terrain.h */,
4C59B08B11E7964700760867 /* tiledgnbuf.cc */,
4C59B08E11E7964700760867 /* tileview.cc */,
7B51655D11859CD6005B23ED /* tiledoll.cc */,
7B51655E11859CD6005B23ED /* tiledoll.h */,
4C59B08C11E7964700760867 /* tilepick-p.cc */,
7B51655F11859CD6005B23ED /* tilereg-crt.cc */,
7B51656011859CD6005B23ED /* tilereg-crt.h */,
7B51656111859CD6005B23ED /* tilereg-dgn.cc */,
7B51656211859CD6005B23ED /* tilereg-dgn.h */,
7B51656311859CD6005B23ED /* tilereg-doll.cc */,
7B51656411859CD6005B23ED /* tilereg-doll.h */,
7B51656511859CD6005B23ED /* tilereg-grid.cc */,
7B51656611859CD6005B23ED /* tilereg-grid.h */,
7B51656711859CD6005B23ED /* tilereg-inv.cc */,
7B51656811859CD6005B23ED /* tilereg-inv.h */,
7B51656911859CD6005B23ED /* tilereg-map.cc */,
4C59B08D11E7964700760867 /* tilereg-mon.cc */,
7B51656A11859CD6005B23ED /* tilereg-map.h */,
7B51656B11859CD6005B23ED /* tilereg-mem.cc */,
7B51656C11859CD6005B23ED /* tilereg-mem.h */,
7B51656D11859CD6005B23ED /* tilereg-menu.cc */,
7B51656E11859CD6005B23ED /* tilereg-menu.h */,
7B51656F11859CD6005B23ED /* tilereg-msg.cc */,
7B51657011859CD6005B23ED /* tilereg-msg.h */,
7B51657111859CD6005B23ED /* tilereg-spl.cc */,
7B51657211859CD6005B23ED /* tilereg-spl.h */,
7B51657311859CD6005B23ED /* tilereg-stat.cc */,
7B51657411859CD6005B23ED /* tilereg-stat.h */,
7B51657511859CD6005B23ED /* tilereg-tab.cc */,
7B51657611859CD6005B23ED /* tilereg-tab.h */,
7B51657711859CD6005B23ED /* tilereg-text.cc */,
7B51657811859CD6005B23ED /* tilereg-text.h */,
7B51657911859CD6005B23ED /* tilereg-title.cc */,
7B51657A11859CD6005B23ED /* tilereg-title.h */,
7B09F55B1133D66C004F149D /* transform.cc */,
7B09F55C1133D66C004F149D /* transform.h */,
7B09F55D1133D66C004F149D /* trap_def.h */,
E5D640A210BD494500A99626 /* traps.cc */,
E5D640A310BD494500A99626 /* traps.h */,
E5D640A410BD494500A99626 /* travel.cc */,
E5D640A510BD494500A99626 /* travel.h */,
7B09F55E1133D66C004F149D /* travel_defs.h */,
7B09F55F1133D66C004F149D /* unwind.h */,
E5D640A810BD494500A99626 /* version.cc */,
E5D640A910BD494500A99626 /* version.h */,
E5D640AA10BD494500A99626 /* view.cc */,
E5D640AB10BD494500A99626 /* view.h */,
E5D640AC10BD494500A99626 /* viewchar.cc */,
E5D640AD10BD494500A99626 /* viewchar.h */,
E5D640AE10BD494500A99626 /* viewgeom.cc */,
E5D640AF10BD494500A99626 /* viewgeom.h */,
E5D640B010BD494500A99626 /* viewmap.cc */,
E5D640B110BD494500A99626 /* viewmap.h */,
7B5165D211859D90005B23ED /* windowmanager-sdl.cc */,
7B5165D311859D90005B23ED /* windowmanager-sdl.h */,
7B5165D411859D90005B23ED /* windowmanager.h */,
E5D640B210BD494500A99626 /* wiz-dgn.cc */,
E5D640B310BD494500A99626 /* wiz-dgn.h */,
E5D640B410BD494500A99626 /* wiz-fsim.cc */,
E5D640B510BD494500A99626 /* wiz-fsim.h */,
E5D640B610BD494500A99626 /* wiz-item.cc */,
E5D640B710BD494500A99626 /* wiz-item.h */,
E5D640B810BD494500A99626 /* wiz-mon.cc */,
E5D640B910BD494500A99626 /* wiz-mon.h */,
E5D640BA10BD494500A99626 /* wiz-you.cc */,
E5D640BB10BD494500A99626 /* wiz-you.h */,
E5D640BC10BD494500A99626 /* xom.cc */,
E5D640BD10BD494500A99626 /* xom.h */,
7B5165C511859D82005B23ED /* zap-data.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 = (
D2F271FE0DA1C5AD00445FE9 /* dat */,
B090C2EE10671F8900AE855D /* dngn.png */,
4C59B0E411E7A06D00760867 /* feat.png */,
4C59B0E511E7A06D00760867 /* floor.png */,
D2F2723F0DA1C61600445FE9 /* docs */,
B090C2EF10671F8900AE855D /* gui.png */,
B090C2F010671F8900AE855D /* main.png */,
B090C2F110671F8900AE855D /* player.png */,
4C59B0E611E7A06D00760867 /* wall.png */,
B09CCE5A1083159100623CFA /* settings */,
);
name = Resources;
sourceTree = "<group>";
};
7B3B07610BD13B1700F2980E /* Libraries */ = {
isa = PBXGroup;
children = (
7B3B075F0BD13AF000F2980E /* libncurses.dylib */,
7B3B07560BD13A8100F2980E /* libreadline.dylib */,
);
name = Libraries;
sourceTree = "<group>";
};
B082657410731AA1006EEC5A /* SQLite */ = {
isa = PBXGroup;
children = (
B082657610731AB5006EEC5A /* sqlite3.c */,
B082657710731AB5006EEC5A /* sqlite3.h */,
);
name = SQLite;
sourceTree = "<group>";
};
B0F7DEEB1086EDE4008FFA70 /* Products */ = {
isa = PBXGroup;
children = (
B0F7DEF51086EDE5008FFA70 /* Freetype2.framework */,
B0F7DEF31086EDE5008FFA70 /* libFreetype2.a */,
);
name = Products;
sourceTree = "<group>";
};
B0F7DEFA1086EE79008FFA70 /* Products */ = {
isa = PBXGroup;
children = (
B0F7DF091086EE7A008FFA70 /* SDL.framework */,
B0F7DF0B1086EE7A008FFA70 /* libSDL.a */,
B0F7DF0D1086EE7A008FFA70 /* libSDLmain.a */,
B0F7DF0F1086EE7A008FFA70 /* Standard DMG */,
B0F7DF111086EE7A008FFA70 /* Developer Extras Package */,
);
name = Products;
sourceTree = "<group>";
};
B0F7DF7C1086F0CB008FFA70 /* Products */ = {
isa = PBXGroup;
children = (
B0F7DF861086F0CB008FFA70 /* SDL_image.framework */,
B0F7DF881086F0CB008FFA70 /* libSDL_image.a */,
B0F7DF8A1086F0CB008FFA70 /* Create DMG */,
);
name = Products;
sourceTree = "<group>";
};
B0F7DFE71086F4EA008FFA70 /* Products */ = {
isa = PBXGroup;
children = (
B0F7DFEE1086F4EA008FFA70 /* libpng.framework */,
);
name = Products;
sourceTree = "<group>";
};
C6A0FF2B0290797F04C91782 /* Documentation */ = {
isa = PBXGroup;
children = (
);
name = Documentation;
sourceTree = "<group>";
};
D25C91790FF035AF00D9E8AD /* Tiles */ = {
isa = PBXGroup;
children = (
B02C574310670C63006AC96D /* libgui.cc */,
B02C574410670C63006AC96D /* libgui.h */,
B02C575F10670ED2006AC96D /* SDLMain.h */,
B02C576010670ED2006AC96D /* SDLMain.m */,
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 = (
4C59B0A711E798C400760867 /* tiledef-feat.h */,
4C59B0A811E798C400760867 /* tiledef-floor.h */,
4C59B0A911E798C400760867 /* tiledef-wall.h */,
4C59B0AA11E798C400760867 /* tiledef-feat.cc */,
4C59B0AB11E798C400760867 /* tiledef-floor.cc */,
4C59B0AC11E798C400760867 /* tiledef-wall.cc */,
D2660C000FF0749200986331 /* dc-dngn.txt */,
D2660C010FF0749200986331 /* dc-main.txt */,
D2660C020FF0749200986331 /* dc-player.txt */,
B0B5DFD31066FA240020B21F /* tiledef-dngn.cc */,
B0B5DFD41066FA240020B21F /* tiledef-dngn.h */,
B0B5DFD51066FA240020B21F /* tiledef-gui.cc */,
B0B5DFD61066FA240020B21F /* tiledef-gui.h */,
B0B5DFD71066FA240020B21F /* tiledef-main.cc */,
B0B5DFD81066FA240020B21F /* tiledef-main.h */,
B0B5DFD91066FA240020B21F /* tiledef-player.cc */,
B0B5DFDA1066FA240020B21F /* tiledef-player.h */,
B0B5DFDB1066FA240020B21F /* tiledef-unrand.cc */,
B0B5DFDC1066FA240020B21F /* tiledef-unrand.h */,
B0B5DFD21066FA240020B21F /* tiledef_defines.h */,
D25C91840FF0366F00D9E8AD /* tool */,
);
name = rltiles;
sourceTree = "<group>";
};
D25C91840FF0366F00D9E8AD /* tool */ = {
isa = PBXGroup;
children = (
B0C9CFD6108DFF0F00E7FA35 /* tilegen-Info.plist */,
D25C91860FF0368E00D9E8AD /* main.cc */,
D25C91870FF0368E00D9E8AD /* tile.cc */,
D25C91880FF0368E00D9E8AD /* tile.h */,
D25C91890FF0368E00D9E8AD /* tile_colour.cc */,
D25C918A0FF0368E00D9E8AD /* tile_colour.h */,
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 = (
B0B5DFC91066F9A80020B21F /* OpenGL.framework */,
B02C57901067129A006AC96D /* AppKit.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
D2AE25EC0DA2621100E15489 /* Mac */ = {
isa = PBXGroup;
children = (
B09CCE3010830F1A00623CFA /* Crawl-Info.plist */,
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 = (
B0D189EE1090B3490071AF40 /* Generate Headers */,
8DD76FAB0486AB0100D96B5E /* Sources */,
8DD76FAD0486AB0100D96B5E /* Frameworks */,
8DD76FAF0486AB0100D96B5E /* CopyFiles */,
);
buildRules = (
);
dependencies = (
7B0EFD450BD12E9E00002671 /* PBXTargetDependency */,
B082658810731C22006EEC5A /* PBXTargetDependency */,
);
name = "Crawl-cmd";
productInstallPath = "$(HOME)/bin";
productName = Crawl;
productReference = 8DD76FB20486AB0100D96B5E /* crawl */;
productType = "com.apple.product-type.tool";
};
B032D526106C01AF0002D70D /* Crawl Tiles */ = {
isa = PBXNativeTarget;
buildConfigurationList = B032D52E106C01AF0002D70D /* Build configuration list for PBXNativeTarget "Crawl Tiles" */;
buildPhases = (
B0C9CFB4108DFA1200E7FA35 /* Generate Headers */,
B032D523106C01AF0002D70D /* Resources */,
B032D70E106C03000002D70D /* Copy Dungeon Tiles */,
B032D524106C01AF0002D70D /* Sources */,
B032D525106C01AF0002D70D /* Frameworks */,
B032D70F106C03000002D70D /* Copy Frameworks */,
);
buildRules = (
);
dependencies = (
B032D530106C01DB0002D70D /* PBXTargetDependency */,
B082658610731C1C006EEC5A /* PBXTargetDependency */,
B0F7DEF71086EDF2008FFA70 /* PBXTargetDependency */,
B0F7DF171086EEB0008FFA70 /* PBXTargetDependency */,
B0F7DF9D1086F107008FFA70 /* PBXTargetDependency */,
B0F7E171108764C7008FFA70 /* PBXTargetDependency */,
B0C9CF6A108DF26100E7FA35 /* PBXTargetDependency */,
);
name = "Crawl Tiles";
productName = "Crawl Tiles";
productReference = B032D527106C01AF0002D70D /* Dungeon Crawl Stone Soup.app */;
productType = "com.apple.product-type.application";
};
B082656E10731A95006EEC5A /* SQLite */ = {
isa = PBXNativeTarget;
buildConfigurationList = B082657510731AA1006EEC5A /* Build configuration list for PBXNativeTarget "SQLite" */;
buildPhases = (
B082656C10731A95006EEC5A /* Sources */,
B082656D10731A95006EEC5A /* Frameworks */,
);
buildRules = (
);
dependencies = (
);
name = SQLite;
productName = SQLite;
productReference = B082656F10731A95006EEC5A /* libSQLite.a */;
productType = "com.apple.product-type.library.static";
};
B0C9CF45108DF1AF00E7FA35 /* tilegen */ = {
isa = PBXNativeTarget;
buildConfigurationList = B0C9CF4D108DF1B000E7FA35 /* Build configuration list for PBXNativeTarget "tilegen" */;
buildPhases = (
B0C9CF43108DF1AF00E7FA35 /* Sources */,
B0C9CF44108DF1AF00E7FA35 /* Frameworks */,
B0C9CF7A108DF28700E7FA35 /* Copy Frameworks */,
B0C9CF6C108DF27000E7FA35 /* Generate Tiledefs */,
);
buildRules = (
);
dependencies = (
B0C9CF64108DF24C00E7FA35 /* PBXTargetDependency */,
B0C9CF66108DF24C00E7FA35 /* PBXTargetDependency */,
B0C9CF68108DF24C00E7FA35 /* PBXTargetDependency */,
);
name = tilegen;
productName = tilegen;
productReference = B0C9CF46108DF1AF00E7FA35 /* tilegen.app */;
productType = "com.apple.product-type.application";
};
D2F271F50DA1C58C00445FE9 /* Crawl ASCII */ = {
isa = PBXNativeTarget;
buildConfigurationList = D2F271FD0DA1C58C00445FE9 /* Build configuration list for PBXNativeTarget "Crawl ASCII" */;
buildPhases = (
D2F271F20DA1C58C00445FE9 /* Resources */,
B090C2DB10671E3200AE855D /* Copy Crawl Executable */,
B090C2ED10671F5F00AE855D /* Copy Dungeon Tiles */,
B0B5DF681066EDFF0020B21F /* Copy Frameworks */,
);
buildRules = (
);
dependencies = (
B032D521106C019C0002D70D /* PBXTargetDependency */,
D2F272370DA1C5BC00445FE9 /* PBXTargetDependency */,
7B5165E111859E4A005B23ED /* PBXTargetDependency */,
);
name = "Crawl ASCII";
productName = Crawl;
productReference = D2F271F60DA1C58C00445FE9 /* Dungeon Crawl Stone Soup - ASCII.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 = "";
projectReferences = (
{
ProductGroup = B0F7DEEB1086EDE4008FFA70 /* Products */;
ProjectRef = B0F7DEEA1086EDE4008FFA70 /* Freetype2.xcodeproj */;
},
{
ProductGroup = B0F7DFE71086F4EA008FFA70 /* Products */;
ProjectRef = B0F7DFE61086F4EA008FFA70 /* libpng.xcodeproj */;
},
{
ProductGroup = B0F7DEFA1086EE79008FFA70 /* Products */;
ProjectRef = B0F7DEF91086EE79008FFA70 /* SDL.xcodeproj */;
},
{
ProductGroup = B0F7DF7C1086F0CB008FFA70 /* Products */;
ProjectRef = B0F7DF7B1086F0CB008FFA70 /* SDL_image.xcodeproj */;
},
);
projectRoot = "";
targets = (
B032D526106C01AF0002D70D /* Crawl Tiles */,
D2F271F50DA1C58C00445FE9 /* Crawl ASCII */,
B0C9CF45108DF1AF00E7FA35 /* tilegen */,
8DD76FA90486AB0100D96B5E /* Crawl-cmd */,
7B0EFD410BD12E9200002671 /* Lua */,
B082656E10731A95006EEC5A /* SQLite */,
);
};
/* End PBXProject section */
/* Begin PBXReferenceProxy section */
B0F7DEF31086EDE5008FFA70 /* libFreetype2.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libFreetype2.a;
remoteRef = B0F7DEF21086EDE5008FFA70 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
B0F7DEF51086EDE5008FFA70 /* Freetype2.framework */ = {
isa = PBXReferenceProxy;
fileType = wrapper.framework;
path = Freetype2.framework;
remoteRef = B0F7DEF41086EDE5008FFA70 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
B0F7DF091086EE7A008FFA70 /* SDL.framework */ = {
isa = PBXReferenceProxy;
fileType = wrapper.framework;
path = SDL.framework;
remoteRef = B0F7DF081086EE7A008FFA70 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
B0F7DF0B1086EE7A008FFA70 /* libSDL.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libSDL.a;
remoteRef = B0F7DF0A1086EE7A008FFA70 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
B0F7DF0D1086EE7A008FFA70 /* libSDLmain.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libSDLmain.a;
remoteRef = B0F7DF0C1086EE7A008FFA70 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
B0F7DF0F1086EE7A008FFA70 /* Standard DMG */ = {
isa = PBXReferenceProxy;
fileType = "compiled.mach-o.executable";
path = "Standard DMG";
remoteRef = B0F7DF0E1086EE7A008FFA70 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
B0F7DF111086EE7A008FFA70 /* Developer Extras Package */ = {
isa = PBXReferenceProxy;
fileType = "compiled.mach-o.executable";
path = "Developer Extras Package";
remoteRef = B0F7DF101086EE7A008FFA70 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
B0F7DF861086F0CB008FFA70 /* SDL_image.framework */ = {
isa = PBXReferenceProxy;
fileType = wrapper.framework;
path = SDL_image.framework;
remoteRef = B0F7DF851086F0CB008FFA70 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
B0F7DF881086F0CB008FFA70 /* libSDL_image.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libSDL_image.a;
remoteRef = B0F7DF871086F0CB008FFA70 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
B0F7DF8A1086F0CB008FFA70 /* Create DMG */ = {
isa = PBXReferenceProxy;
fileType = "compiled.mach-o.executable";
path = "Create DMG";
remoteRef = B0F7DF891086F0CB008FFA70 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
B0F7DFEE1086F4EA008FFA70 /* libpng.framework */ = {
isa = PBXReferenceProxy;
fileType = wrapper.framework;
path = libpng.framework;
remoteRef = B0F7DFED1086F4EA008FFA70 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
/* End PBXReferenceProxy section */
/* Begin PBXResourcesBuildPhase section */
B032D523106C01AF0002D70D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
B032D6FD106C02540002D70D /* Crawl.icns in Resources */,
B032D6FB106C02540002D70D /* dat in Resources */,
B032D6FC106C02540002D70D /* docs in Resources */,
B09CCE671083159100623CFA /* settings in Resources */,
4C59B0E711E7A06D00760867 /* feat.png in Resources */,
4C59B0E811E7A06D00760867 /* floor.png in Resources */,
4C59B0E911E7A06D00760867 /* wall.png in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
D2F271F20DA1C58C00445FE9 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
D2A696BD0DA29D4E00FDDE82 /* Crawl.icns in Resources */,
D2F272350DA1C5AD00445FE9 /* dat in Resources */,
D2F2725B0DA1C61600445FE9 /* docs in Resources */,
B09CCE6C108315B300623CFA /* settings 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/\"\nmkdir -p \"$BUILT_PRODUCTS_DIR/$WRAPPER_NAME/Contents/MacOS\"\ncp \"$PROJECT_DIR/mac/crawl\" \"$BUILT_PRODUCTS_DIR/$WRAPPER_NAME/Contents/MacOS/$PRODUCT_NAME\"";
};
B0C9CF6C108DF27000E7FA35 /* Generate Tiledefs */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Generate Tiledefs";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "cd \"$PROJECT_DIR\"\nutil/art-data.pl\ncd \"$PROJECT_DIR/rltiles\"\nfor a in main dngn player gui floor wall feat; do\n\tif [ ! -f tiledef-$a.cc ]; then\n\t\t\"$CONFIGURATION_BUILD_DIR/$FULL_PRODUCT_NAME/Contents/MacOS/$PRODUCT_NAME\" dc-$a.txt\n\tfi\ndone";
};
B0C9CFB4108DFA1200E7FA35 /* Generate Headers */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Generate Headers";
outputPaths = (
"$(PROJECT_DIR)/build.h",
"$(PROJECT_DIR)/compflag.h",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/bash;
shellScript = "#!/bin/bash\nexport PATH=\"/opt/git/bin:/opt/local/bin:/usr/local/bin:/usr/bin:/bin:$PATH\"\nif [ -f $HOME/.bashrc ]; then\n\tsource $HOME/.bashrc\nfi\ncd \"$PROJECT_DIR\"\nutil/gen_ver.pl build.h\nutil/gen-cflg.pl compflag.h \"<unavailable>\" \"<unavailable>\" \"<unavailable>\"";
};
B0D189EE1090B3490071AF40 /* Generate Headers */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Generate Headers";
outputPaths = (
"$(PROJECT_DIR)/build.h",
"$(PROJECT_DIR)/compflag.h",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/bash;
shellScript = "#!/bin/bash\nexport PATH=\"/opt/git/bin:/opt/local/bin:/usr/local/bin:/usr/bin:/bin:$PATH\"\nif [ -f $HOME/.bashrc ]; then\n\tsource $HOME/.bashrc\nfi\ncd \"$PROJECT_DIR\"\nutil/gen_ver.pl build.h\nutil/gen-cflg.pl compflag.h \"<unavailable>\" \"<unavailable>\" \"<unavailable>\"";
};
/* 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 = (
7BDE8447116D24B300974D63 /* abl-show.cc in Sources */,
7BDE8448116D24B300974D63 /* abyss.cc in Sources */,
7B51659511859CFA005B23ED /* act-iter.cc in Sources */,
7BDE8449116D24B300974D63 /* actor-los.cc in Sources */,
7BDE844A116D24B300974D63 /* actor.cc in Sources */,
7BDE844B116D24B300974D63 /* areas.cc in Sources */,
7BDE844C116D24B300974D63 /* arena.cc in Sources */,
7BDE844D116D24B300974D63 /* artefact.cc in Sources */,
7BDE844E116D24B300974D63 /* attitude-change.cc in Sources */,
7BDE844F116D24B300974D63 /* beam.cc in Sources */,
7B09F56D1133D6AB004F149D /* behold.cc in Sources */,
7B09F56E1133D6AB004F149D /* bitary.cc in Sources */,
7B09F56F1133D6AB004F149D /* branch.cc in Sources */,
7B09F5701133D6AB004F149D /* chardump.cc in Sources */,
7B09F5711133D6AB004F149D /* cio.cc in Sources */,
7B09F5721133D6AB004F149D /* cloud.cc in Sources */,
7B09F5731133D6AB004F149D /* clua.cc in Sources */,
7B09F5741133D6AB004F149D /* cluautil.cc in Sources */,
7B09F5751133D6AB004F149D /* colour.cc in Sources */,
7B09F5761133D6AB004F149D /* command.cc in Sources */,
7B09F5771133D6AB004F149D /* coord-circle.cc in Sources */,
7B09F5781133D6AB004F149D /* coord.cc in Sources */,
7B09F5791133D6AB004F149D /* coordit.cc in Sources */,
7B09F57A1133D6AB004F149D /* crash-u.cc in Sources */,
7B09F57B1133D6AB004F149D /* ctest.cc in Sources */,
7B09F57C1133D6AB004F149D /* database.cc in Sources */,
7B09F57D1133D6AB004F149D /* dbg-asrt.cc in Sources */,
7B09F57E1133D6AB004F149D /* dbg-maps.cc in Sources */,
7B09F57F1133D6AB004F149D /* dbg-scan.cc in Sources */,
7B09F5801133D6AB004F149D /* dbg-util.cc in Sources */,
7B09F5811133D6AB004F149D /* decks.cc in Sources */,
7B09F5821133D6AB004F149D /* delay.cc in Sources */,
7B09F5831133D6AB004F149D /* describe.cc in Sources */,
7B51659D11859D30005B23ED /* dgl-message.cc in Sources */,
7B09F6431133D823004F149D /* dgn-height.cc in Sources */,
7B09F6441133D823004F149D /* dgn-overview.cc in Sources */,
7B09F6451133D823004F149D /* dgn-shoals.cc in Sources */,
7B09F6461133D823004F149D /* dgn-swamp.cc in Sources */,
7B09F5841133D6AB004F149D /* dgnevent.cc in Sources */,
7B09F5851133D6AB004F149D /* directn.cc in Sources */,
7B09F5861133D6AB004F149D /* dlua.cc in Sources */,
7B09F5871133D6AB004F149D /* dungeon.cc in Sources */,
7B09F5881133D6AB004F149D /* effects.cc in Sources */,
7B09F5891133D6AB004F149D /* exclude.cc in Sources */,
7B09F58A1133D6AB004F149D /* feature.cc in Sources */,
7B09F58B1133D6AB004F149D /* fight.cc in Sources */,
7B09F58C1133D6AB004F149D /* files.cc in Sources */,
7B09F58D1133D6AB004F149D /* food.cc in Sources */,
7B09F58E1133D6AB004F149D /* format.cc in Sources */,
7B09F58F1133D6AB004F149D /* fprop.cc in Sources */,
7B09F5901133D6AB004F149D /* geom2d.cc in Sources */,
7B09F5911133D6AB004F149D /* ghost.cc in Sources */,
7B09F5921133D6AB004F149D /* godabil.cc in Sources */,
7B09F5931133D6AB004F149D /* godconduct.cc in Sources */,
7B09F5941133D6AB004F149D /* goditem.cc in Sources */,
7B09F5951133D6AB004F149D /* godpassive.cc in Sources */,
7B09F5961133D6AB004F149D /* godprayer.cc in Sources */,
7B09F5971133D6AB004F149D /* godwrath.cc in Sources */,
7B09F5981133D6AB004F149D /* hiscores.cc in Sources */,
7B09F5991133D6AB004F149D /* initfile.cc in Sources */,
7B09F59A1133D6AB004F149D /* invent.cc in Sources */,
7B09F59B1133D6AB004F149D /* it_use2.cc in Sources */,
7B09F59C1133D6AB004F149D /* it_use3.cc in Sources */,
7B09F59D1133D6AB004F149D /* item_use.cc in Sources */,
7B09F59E1133D6AB004F149D /* itemname.cc in Sources */,
7B09F59F1133D6AB004F149D /* itemprop.cc in Sources */,
7B09F5A01133D6AB004F149D /* items.cc in Sources */,
7B09F5A11133D6AB004F149D /* jobs.cc in Sources */,
7B09F5A21133D6AB004F149D /* kills.cc in Sources */,
7B09F5A31133D6AB004F149D /* l_crawl.cc in Sources */,
7B09F5A41133D6AB004F149D /* l_debug.cc in Sources */,
7B09F5A51133D6AB004F149D /* l_dgn.cc in Sources */,
7B09F5A61133D6AB004F149D /* l_dgnbld.cc in Sources */,
7B09F5A71133D6AB004F149D /* l_dgnevt.cc in Sources */,
7B09F5A81133D6AB004F149D /* l_dgngrd.cc in Sources */,
7B09F5A91133D6AB004F149D /* l_dgnit.cc in Sources */,
7B09F5AA1133D6AB004F149D /* l_dgnlvl.cc in Sources */,
7B09F5AB1133D6AB004F149D /* l_dgnmon.cc in Sources */,
7B09F5AC1133D6AB004F149D /* l_dgntil.cc in Sources */,
7B09F5AD1133D6AB004F149D /* l_feat.cc in Sources */,
7B09F5AE1133D6AB004F149D /* l_file.cc in Sources */,
7B09F5AF1133D6AB004F149D /* l_food.cc in Sources */,
7B09F5B01133D6AB004F149D /* l_global.cc in Sources */,
7B09F5B11133D6AB004F149D /* l_item.cc in Sources */,
7B09F5B21133D6AB004F149D /* l_los.cc in Sources */,
7B09F5B31133D6AB004F149D /* l_mapgrd.cc in Sources */,
7B09F5B41133D6AB004F149D /* l_mapmrk.cc in Sources */,
7B09F5B51133D6AB004F149D /* l_moninf.cc in Sources */,
7B09F5B61133D6AB004F149D /* l_mons.cc in Sources */,
7B09F5B71133D6AB004F149D /* l_option.cc in Sources */,
7B09F5B81133D6AB004F149D /* l_spells.cc in Sources */,
7B09F5B91133D6AB004F149D /* l_subvault.cc in Sources */,
7B09F5BA1133D6AB004F149D /* l_travel.cc in Sources */,
7B09F5BB1133D6AB004F149D /* l_view.cc in Sources */,
7B09F5BC1133D6AB004F149D /* l_you.cc in Sources */,
7B09F5BD1133D6AB004F149D /* lev-pand.cc in Sources */,
7BBC4A070B0F783C00F27D45 /* levcomp.lpp in Sources */,
7BBC4A080B0F783C00F27D45 /* levcomp.ypp in Sources */,
7B09F5BE1133D6AB004F149D /* libgui.cc in Sources */,
7BDE8456116D24E600974D63 /* libunix.cc in Sources */,
7B09F5C01133D6AB004F149D /* libutil.cc in Sources */,
7B09F5C21133D6AB004F149D /* los.cc in Sources */,
7B09F5C31133D6AB004F149D /* los_def.cc in Sources */,
7B5165A111859D44005B23ED /* losglobal.cc in Sources */,
7B09F5C41133D6AB004F149D /* losparam.cc in Sources */,
7B09F5C51133D6AB004F149D /* luaterp.cc in Sources */,
7B09F5C61133D6AB004F149D /* macro.cc in Sources */,
7B09F5C81133D6AB004F149D /* main.cc in Sources */,
7B09F5C91133D6AB004F149D /* makeitem.cc in Sources */,
7B09F5CA1133D6AB004F149D /* map_knowledge.cc in Sources */,
7B352EA00B00183400CABB32 /* mapdef.cc in Sources */,
7B09F5CB1133D6AB004F149D /* mapmark.cc in Sources */,
7B09F5CC1133D6AB004F149D /* maps.cc in Sources */,
7B09F5CD1133D6AB004F149D /* menu.cc in Sources */,
7B09F64B1133D92C004F149D /* message-stream.cc in Sources */,
7B09F5CE1133D6AB004F149D /* message.cc in Sources */,
7B09F5CF1133D6AB004F149D /* mgen_data.cc in Sources */,
7B09F5D01133D6AB004F149D /* misc.cc in Sources */,
7B09F5D11133D6AB004F149D /* mislead.cc in Sources */,
7B09F5D21133D6AB004F149D /* mon-abil.cc in Sources */,
7B09F5D31133D6AB004F149D /* mon-act.cc in Sources */,
7B09F5D41133D6AB004F149D /* mon-behv.cc in Sources */,
7B09F5D51133D6AB004F149D /* mon-cast.cc in Sources */,
7B09F5D61133D6AB004F149D /* mon-clone.cc in Sources */,
7B09F5D71133D6AB004F149D /* mon-death.cc in Sources */,
7B09F5D81133D6AB004F149D /* mon-gear.cc in Sources */,
7B09F5D91133D6AB004F149D /* mon-grow.cc in Sources */,
7B09F5DA1133D6AB004F149D /* mon-info.cc in Sources */,
7B09F5DB1133D6AB004F149D /* mon-iter.cc in Sources */,
7B09F5DC1133D6AB004F149D /* mon-movetarget.cc in Sources */,
7B09F5DD1133D6AB004F149D /* mon-pathfind.cc in Sources */,
7B09F5DE1133D6AB004F149D /* mon-pick.cc in Sources */,
7B09F5DF1133D6AB004F149D /* mon-place.cc in Sources */,
7B09F6511133DA4D004F149D /* mon-project.cc in Sources */,
7B09F5E01133D6AB004F149D /* mon-speak.cc in Sources */,
7B09F5E11133D6AB004F149D /* mon-stuff.cc in Sources */,
7B09F5E21133D6AB004F149D /* mon-transit.cc in Sources */,
7B09F5E31133D6AB004F149D /* mon-util.cc in Sources */,
7B09F5E41133D6AB004F149D /* mon_resist_def.cc in Sources */,
7B09F5E51133D6AB004F149D /* monster.cc in Sources */,
7B09F5E61133D6AB004F149D /* mt19937ar.cc in Sources */,
7B09F5E71133D6AB004F149D /* mutation.cc in Sources */,
7B09F5E81133D6AB004F149D /* newgame.cc in Sources */,
7B09F5E91133D6AB004F149D /* ng-init.cc in Sources */,
7B09F5EA1133D6AB004F149D /* ng-input.cc in Sources */,
7B09F5EB1133D6AB004F149D /* ng-restr.cc in Sources */,
7B5165B211859D5A005B23ED /* ng-setup.cc in Sources */,
7B5165B311859D5A005B23ED /* ng-wanderer.cc in Sources */,
7B09F5EC1133D6AB004F149D /* notes.cc in Sources */,
7B09F5ED1133D6AB004F149D /* ouch.cc in Sources */,
7B09F5EE1133D6AB004F149D /* output.cc in Sources */,
7B09F5EF1133D6AB004F149D /* pattern.cc in Sources */,
7B5165B411859D5A005B23ED /* place-info.cc in Sources */,
7B09F5F01133D6AB004F149D /* place.cc in Sources */,
7B5165B511859D5A005B23ED /* player-act.cc in Sources */,
7BDE8444116D247D00974D63 /* player-equip.cc in Sources */,
7B5165B611859D5A005B23ED /* player-stats.cc in Sources */,
7B09F5F11133D6AB004F149D /* player.cc in Sources */,
7B09F5F21133D6AB004F149D /* quiver.cc in Sources */,
7B5165CC11859D82005B23ED /* random-var.cc in Sources */,
7B09F5F31133D6AB004F149D /* random.cc in Sources */,
7B09F5F41133D6AB004F149D /* ray.cc in Sources */,
7B09F5F51133D6AB004F149D /* religion.cc in Sources */,
7B09F5F61133D6AB004F149D /* rng.cc in Sources */,
7B09F5F71133D6AB004F149D /* sha256.cc in Sources */,
7B09F5F81133D6AB004F149D /* shopping.cc in Sources */,
7B09F5F91133D6AB004F149D /* shout.cc in Sources */,
7B09F5FA1133D6AB004F149D /* show.cc in Sources */,
7B09F5FB1133D6AB004F149D /* showsymb.cc in Sources */,
7B09F5FC1133D6AB004F149D /* skills.cc in Sources */,
7B09F5FD1133D6AB004F149D /* skills2.cc in Sources */,
7B09F5FE1133D6AB004F149D /* species.cc in Sources */,
7B09F5FF1133D6AB004F149D /* spells1.cc in Sources */,
7B09F6001133D6AB004F149D /* spells2.cc in Sources */,
7B09F6011133D6AB004F149D /* spells3.cc in Sources */,
7B09F6021133D6AB004F149D /* spells4.cc in Sources */,
7B09F6031133D6AB004F149D /* spl-book.cc in Sources */,
7B09F6041133D6AB004F149D /* spl-cast.cc in Sources */,
7B09F6051133D6AB004F149D /* spl-mis.cc in Sources */,
7B09F6061133D6AB004F149D /* spl-util.cc in Sources */,
7B5165CD11859D82005B23ED /* spl-zap.cc in Sources */,
7B5165CE11859D82005B23ED /* sprint.cc in Sources */,
7B09F6071133D6AB004F149D /* sqldbm.cc in Sources */,
7B5165CF11859D82005B23ED /* stairs.cc in Sources */,
7B5165D011859D82005B23ED /* startup.cc in Sources */,
7B09F6081133D6AB004F149D /* stash.cc in Sources */,
7B09F6091133D6AB004F149D /* state.cc in Sources */,
7B09F60A1133D6AB004F149D /* store.cc in Sources */,
7B09F60B1133D6AB004F149D /* stuff.cc in Sources */,
7B09F60C1133D6AB004F149D /* tags.cc in Sources */,
7B5165D111859D82005B23ED /* tagstring.cc in Sources */,
7B09F60D1133D6AB004F149D /* teleport.cc in Sources */,
7B09F60E1133D6AB004F149D /* terrain.cc in Sources */,
7B09F6201133D6AB004F149D /* transform.cc in Sources */,
7B09F6211133D6AB004F149D /* traps.cc in Sources */,
7B09F6221133D6AB004F149D /* travel.cc in Sources */,
7B09F6241133D6AB004F149D /* version.cc in Sources */,
7B09F6251133D6AB004F149D /* view.cc in Sources */,
7B09F6261133D6AB004F149D /* viewchar.cc in Sources */,
7B09F6271133D6AB004F149D /* viewgeom.cc in Sources */,
7B09F6281133D6AB004F149D /* viewmap.cc in Sources */,
7B09F6291133D6AB004F149D /* wiz-dgn.cc in Sources */,
7B09F62A1133D6AB004F149D /* wiz-fsim.cc in Sources */,
7B09F62B1133D6AB004F149D /* wiz-item.cc in Sources */,
7B09F62C1133D6AB004F149D /* wiz-mon.cc in Sources */,
7B09F62D1133D6AB004F149D /* wiz-you.cc in Sources */,
7B09F62E1133D6AB004F149D /* xom.cc in Sources */,
4C59B0C011E79BB600760867 /* dgn-actions.cc in Sources */,
4C59B0D611E79F6800760867 /* hints.cc in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
B032D524106C01AF0002D70D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
E5D640BE10BD494500A99626 /* abl-show.cc in Sources */,
E5D640BF10BD494500A99626 /* abyss.cc in Sources */,
7B51659411859CFA005B23ED /* act-iter.cc in Sources */,
E5D640C010BD494500A99626 /* actor-los.cc in Sources */,
E5D640C110BD494500A99626 /* actor.cc in Sources */,
E5D640C210BD494500A99626 /* AppHdr.cc in Sources */,
E5D640C310BD494500A99626 /* areas.cc in Sources */,
E5D640C410BD494500A99626 /* arena.cc in Sources */,
E5D640C510BD494500A99626 /* artefact.cc in Sources */,
E5D640C610BD494500A99626 /* attitude-change.cc in Sources */,
E5D640C710BD494500A99626 /* beam.cc in Sources */,
E5D640C810BD494500A99626 /* behold.cc in Sources */,
E5D640C910BD494500A99626 /* bitary.cc in Sources */,
E5D640CA10BD494500A99626 /* branch.cc in Sources */,
E5D640CB10BD494500A99626 /* chardump.cc in Sources */,
E5D640CC10BD494500A99626 /* cio.cc in Sources */,
E5D640CD10BD494500A99626 /* cloud.cc in Sources */,
E5D640CE10BD494500A99626 /* clua.cc in Sources */,
E5D640CF10BD494500A99626 /* cluautil.cc in Sources */,
E5D640D010BD494500A99626 /* colour.cc in Sources */,
E5D640D110BD494500A99626 /* command.cc in Sources */,
E5D640D210BD494500A99626 /* coord-circle.cc in Sources */,
E5D640D310BD494500A99626 /* coord.cc in Sources */,
E5D640D410BD494500A99626 /* coordit.cc in Sources */,
E5D640D610BD494500A99626 /* crash-u.cc in Sources */,
E5D640D810BD494500A99626 /* ctest.cc in Sources */,
E5D640D910BD494500A99626 /* database.cc in Sources */,
E5D640DA10BD494500A99626 /* dbg-asrt.cc in Sources */,
E5D640DB10BD494500A99626 /* dbg-maps.cc in Sources */,
E5D640DC10BD494500A99626 /* dbg-scan.cc in Sources */,
E5D640DD10BD494500A99626 /* dbg-util.cc in Sources */,
E5D640DE10BD494500A99626 /* decks.cc in Sources */,
E5D640DF10BD494500A99626 /* delay.cc in Sources */,
E5D640E010BD494500A99626 /* describe.cc in Sources */,
7B51659C11859D30005B23ED /* dgl-message.cc in Sources */,
7B09F63F1133D823004F149D /* dgn-height.cc in Sources */,
7B09F6401133D823004F149D /* dgn-overview.cc in Sources */,
7B09F6411133D823004F149D /* dgn-shoals.cc in Sources */,
7B09F6421133D823004F149D /* dgn-swamp.cc in Sources */,
E5D640E110BD494500A99626 /* dgnevent.cc in Sources */,
E5D640E210BD494500A99626 /* directn.cc in Sources */,
E5D640E310BD494500A99626 /* dlua.cc in Sources */,
E5D640E410BD494500A99626 /* dungeon.cc in Sources */,
E5D640E510BD494500A99626 /* effects.cc in Sources */,
E5D640E610BD494500A99626 /* exclude.cc in Sources */,
E5D640E710BD494500A99626 /* feature.cc in Sources */,
E5D640E810BD494500A99626 /* fight.cc in Sources */,
E5D640E910BD494500A99626 /* files.cc in Sources */,
7B51659811859D1A005B23ED /* fontwrapper-ft.cc in Sources */,
E5D640EA10BD494500A99626 /* food.cc in Sources */,
E5D640EB10BD494500A99626 /* format.cc in Sources */,
E5D640EC10BD494500A99626 /* fprop.cc in Sources */,
E5D640ED10BD494500A99626 /* geom2d.cc in Sources */,
E5D640EE10BD494500A99626 /* ghost.cc in Sources */,
7B51658E11859CE3005B23ED /* glwrapper-ogl.cc in Sources */,
7B51658F11859CE3005B23ED /* glwrapper.cc in Sources */,
E5D640EF10BD494500A99626 /* godabil.cc in Sources */,
7B09F5441133D63E004F149D /* godconduct.cc in Sources */,
E5D640F010BD494500A99626 /* goditem.cc in Sources */,
7B09F5451133D63E004F149D /* godpassive.cc in Sources */,
7B09F5461133D63E004F149D /* godprayer.cc in Sources */,
E5D640F110BD494500A99626 /* godwrath.cc in Sources */,
E5D640F210BD494500A99626 /* hiscores.cc in Sources */,
E5D640F310BD494500A99626 /* initfile.cc in Sources */,
E5D640F410BD494500A99626 /* invent.cc in Sources */,
E5D640F510BD494500A99626 /* it_use2.cc in Sources */,
E5D640F610BD494500A99626 /* it_use3.cc in Sources */,
E5D640F710BD494500A99626 /* item_use.cc in Sources */,
E5D640F810BD494500A99626 /* itemname.cc in Sources */,
E5D640F910BD494500A99626 /* itemprop.cc in Sources */,
E5D640FA10BD494500A99626 /* items.cc in Sources */,
E5D640FB10BD494500A99626 /* jobs.cc in Sources */,
E5D640FC10BD494500A99626 /* kills.cc in Sources */,
E5D640FD10BD494500A99626 /* l_crawl.cc in Sources */,
E5D640FE10BD494500A99626 /* l_debug.cc in Sources */,
E5D640FF10BD494500A99626 /* l_dgn.cc in Sources */,
E5D6410010BD494500A99626 /* l_dgnbld.cc in Sources */,
E5D6410110BD494500A99626 /* l_dgnevt.cc in Sources */,
E5D6410210BD494500A99626 /* l_dgngrd.cc in Sources */,
E5D6410310BD494500A99626 /* l_dgnit.cc in Sources */,
E5D6410410BD494500A99626 /* l_dgnlvl.cc in Sources */,
E5D6410510BD494500A99626 /* l_dgnmon.cc in Sources */,
E5D6410610BD494500A99626 /* l_dgntil.cc in Sources */,
7B09F5471133D63E004F149D /* l_feat.cc in Sources */,
E5D6410710BD494500A99626 /* l_file.cc in Sources */,
E5D6410810BD494500A99626 /* l_food.cc in Sources */,
E5D6410910BD494500A99626 /* l_global.cc in Sources */,
E5D6410A10BD494500A99626 /* l_item.cc in Sources */,
E5D6410B10BD494500A99626 /* l_los.cc in Sources */,
E5D6410C10BD494500A99626 /* l_mapgrd.cc in Sources */,
E5D6410D10BD494500A99626 /* l_mapmrk.cc in Sources */,
E5D6410E10BD494500A99626 /* l_moninf.cc in Sources */,
E5D6410F10BD494500A99626 /* l_mons.cc in Sources */,
E5D6411010BD494500A99626 /* l_option.cc in Sources */,
7B09F5481133D63E004F149D /* l_spells.cc in Sources */,
93F94B1F10C178990077B142 /* l_subvault.cc in Sources */,
E5D6411110BD494500A99626 /* l_travel.cc in Sources */,
E5D6411210BD494500A99626 /* l_view.cc in Sources */,
E5D6411310BD494500A99626 /* l_you.cc in Sources */,
E5D6411410BD494500A99626 /* lev-pand.cc in Sources */,
B032D690106C02150002D70D /* levcomp.lpp in Sources */,
B032D68F106C02150002D70D /* levcomp.ypp in Sources */,
B032D697106C02150002D70D /* libgui.cc in Sources */,
E5D6411610BD494500A99626 /* libutil.cc in Sources */,
E5D6411910BD494500A99626 /* los.cc in Sources */,
E5D6411810BD494500A99626 /* los_def.cc in Sources */,
7B5165A011859D44005B23ED /* losglobal.cc in Sources */,
E5D6411A10BD494500A99626 /* losparam.cc in Sources */,
E5D6411B10BD494500A99626 /* luaterp.cc in Sources */,
E5D6411C10BD494500A99626 /* macro.cc in Sources */,
E5D6411D10BD494500A99626 /* main.cc in Sources */,
E5D6412110BD494500A99626 /* makeitem.cc in Sources */,
E5D6412210BD494500A99626 /* map_knowledge.cc in Sources */,
B032D6DC106C02150002D70D /* mapdef.cc in Sources */,
E5D6412310BD494500A99626 /* mapmark.cc in Sources */,
E5D6412410BD494500A99626 /* maps.cc in Sources */,
E5D6412510BD494500A99626 /* menu.cc in Sources */,
7B09F64A1133D92C004F149D /* message-stream.cc in Sources */,
E5D6412610BD494500A99626 /* message.cc in Sources */,
7B09F5601133D66C004F149D /* mgen_data.cc in Sources */,
E5D6412710BD494500A99626 /* misc.cc in Sources */,
7B09F5611133D66C004F149D /* mislead.cc in Sources */,
E5D6412810BD494500A99626 /* mon-abil.cc in Sources */,
E5D6412910BD494500A99626 /* mon-act.cc in Sources */,
E5D6412A10BD494500A99626 /* mon-behv.cc in Sources */,
E5D6412B10BD494500A99626 /* mon-cast.cc in Sources */,
7B09F5631133D66C004F149D /* mon-clone.cc in Sources */,
7B09F5641133D66C004F149D /* mon-death.cc in Sources */,
E5D6412C10BD494500A99626 /* mon-gear.cc in Sources */,
E5D6412D10BD494500A99626 /* mon-grow.cc in Sources */,
E5D6412E10BD494500A99626 /* mon-info.cc in Sources */,
E5D6412F10BD494500A99626 /* mon-iter.cc in Sources */,
E5D6413010BD494500A99626 /* mon-movetarget.cc in Sources */,
E5D6413110BD494500A99626 /* mon-pathfind.cc in Sources */,
E5D6413210BD494500A99626 /* mon-pick.cc in Sources */,
E5D6413310BD494500A99626 /* mon-place.cc in Sources */,
7B09F6501133DA4D004F149D /* mon-project.cc in Sources */,
E5D6413410BD494500A99626 /* mon-speak.cc in Sources */,
E5D6413510BD494500A99626 /* mon-stuff.cc in Sources */,
E5D6413610BD494500A99626 /* mon-transit.cc in Sources */,
E5D6413710BD494500A99626 /* mon-util.cc in Sources */,
7B09F5621133D66C004F149D /* mon_resist_def.cc in Sources */,
E5D6413810BD494500A99626 /* monster.cc in Sources */,
E5D6413910BD494500A99626 /* mt19937ar.cc in Sources */,
E5D6413A10BD494500A99626 /* mutation.cc in Sources */,
E5D6413B10BD494500A99626 /* newgame.cc in Sources */,
E5D6413C10BD494500A99626 /* ng-init.cc in Sources */,
E5D6413D10BD494500A99626 /* ng-input.cc in Sources */,
E5D6413E10BD494500A99626 /* ng-restr.cc in Sources */,
7B5165AD11859D5A005B23ED /* ng-setup.cc in Sources */,
7B5165AE11859D5A005B23ED /* ng-wanderer.cc in Sources */,
E5D6413F10BD494500A99626 /* notes.cc in Sources */,
E5D6414010BD494500A99626 /* ouch.cc in Sources */,
E5D6414110BD494500A99626 /* output.cc in Sources */,
7B09F5651133D66C004F149D /* pattern.cc in Sources */,
7B5165AF11859D5A005B23ED /* place-info.cc in Sources */,
E5D6414310BD494500A99626 /* place.cc in Sources */,
7B5165B011859D5A005B23ED /* player-act.cc in Sources */,
7BDE8445116D247D00974D63 /* player-equip.cc in Sources */,
7B5165B111859D5A005B23ED /* player-stats.cc in Sources */,
E5D6414410BD494500A99626 /* player.cc in Sources */,
E5D6414510BD494500A99626 /* quiver.cc in Sources */,
7B5165C611859D82005B23ED /* random-var.cc in Sources */,
E5D6414610BD494500A99626 /* random.cc in Sources */,
E5D6414710BD494500A99626 /* ray.cc in Sources */,
E5D6414810BD494500A99626 /* religion.cc in Sources */,
E5D6414910BD494500A99626 /* rng.cc in Sources */,
B032D691106C02150002D70D /* SDLMain.m in Sources */,
E5D6414A10BD494500A99626 /* sha256.cc in Sources */,
E5D6414B10BD494500A99626 /* shopping.cc in Sources */,
E5D6414C10BD494500A99626 /* shout.cc in Sources */,
E5D6414D10BD494500A99626 /* show.cc in Sources */,
E5D6414E10BD494500A99626 /* showsymb.cc in Sources */,
E5D6414F10BD494500A99626 /* skills.cc in Sources */,
E5D6415010BD494500A99626 /* skills2.cc in Sources */,
E5D6415110BD494500A99626 /* species.cc in Sources */,
E5D6415210BD494500A99626 /* spells1.cc in Sources */,
E5D6415310BD494500A99626 /* spells2.cc in Sources */,
E5D6415410BD494500A99626 /* spells3.cc in Sources */,
E5D6415510BD494500A99626 /* spells4.cc in Sources */,
E5D6415610BD494500A99626 /* spl-book.cc in Sources */,
E5D6415710BD494500A99626 /* spl-cast.cc in Sources */,
E5D6415810BD494500A99626 /* spl-mis.cc in Sources */,
E5D6415910BD494500A99626 /* spl-util.cc in Sources */,
7B5165C711859D82005B23ED /* spl-zap.cc in Sources */,
7B5165C811859D82005B23ED /* sprint.cc in Sources */,
E5D6415A10BD494500A99626 /* sqldbm.cc in Sources */,
7B5165C911859D82005B23ED /* stairs.cc in Sources */,
7B5165CA11859D82005B23ED /* startup.cc in Sources */,
E5D6415B10BD494500A99626 /* stash.cc in Sources */,
E5D6415C10BD494500A99626 /* state.cc in Sources */,
E5D6415D10BD494500A99626 /* store.cc in Sources */,
E5D6415E10BD494500A99626 /* stuff.cc in Sources */,
E5D6415F10BD494500A99626 /* tags.cc in Sources */,
7B5165CB11859D82005B23ED /* tagstring.cc in Sources */,
E5D6416010BD494500A99626 /* teleport.cc in Sources */,
E5D6416110BD494500A99626 /* terrain.cc in Sources */,
B032D6F4106C02150002D70D /* tilebuf.cc in Sources */,
B032D692106C02150002D70D /* tiledef-dngn.cc in Sources */,
B032D693106C02150002D70D /* tiledef-gui.cc in Sources */,
B032D694106C02150002D70D /* tiledef-main.cc in Sources */,
B032D695106C02150002D70D /* tiledef-player.cc in Sources */,
B032D696106C02150002D70D /* tiledef-unrand.cc in Sources */,
7B51657B11859CD6005B23ED /* tiledoll.cc in Sources */,
B032D6F5106C02150002D70D /* tilefont.cc in Sources */,
B032D6F6106C02150002D70D /* tilemcache.cc in Sources */,
B032D6F7106C02150002D70D /* tilepick.cc in Sources */,
7B51657C11859CD6005B23ED /* tilereg-crt.cc in Sources */,
7B51657D11859CD6005B23ED /* tilereg-dgn.cc in Sources */,
7B51657E11859CD6005B23ED /* tilereg-doll.cc in Sources */,
7B51657F11859CD6005B23ED /* tilereg-grid.cc in Sources */,
7B51658011859CD6005B23ED /* tilereg-inv.cc in Sources */,
7B51658111859CD6005B23ED /* tilereg-map.cc in Sources */,
7B51658211859CD6005B23ED /* tilereg-mem.cc in Sources */,
7B51658311859CD6005B23ED /* tilereg-menu.cc in Sources */,
7B51658411859CD6005B23ED /* tilereg-msg.cc in Sources */,
7B51658511859CD6005B23ED /* tilereg-spl.cc in Sources */,
7B51658611859CD6005B23ED /* tilereg-stat.cc in Sources */,
7B51658711859CD6005B23ED /* tilereg-tab.cc in Sources */,
7B51658811859CD6005B23ED /* tilereg-text.cc in Sources */,
7B51658911859CD6005B23ED /* tilereg-title.cc in Sources */,
B032D6F8106C02150002D70D /* tilereg.cc in Sources */,
B032D698106C02150002D70D /* tilesdl.cc in Sources */,
B032D6F9106C02150002D70D /* tiletex.cc in Sources */,
7B09F5661133D66C004F149D /* transform.cc in Sources */,
E5D6416310BD494500A99626 /* traps.cc in Sources */,
E5D6416410BD494500A99626 /* travel.cc in Sources */,
E5D6416610BD494500A99626 /* version.cc in Sources */,
E5D6416710BD494500A99626 /* view.cc in Sources */,
E5D6416810BD494500A99626 /* viewchar.cc in Sources */,
E5D6416910BD494500A99626 /* viewgeom.cc in Sources */,
E5D6416A10BD494500A99626 /* viewmap.cc in Sources */,
7B5165D511859D90005B23ED /* windowmanager-sdl.cc in Sources */,
E5D6416B10BD494500A99626 /* wiz-dgn.cc in Sources */,
E5D6416C10BD494500A99626 /* wiz-fsim.cc in Sources */,
E5D6416D10BD494500A99626 /* wiz-item.cc in Sources */,
E5D6416E10BD494500A99626 /* wiz-mon.cc in Sources */,
E5D6416F10BD494500A99626 /* wiz-you.cc in Sources */,
E5D6417010BD494500A99626 /* xom.cc in Sources */,
4C59B09011E7964700760867 /* hints.cc in Sources */,
4C59B09111E7964700760867 /* tiledgnbuf.cc in Sources */,
4C59B09211E7964700760867 /* tilepick-p.cc in Sources */,
4C59B09311E7964700760867 /* tilereg-mon.cc in Sources */,
4C59B09411E7964700760867 /* tileview.cc in Sources */,
4C59B0AD11E798C400760867 /* tiledef-feat.cc in Sources */,
4C59B0AE11E798C400760867 /* tiledef-floor.cc in Sources */,
4C59B0AF11E798C400760867 /* tiledef-wall.cc in Sources */,
4C59B0BF11E79BB100760867 /* dgn-actions.cc in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
B082656C10731A95006EEC5A /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
B082657910731B5B006EEC5A /* sqlite3.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
B0C9CF43108DF1AF00E7FA35 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
B0C9CF87108DF38200E7FA35 /* SDLMain.m in Sources */,
B0C9CF51108DF1F900E7FA35 /* main.cc in Sources */,
B0C9CF52108DF1F900E7FA35 /* tile.cc in Sources */,
B0C9CF53108DF1F900E7FA35 /* tile_colour.cc in Sources */,
B0C9CF57108DF20100E7FA35 /* tile_list_processor.cc in Sources */,
B0C9CF56108DF1F900E7FA35 /* tile_page.cc in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
7B0EFD450BD12E9E00002671 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 7B0EFD410BD12E9200002671 /* Lua */;
targetProxy = 7B0EFD440BD12E9E00002671 /* PBXContainerItemProxy */;
};
7B5165E111859E4A005B23ED /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = B0C9CF45108DF1AF00E7FA35 /* tilegen */;
targetProxy = 7B5165E011859E4A005B23ED /* PBXContainerItemProxy */;
};
B032D521106C019C0002D70D /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 8DD76FA90486AB0100D96B5E /* Crawl-cmd */;
targetProxy = B032D520106C019C0002D70D /* PBXContainerItemProxy */;
};
B032D530106C01DB0002D70D /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 7B0EFD410BD12E9200002671 /* Lua */;
targetProxy = B032D52F106C01DB0002D70D /* PBXContainerItemProxy */;
};
B082658610731C1C006EEC5A /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = B082656E10731A95006EEC5A /* SQLite */;
targetProxy = B082658510731C1C006EEC5A /* PBXContainerItemProxy */;
};
B082658810731C22006EEC5A /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = B082656E10731A95006EEC5A /* SQLite */;
targetProxy = B082658710731C22006EEC5A /* PBXContainerItemProxy */;
};
B0C9CF64108DF24C00E7FA35 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = Framework;
targetProxy = B0C9CF63108DF24C00E7FA35 /* PBXContainerItemProxy */;
};
B0C9CF66108DF24C00E7FA35 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = libpng;
targetProxy = B0C9CF65108DF24C00E7FA35 /* PBXContainerItemProxy */;
};
B0C9CF68108DF24C00E7FA35 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = Framework;
targetProxy = B0C9CF67108DF24C00E7FA35 /* PBXContainerItemProxy */;
};
B0C9CF6A108DF26100E7FA35 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = B0C9CF45108DF1AF00E7FA35 /* tilegen */;
targetProxy = B0C9CF69108DF26100E7FA35 /* PBXContainerItemProxy */;
};
B0F7DEF71086EDF2008FFA70 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = Framework;
targetProxy = B0F7DEF61086EDF2008FFA70 /* PBXContainerItemProxy */;
};
B0F7DF171086EEB0008FFA70 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = Framework;
targetProxy = B0F7DF161086EEB0008FFA70 /* PBXContainerItemProxy */;
};
B0F7DF9D1086F107008FFA70 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = Framework;
targetProxy = B0F7DF9C1086F107008FFA70 /* PBXContainerItemProxy */;
};
B0F7E171108764C7008FFA70 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = libpng;
targetProxy = B0F7E170108764C7008FFA70 /* PBXContainerItemProxy */;
};
D2F272370DA1C5BC00445FE9 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 7B0EFD410BD12E9200002671 /* Lua */;
targetProxy = D2F272360DA1C5BC00445FE9 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin XCBuildConfiguration section */
1DEB928608733DD80010E9CD /* Profile */ = {
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 = (
CLUA_BINDINGS,
DB_NDBM,
);
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
GCC_VERSION_x86_64 = 4.0;
GCC_WARN_SIGN_COMPARE = NO;
GCC_WARN_UNINITIALIZED_AUTOS = NO;
GCC_WARN_UNUSED_FUNCTION = NO;
GCC_WARN_UNUSED_LABEL = NO;
MACOSX_DEPLOYMENT_TARGET_x86_64 = 10.5;
PRODUCT_NAME = crawl;
SDKROOT_x86_64 = /Developer/SDKs/MacOSX10.5.sdk;
YACC_GENERATED_FILE_STEM = InputFileStem;
};
name = Profile;
};
1DEB928A08733DD80010E9CD /* Profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_OPTIMIZATION_LEVEL = 2;
GCC_PREPROCESSOR_DEFINITIONS = (
DEBUG,
FULLDEBUG,
DEBUG_ITEM_SCAN,
WIZARD,
);
GCC_VERSION_i386 = 4.0;
GCC_VERSION_ppc = 4.0;
GCC_VERSION_x86_64 = 4.2;
GCC_WARN_ABOUT_MISSING_NEWLINE = 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 = NO;
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.4;
MACOSX_DEPLOYMENT_TARGET_x86_64 = 10.6;
PREBINDING = NO;
SDKROOT = "$(DEVELOPER_SDK_DIR)/MacOSX10.5.sdk";
SDKROOT_i386 = /Developer/SDKs/MacOSX10.4u.sdk;
SDKROOT_ppc = /Developer/SDKs/MacOSX10.4u.sdk;
SDKROOT_x86_64 = /Developer/SDKs/MacOSX10.6.sdk;
WARNING_CFLAGS = "";
};
name = Profile;
};
7B0EFD470BD12EA700002671 /* Profile */ = {
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 = Profile;
};
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 = (
CLUA_BINDINGS,
DB_NDBM,
WIZARD,
DEBUG,
DEBUG_ITEM_SCAN,
FULLDEBUG,
);
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
GCC_VERSION_x86_64 = 4.0;
GCC_WARN_SIGN_COMPARE = NO;
GCC_WARN_UNINITIALIZED_AUTOS = NO;
GCC_WARN_UNUSED_FUNCTION = NO;
GCC_WARN_UNUSED_LABEL = NO;
MACOSX_DEPLOYMENT_TARGET_x86_64 = 10.5;
PRODUCT_NAME = crawl;
SDKROOT_x86_64 = /Developer/SDKs/MacOSX10.5.sdk;
YACC_GENERATED_FILE_STEM = InputFileStem;
};
name = Debug;
};
7B97C0200A8ECFD700CE8936 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
DEBUG,
FULLDEBUG,
DEBUG_ITEM_SCAN,
WIZARD,
);
GCC_TREAT_NONCONFORMANT_CODE_ERRORS_AS_WARNINGS = NO;
GCC_VERSION_i386 = 4.0;
GCC_VERSION_ppc = 4.0;
GCC_VERSION_x86_64 = 4.2;
GCC_WARN_ABOUT_MISSING_NEWLINE = 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 = NO;
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.4;
MACOSX_DEPLOYMENT_TARGET_x86_64 = 10.6;
PREBINDING = NO;
SDKROOT = "$(DEVELOPER_SDK_DIR)/MacOSX10.5.sdk";
SDKROOT_i386 = /Developer/SDKs/MacOSX10.4u.sdk;
SDKROOT_ppc = /Developer/SDKs/MacOSX10.4u.sdk;
SDKROOT_x86_64 = /Developer/SDKs/MacOSX10.6.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 = (
CLUA_BINDINGS,
DB_NDBM,
WIZARD,
DEBUG,
DEBUG_ITEM_SCAN,
);
GCC_VERSION_x86_64 = 4.0;
GCC_WARN_SIGN_COMPARE = NO;
GCC_WARN_UNUSED_FUNCTION = NO;
GCC_WARN_UNUSED_LABEL = NO;
MACOSX_DEPLOYMENT_TARGET_x86_64 = 10.5;
PRODUCT_NAME = crawl;
SDKROOT_x86_64 = /Developer/SDKs/MacOSX10.5.sdk;
YACC_GENERATED_FILE_STEM = InputFileStem;
};
name = Wizard;
};
7B97C0250A8ED2AB00CE8936 /* Wizard */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_PREPROCESSOR_DEFINITIONS = (
WIZARD,
DEBUG,
DEBUG_ITEM_SCAN,
);
GCC_VERSION_i386 = 4.0;
GCC_VERSION_ppc = 4.0;
GCC_VERSION_x86_64 = 4.2;
GCC_WARN_ABOUT_MISSING_NEWLINE = 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 = NO;
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.4;
MACOSX_DEPLOYMENT_TARGET_x86_64 = 10.6;
PREBINDING = NO;
SDKROOT = "$(DEVELOPER_SDK_DIR)/MacOSX10.5.sdk";
SDKROOT_i386 = /Developer/SDKs/MacOSX10.4u.sdk;
SDKROOT_ppc = /Developer/SDKs/MacOSX10.4u.sdk;
SDKROOT_x86_64 = /Developer/SDKs/MacOSX10.6.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 = (
CLUA_BINDINGS,
DB_NDBM,
);
GCC_VERSION_x86_64 = 4.0;
GCC_WARN_SIGN_COMPARE = NO;
GCC_WARN_UNUSED_FUNCTION = NO;
GCC_WARN_UNUSED_LABEL = NO;
MACOSX_DEPLOYMENT_TARGET_x86_64 = 10.5;
PRODUCT_NAME = crawl;
SDKROOT_x86_64 = /Developer/SDKs/MacOSX10.5.sdk;
YACC_GENERATED_FILE_STEM = InputFileStem;
};
name = Release;
};
7B97C0270A8ED34400CE8936 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_64_BIT_PRE_XCODE_3_1)";
ARCHS_STANDARD_32_64_BIT_PRE_XCODE_3_1 = "x86_64 i386 ppc";
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_OPTIMIZATION_LEVEL = 2;
GCC_PREPROCESSOR_DEFINITIONS = (
OSX,
WIZARD,
ASSERTS,
);
GCC_VERSION_i386 = 4.0;
GCC_VERSION_ppc = 4.0;
GCC_VERSION_x86_64 = 4.2;
GCC_WARN_ABOUT_MISSING_NEWLINE = 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 = NO;
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.4;
MACOSX_DEPLOYMENT_TARGET_x86_64 = 10.6;
PREBINDING = NO;
SDKROOT = "$(DEVELOPER_SDK_DIR)/MacOSX10.5.sdk";
SDKROOT_i386 = /Developer/SDKs/MacOSX10.4u.sdk;
SDKROOT_ppc = /Developer/SDKs/MacOSX10.4u.sdk;
SDKROOT_x86_64 = /Developer/SDKs/MacOSX10.6.sdk;
WARNING_CFLAGS = "";
};
name = Release;
};
B032D52A106C01AF0002D70D /* Profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
COPY_PHASE_STRIP = NO;
FRAMEWORK_SEARCH_PATHS = (
"$(PROJECT_DIR)/contrib/Frameworks/Release",
"$(PROJECT_DIR)/contrib/Frameworks/Debug",
);
GCC_DYNAMIC_NO_PIC = NO;
GCC_ENABLE_FIX_AND_CONTINUE = YES;
GCC_MODEL_TUNING = G5;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "$(PROJECT_DIR)/AppHdr.h";
GCC_PREPROCESSOR_DEFINITIONS = (
"$(inherited)",
USE_TILE,
CLUA_BINDINGS,
);
GCC_VERSION = 4.0;
GCC_WARN_UNINITIALIZED_AUTOS = NO;
HEADER_SEARCH_PATHS = (
"$(PROJECT_DIR)/contrib/Frameworks/Release/Freetype2.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Release/SDL.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Release/SDL_image.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Release/libpng.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/Freetype2.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/SDL.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/SDL_image.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/libpng.framework/Headers",
);
INFOPLIST_FILE = "mac/Crawl-Info.plist";
INSTALL_PATH = "$(HOME)/Applications";
PREBINDING = NO;
PRODUCT_NAME = "Dungeon Crawl Stone Soup";
YACC_GENERATED_FILE_STEM = InputFileStem;
};
name = Profile;
};
B032D52B106C01AF0002D70D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
COPY_PHASE_STRIP = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
FRAMEWORK_SEARCH_PATHS = (
"$(PROJECT_DIR)/contrib/Frameworks/Release",
"$(PROJECT_DIR)/contrib/Frameworks/Debug",
);
GCC_ENABLE_FIX_AND_CONTINUE = NO;
GCC_MODEL_TUNING = G5;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "$(PROJECT_DIR)/AppHdr.h";
GCC_PREPROCESSOR_DEFINITIONS = (
"$(inherited)",
USE_TILE,
CLUA_BINDINGS,
USE_SDL,
USE_GL,
USE_TILE,
USE_FT,
);
GCC_VERSION = 4.0;
GCC_WARN_UNINITIALIZED_AUTOS = NO;
HEADER_SEARCH_PATHS = (
"$(PROJECT_DIR)/contrib/Frameworks/Release/Freetype2.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Release/SDL.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Release/SDL_image.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Release/libpng.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/Freetype2.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/SDL.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/SDL_image.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/libpng.framework/Headers",
);
INFOPLIST_FILE = "mac/Crawl-Info.plist";
INSTALL_PATH = "$(HOME)/Applications";
PREBINDING = NO;
PRODUCT_NAME = "Dungeon Crawl Stone Soup";
YACC_GENERATED_FILE_STEM = InputFileStem;
};
name = Release;
};
B032D52C106C01AF0002D70D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
COPY_PHASE_STRIP = NO;
FRAMEWORK_SEARCH_PATHS = (
"$(PROJECT_DIR)/contrib/Frameworks/Release",
"$(PROJECT_DIR)/contrib/Frameworks/Debug",
);
GCC_DYNAMIC_NO_PIC = NO;
GCC_ENABLE_FIX_AND_CONTINUE = YES;
GCC_MODEL_TUNING = G5;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "$(PROJECT_DIR)/AppHdr.h";
GCC_PREPROCESSOR_DEFINITIONS = (
"$(inherited)",
USE_TILE,
CLUA_BINDINGS,
);
GCC_VERSION = 4.0;
GCC_WARN_UNINITIALIZED_AUTOS = NO;
HEADER_SEARCH_PATHS = (
"$(PROJECT_DIR)/contrib/Frameworks/Release/Freetype2.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Release/SDL.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Release/SDL_image.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Release/libpng.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/Freetype2.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/SDL.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/SDL_image.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/libpng.framework/Headers",
);
INFOPLIST_FILE = "mac/Crawl-Info.plist";
INSTALL_PATH = "$(HOME)/Applications";
PREBINDING = NO;
PRODUCT_NAME = "Dungeon Crawl Stone Soup";
YACC_GENERATED_FILE_STEM = InputFileStem;
};
name = Debug;
};
B032D52D106C01AF0002D70D /* Wizard */ = {
isa = XCBuildConfiguration;
buildSettings = {
FRAMEWORK_SEARCH_PATHS = (
"$(PROJECT_DIR)/contrib/Frameworks/Release",
"$(PROJECT_DIR)/contrib/Frameworks/Debug",
);
GCC_ENABLE_FIX_AND_CONTINUE = YES;
GCC_MODEL_TUNING = G5;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "$(PROJECT_DIR)/AppHdr.h";
GCC_PREPROCESSOR_DEFINITIONS = (
"$(inherited)",
USE_TILE,
CLUA_BINDINGS,
);
GCC_VERSION = 4.0;
GCC_WARN_UNINITIALIZED_AUTOS = NO;
HEADER_SEARCH_PATHS = (
"$(PROJECT_DIR)/contrib/Frameworks/Release/Freetype2.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Release/SDL.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Release/SDL_image.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Release/libpng.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/Freetype2.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/SDL.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/SDL_image.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/libpng.framework/Headers",
);
INFOPLIST_FILE = "mac/Crawl-Info.plist";
INSTALL_PATH = "$(HOME)/Applications";
PREBINDING = NO;
PRODUCT_NAME = "Dungeon Crawl Stone Soup";
YACC_GENERATED_FILE_STEM = InputFileStem;
};
name = Wizard;
};
B082657010731A95006EEC5A /* Profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_ENABLE_FIX_AND_CONTINUE = YES;
GCC_MODEL_TUNING = G5;
GCC_PREPROCESSOR_DEFINITIONS = (
"$(inherited)",
SQLITE_OMIT_AUTHORIZATION,
SQLITE_OMIT_AUTOVACUUM,
SQLITE_OMIT_COMPLETE,
SQLITE_OMIT_BLOB_LITERAL,
SQLITE_OMIT_COMPOUND_SELECT,
SQLITE_OMIT_CONFLICT_CLAUSE,
SQLITE_OMIT_DATETIME_FUNCS,
SQLITE_OMIT_EXPLAIN,
SQLITE_OMIT_INTEGRITY_CHECK,
SQLITE_OMIT_PAGER_PRAGMAS,
SQLITE_OMIT_PROGRESS_CALLBACK,
SQLITE_OMIT_SCHEMA_PRAGMAS,
SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS,
SQLITE_OMIT_TCL_VARIABLE,
SQLITE_OMIT_LOAD_EXTENSION,
"THREADSAFE=0",
);
INSTALL_PATH = /usr/local/lib;
OTHER_LDFLAGS = (
"-framework",
Foundation,
"-framework",
AppKit,
);
PREBINDING = NO;
PRODUCT_NAME = SQLite;
WARNING_CFLAGS = "-w";
};
name = Profile;
};
B082657110731A95006EEC5A /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_ENABLE_FIX_AND_CONTINUE = NO;
GCC_MODEL_TUNING = G5;
GCC_PREPROCESSOR_DEFINITIONS = (
"$(inherited)",
SQLITE_OMIT_AUTHORIZATION,
SQLITE_OMIT_AUTOVACUUM,
SQLITE_OMIT_COMPLETE,
SQLITE_OMIT_BLOB_LITERAL,
SQLITE_OMIT_COMPOUND_SELECT,
SQLITE_OMIT_CONFLICT_CLAUSE,
SQLITE_OMIT_DATETIME_FUNCS,
SQLITE_OMIT_EXPLAIN,
SQLITE_OMIT_INTEGRITY_CHECK,
SQLITE_OMIT_PAGER_PRAGMAS,
SQLITE_OMIT_PROGRESS_CALLBACK,
SQLITE_OMIT_SCHEMA_PRAGMAS,
SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS,
SQLITE_OMIT_TCL_VARIABLE,
SQLITE_OMIT_LOAD_EXTENSION,
"THREADSAFE=0",
"SQLITE_ENABLE_LOCKING_STYLE=0",
);
INSTALL_PATH = /usr/local/lib;
OTHER_LDFLAGS = (
"-framework",
Foundation,
"-framework",
AppKit,
);
PREBINDING = NO;
PRODUCT_NAME = SQLite;
WARNING_CFLAGS = "-w";
ZERO_LINK = NO;
};
name = Release;
};
B082657210731A95006EEC5A /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_ENABLE_FIX_AND_CONTINUE = YES;
GCC_MODEL_TUNING = G5;
GCC_PREPROCESSOR_DEFINITIONS = (
"$(inherited)",
SQLITE_OMIT_AUTHORIZATION,
SQLITE_OMIT_AUTOVACUUM,
SQLITE_OMIT_COMPLETE,
SQLITE_OMIT_BLOB_LITERAL,
SQLITE_OMIT_COMPOUND_SELECT,
SQLITE_OMIT_CONFLICT_CLAUSE,
SQLITE_OMIT_DATETIME_FUNCS,
SQLITE_OMIT_EXPLAIN,
SQLITE_OMIT_INTEGRITY_CHECK,
SQLITE_OMIT_PAGER_PRAGMAS,
SQLITE_OMIT_PROGRESS_CALLBACK,
SQLITE_OMIT_SCHEMA_PRAGMAS,
SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS,
SQLITE_OMIT_TCL_VARIABLE,
SQLITE_OMIT_LOAD_EXTENSION,
"THREADSAFE=0",
);
INSTALL_PATH = /usr/local/lib;
OTHER_LDFLAGS = (
"-framework",
Foundation,
"-framework",
AppKit,
);
PREBINDING = NO;
PRODUCT_NAME = SQLite;
WARNING_CFLAGS = "-w";
};
name = Debug;
};
B082657310731A95006EEC5A /* Wizard */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
GCC_ENABLE_FIX_AND_CONTINUE = YES;
GCC_MODEL_TUNING = G5;
GCC_PREPROCESSOR_DEFINITIONS = (
"$(inherited)",
SQLITE_OMIT_AUTHORIZATION,
SQLITE_OMIT_AUTOVACUUM,
SQLITE_OMIT_COMPLETE,
SQLITE_OMIT_BLOB_LITERAL,
SQLITE_OMIT_COMPOUND_SELECT,
SQLITE_OMIT_CONFLICT_CLAUSE,
SQLITE_OMIT_DATETIME_FUNCS,
SQLITE_OMIT_EXPLAIN,
SQLITE_OMIT_INTEGRITY_CHECK,
SQLITE_OMIT_PAGER_PRAGMAS,
SQLITE_OMIT_PROGRESS_CALLBACK,
SQLITE_OMIT_SCHEMA_PRAGMAS,
SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS,
SQLITE_OMIT_TCL_VARIABLE,
SQLITE_OMIT_LOAD_EXTENSION,
"THREADSAFE=0",
);
INSTALL_PATH = /usr/local/lib;
OTHER_LDFLAGS = (
"-framework",
Foundation,
"-framework",
AppKit,
);
PREBINDING = NO;
PRODUCT_NAME = SQLite;
WARNING_CFLAGS = "-w";
};
name = Wizard;
};
B0C9CF49108DF1AF00E7FA35 /* Profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
GCC_ENABLE_FIX_AND_CONTINUE = YES;
GCC_MODEL_TUNING = G5;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
HEADER_SEARCH_PATHS = (
"$(PROJECT_DIR)/contrib/Frameworks/Release/Freetype2.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Release/SDL.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Release/SDL_image.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Release/libpng.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/Freetype2.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/SDL.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/SDL_image.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/libpng.framework/Headers",
);
INFOPLIST_FILE = "rltiles/tilegen-Info.plist";
INSTALL_PATH = "$(HOME)/Applications";
OTHER_LDFLAGS = (
"-framework",
Foundation,
"-framework",
AppKit,
);
PREBINDING = NO;
PRODUCT_NAME = tilegen;
};
name = Profile;
};
B0C9CF4A108DF1AF00E7FA35 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_ENABLE_FIX_AND_CONTINUE = NO;
GCC_MODEL_TUNING = G5;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
HEADER_SEARCH_PATHS = (
"$(PROJECT_DIR)/contrib/Frameworks/Release/Freetype2.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Release/SDL.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Release/SDL_image.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Release/libpng.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/Freetype2.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/SDL.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/SDL_image.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/libpng.framework/Headers",
);
INFOPLIST_FILE = "rltiles/tilegen-Info.plist";
INSTALL_PATH = "$(HOME)/Applications";
OTHER_LDFLAGS = (
"-framework",
Foundation,
"-framework",
AppKit,
);
PREBINDING = NO;
PRODUCT_NAME = tilegen;
ZERO_LINK = NO;
};
name = Release;
};
B0C9CF4B108DF1AF00E7FA35 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_ENABLE_FIX_AND_CONTINUE = YES;
GCC_MODEL_TUNING = G5;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
HEADER_SEARCH_PATHS = (
"$(PROJECT_DIR)/contrib/Frameworks/Release/Freetype2.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Release/SDL.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Release/SDL_image.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Release/libpng.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/Freetype2.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/SDL.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/SDL_image.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/libpng.framework/Headers",
);
INFOPLIST_FILE = "rltiles/tilegen-Info.plist";
INSTALL_PATH = "$(HOME)/Applications";
OTHER_LDFLAGS = (
"-framework",
Foundation,
"-framework",
AppKit,
);
PREBINDING = NO;
PRODUCT_NAME = tilegen;
};
name = Debug;
};
B0C9CF4C108DF1AF00E7FA35 /* Wizard */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
GCC_ENABLE_FIX_AND_CONTINUE = YES;
GCC_MODEL_TUNING = G5;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
HEADER_SEARCH_PATHS = (
"$(PROJECT_DIR)/contrib/Frameworks/Release/Freetype2.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Release/SDL.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Release/SDL_image.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Release/libpng.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/Freetype2.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/SDL.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/SDL_image.framework/Headers",
"$(PROJECT_DIR)/contrib/Frameworks/Debug/libpng.framework/Headers",
);
INFOPLIST_FILE = "rltiles/tilegen-Info.plist";
INSTALL_PATH = "$(HOME)/Applications";
OTHER_LDFLAGS = (
"-framework",
Foundation,
"-framework",
AppKit,
);
PREBINDING = NO;
PRODUCT_NAME = tilegen;
};
name = Wizard;
};
D2F271F90DA1C58C00445FE9 /* Profile */ = {
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 = "Dungeon Crawl Stone Soup - ASCII";
WRAPPER_EXTENSION = app;
};
name = Profile;
};
D2F271FA0DA1C58C00445FE9 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
COPY_PHASE_STRIP = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_VERSION = 4.0;
INFOPLIST_FILE = "mac/Crawl-Info.plist";
INSTALL_PATH = "$(HOME)/Applications";
OTHER_LDFLAGS = (
"-framework",
Foundation,
"-framework",
AppKit,
);
PREBINDING = NO;
PRODUCT_NAME = "Dungeon Crawl Stone Soup - ASCII";
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 = "Dungeon Crawl Stone Soup - ASCII";
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 = "Dungeon Crawl Stone Soup - ASCII";
WRAPPER_EXTENSION = app;
};
name = Wizard;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
1DEB928508733DD80010E9CD /* Build configuration list for PBXNativeTarget "Crawl-cmd" */ = {
isa = XCConfigurationList;
buildConfigurations = (
1DEB928608733DD80010E9CD /* Profile */,
7B97C0260A8ED34400CE8936 /* Release */,
7B97C01F0A8ECFD700CE8936 /* Debug */,
7B97C0240A8ED2AB00CE8936 /* Wizard */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Profile;
};
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "Crawl" */ = {
isa = XCConfigurationList;
buildConfigurations = (
1DEB928A08733DD80010E9CD /* Profile */,
7B97C0270A8ED34400CE8936 /* Release */,
7B97C0200A8ECFD700CE8936 /* Debug */,
7B97C0250A8ED2AB00CE8936 /* Wizard */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Profile;
};
7B0EFD460BD12EA700002671 /* Build configuration list for PBXNativeTarget "Lua" */ = {
isa = XCConfigurationList;
buildConfigurations = (
7B0EFD470BD12EA700002671 /* Profile */,
7B0EFD480BD12EA700002671 /* Release */,
7B0EFD490BD12EA700002671 /* Debug */,
7B0EFD4A0BD12EA700002671 /* Wizard */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Profile;
};
B032D52E106C01AF0002D70D /* Build configuration list for PBXNativeTarget "Crawl Tiles" */ = {
isa = XCConfigurationList;
buildConfigurations = (
B032D52A106C01AF0002D70D /* Profile */,
B032D52B106C01AF0002D70D /* Release */,
B032D52C106C01AF0002D70D /* Debug */,
B032D52D106C01AF0002D70D /* Wizard */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Profile;
};
B082657510731AA1006EEC5A /* Build configuration list for PBXNativeTarget "SQLite" */ = {
isa = XCConfigurationList;
buildConfigurations = (
B082657010731A95006EEC5A /* Profile */,
B082657110731A95006EEC5A /* Release */,
B082657210731A95006EEC5A /* Debug */,
B082657310731A95006EEC5A /* Wizard */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Profile;
};
B0C9CF4D108DF1B000E7FA35 /* Build configuration list for PBXNativeTarget "tilegen" */ = {
isa = XCConfigurationList;
buildConfigurations = (
B0C9CF49108DF1AF00E7FA35 /* Profile */,
B0C9CF4A108DF1AF00E7FA35 /* Release */,
B0C9CF4B108DF1AF00E7FA35 /* Debug */,
B0C9CF4C108DF1AF00E7FA35 /* Wizard */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Profile;
};
D2F271FD0DA1C58C00445FE9 /* Build configuration list for PBXNativeTarget "Crawl ASCII" */ = {
isa = XCConfigurationList;
buildConfigurations = (
D2F271F90DA1C58C00445FE9 /* Profile */,
D2F271FA0DA1C58C00445FE9 /* Release */,
D2F271FB0DA1C58C00445FE9 /* Debug */,
D2F271FC0DA1C58C00445FE9 /* Wizard */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Profile;
};
/* End XCConfigurationList section */
};
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
}
|