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
|
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
D309B22117EFE2EF00AA52C8 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D39ECDA117ED70D900319DBA /* XCTest.framework */; };
D309B22217EFE2EF00AA52C8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D39ECD8817ED70D900319DBA /* Foundation.framework */; };
D309B22317EFE2EF00AA52C8 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D39ECD8C17ED70D900319DBA /* UIKit.framework */; };
D309B22C17EFE2EF00AA52C8 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = D309B22A17EFE2EF00AA52C8 /* InfoPlist.strings */; };
D309B23D17EFFE2000AA52C8 /* libChipmunk-iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D3C3787A11063B1B003EF1D9 /* libChipmunk-iOS.a */; };
D309B24C17EFFF9E00AA52C8 /* ChipmunkBody.m in Sources */ = {isa = PBXBuildFile; fileRef = D309B24617EFFF9E00AA52C8 /* ChipmunkBody.m */; };
D309B24D17EFFF9E00AA52C8 /* ChipmunkConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = D309B24717EFFF9E00AA52C8 /* ChipmunkConstraint.m */; };
D309B24E17EFFF9E00AA52C8 /* ChipmunkMultiGrab.m in Sources */ = {isa = PBXBuildFile; fileRef = D309B24817EFFF9E00AA52C8 /* ChipmunkMultiGrab.m */; };
D309B25017EFFF9E00AA52C8 /* ChipmunkShape.m in Sources */ = {isa = PBXBuildFile; fileRef = D309B24A17EFFF9E00AA52C8 /* ChipmunkShape.m */; };
D309B25117EFFF9E00AA52C8 /* ChipmunkSpace.m in Sources */ = {isa = PBXBuildFile; fileRef = D309B24B17EFFF9E00AA52C8 /* ChipmunkSpace.m */; };
D309B26C17F0088A00AA52C8 /* BodyTest.m in Sources */ = {isa = PBXBuildFile; fileRef = D309B25217F003FD00AA52C8 /* BodyTest.m */; };
D309B26D17F00B3B00AA52C8 /* libObjectiveChipmunk-iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D309B21317EFE2EF00AA52C8 /* libObjectiveChipmunk-iOS.a */; };
D309B26E17F00D5500AA52C8 /* ShapeTest.m in Sources */ = {isa = PBXBuildFile; fileRef = D309B25C17F003FD00AA52C8 /* ShapeTest.m */; };
D309B26F17F0A84800AA52C8 /* ConvexTest.m in Sources */ = {isa = PBXBuildFile; fileRef = D309B25417F003FD00AA52C8 /* ConvexTest.m */; };
D309B27017F0AFFD00AA52C8 /* CallbacksTest.m in Sources */ = {isa = PBXBuildFile; fileRef = D309B25317F003FD00AA52C8 /* CallbacksTest.m */; };
D309B27117F0B42900AA52C8 /* MemoryTest.m in Sources */ = {isa = PBXBuildFile; fileRef = D309B25617F003FD00AA52C8 /* MemoryTest.m */; };
D309B27217F0B4A600AA52C8 /* MiscTest.m in Sources */ = {isa = PBXBuildFile; fileRef = D309B25717F003FD00AA52C8 /* MiscTest.m */; };
D309B27317F0B66F00AA52C8 /* SpaceTest.m in Sources */ = {isa = PBXBuildFile; fileRef = D309B25F17F003FD00AA52C8 /* SpaceTest.m */; };
D3102B171119FD3000E77771 /* Tank.c in Sources */ = {isa = PBXBuildFile; fileRef = D3102B161119FD3000E77771 /* Tank.c */; };
D31402950E9DD07E00EF79DB /* Springies.c in Sources */ = {isa = PBXBuildFile; fileRef = D31402940E9DD07E00EF79DB /* Springies.c */; };
D317246613280FC900752CBE /* cpSweep1D.c in Sources */ = {isa = PBXBuildFile; fileRef = D317246513280FC900752CBE /* cpSweep1D.c */; };
D317246713280FC900752CBE /* cpSweep1D.c in Sources */ = {isa = PBXBuildFile; fileRef = D317246513280FC900752CBE /* cpSweep1D.c */; };
D3172C681A5DDF8C004D09F7 /* cpHastySpace.c in Sources */ = {isa = PBXBuildFile; fileRef = D3172C651A5DDF8C004D09F7 /* cpHastySpace.c */; };
D3172C691A5DDF8C004D09F7 /* cpHastySpace.c in Sources */ = {isa = PBXBuildFile; fileRef = D3172C651A5DDF8C004D09F7 /* cpHastySpace.c */; };
D3172C6A1A5DDF8D004D09F7 /* cpMarch.c in Sources */ = {isa = PBXBuildFile; fileRef = D3172C661A5DDF8C004D09F7 /* cpMarch.c */; };
D3172C6B1A5DDF8D004D09F7 /* cpMarch.c in Sources */ = {isa = PBXBuildFile; fileRef = D3172C661A5DDF8C004D09F7 /* cpMarch.c */; };
D3172C6C1A5DDF8D004D09F7 /* cpPolyline.c in Sources */ = {isa = PBXBuildFile; fileRef = D3172C671A5DDF8C004D09F7 /* cpPolyline.c */; };
D3172C6D1A5DDF8D004D09F7 /* cpPolyline.c in Sources */ = {isa = PBXBuildFile; fileRef = D3172C671A5DDF8C004D09F7 /* cpPolyline.c */; };
D3172C721A5DDFC2004D09F7 /* cpHastySpace.h in Headers */ = {isa = PBXBuildFile; fileRef = D3172C6F1A5DDFC2004D09F7 /* cpHastySpace.h */; };
D3172C731A5DDFC2004D09F7 /* cpHastySpace.h in Headers */ = {isa = PBXBuildFile; fileRef = D3172C6F1A5DDFC2004D09F7 /* cpHastySpace.h */; };
D3172C741A5DDFC2004D09F7 /* cpMarch.h in Headers */ = {isa = PBXBuildFile; fileRef = D3172C701A5DDFC2004D09F7 /* cpMarch.h */; };
D3172C751A5DDFC2004D09F7 /* cpMarch.h in Headers */ = {isa = PBXBuildFile; fileRef = D3172C701A5DDFC2004D09F7 /* cpMarch.h */; };
D3172C761A5DDFC2004D09F7 /* cpPolyline.h in Headers */ = {isa = PBXBuildFile; fileRef = D3172C711A5DDFC2004D09F7 /* cpPolyline.h */; };
D3172C771A5DDFC2004D09F7 /* cpPolyline.h in Headers */ = {isa = PBXBuildFile; fileRef = D3172C711A5DDFC2004D09F7 /* cpPolyline.h */; };
D3172C7A1A5DE0E5004D09F7 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D3172C781A5DE0D2004D09F7 /* ImageIO.framework */; };
D3172C7D1A5DE0FA004D09F7 /* TestImageLA.png in Resources */ = {isa = PBXBuildFile; fileRef = D3172C7B1A5DE0FA004D09F7 /* TestImageLA.png */; };
D3172C7E1A5DE0FA004D09F7 /* TestImageRGB.png in Resources */ = {isa = PBXBuildFile; fileRef = D3172C7C1A5DE0FA004D09F7 /* TestImageRGB.png */; };
D31847750FC458FD00E30B0D /* Query.c in Sources */ = {isa = PBXBuildFile; fileRef = D31847740FC458FD00E30B0D /* Query.c */; };
D3185D200EC5610A00E6BFCB /* TheoJansen.c in Sources */ = {isa = PBXBuildFile; fileRef = D3185D1F0EC5610A00E6BFCB /* TheoJansen.c */; };
D3238F8210C1B5ED00C4BDC2 /* Joints.c in Sources */ = {isa = PBXBuildFile; fileRef = D3238F8110C1B5ED00C4BDC2 /* Joints.c */; };
D32E825417D6D1300037966D /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D32E825317D6D1300037966D /* IOKit.framework */; };
D333C5E518639A0500BBC4FF /* ChipmunkBody.m in Sources */ = {isa = PBXBuildFile; fileRef = D309B24617EFFF9E00AA52C8 /* ChipmunkBody.m */; };
D333C5E618639A0500BBC4FF /* ChipmunkShape.m in Sources */ = {isa = PBXBuildFile; fileRef = D309B24A17EFFF9E00AA52C8 /* ChipmunkShape.m */; };
D333C5E718639A0500BBC4FF /* ChipmunkConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = D309B24717EFFF9E00AA52C8 /* ChipmunkConstraint.m */; };
D333C5E818639A0500BBC4FF /* ChipmunkMultiGrab.m in Sources */ = {isa = PBXBuildFile; fileRef = D309B24817EFFF9E00AA52C8 /* ChipmunkMultiGrab.m */; };
D333C5E918639A0500BBC4FF /* ChipmunkSpace.m in Sources */ = {isa = PBXBuildFile; fileRef = D309B24B17EFFF9E00AA52C8 /* ChipmunkSpace.m */; };
D34963C10B56CBA900CAD239 /* chipmunk.h in Headers */ = {isa = PBXBuildFile; fileRef = D3E5F0C40AA75CC3004E361B /* chipmunk.h */; };
D34963C20B56CBA900CAD239 /* cpVect.h in Headers */ = {isa = PBXBuildFile; fileRef = D3E5F0270AA32F16004E361B /* cpVect.h */; };
D34963C30B56CBA900CAD239 /* cpBB.h in Headers */ = {isa = PBXBuildFile; fileRef = D3E5F2D90AAA5622004E361B /* cpBB.h */; };
D34963C50B56CBA900CAD239 /* prime.h in Headers */ = {isa = PBXBuildFile; fileRef = D353B6480B059C5F0038D274 /* prime.h */; };
D34963C70B56CBA900CAD239 /* cpBody.h in Headers */ = {isa = PBXBuildFile; fileRef = D3E5F0DD0AAA2273004E361B /* cpBody.h */; };
D34963C90B56CBA900CAD239 /* cpArbiter.h in Headers */ = {isa = PBXBuildFile; fileRef = D3E5F0C10AA75CA9004E361B /* cpArbiter.h */; };
D34963CA0B56CBA900CAD239 /* cpPolyShape.h in Headers */ = {isa = PBXBuildFile; fileRef = D3BC99AC0AB381AF0025A2C0 /* cpPolyShape.h */; };
D34963CB0B56CBA900CAD239 /* cpShape.h in Headers */ = {isa = PBXBuildFile; fileRef = D37E22FC0AAA63B800BB4C50 /* cpShape.h */; };
D34963CD0B56CBA900CAD239 /* cpSpace.h in Headers */ = {isa = PBXBuildFile; fileRef = D3E5F2CE0AAA5589004E361B /* cpSpace.h */; };
D34963CE0B56CBBF00CAD239 /* chipmunk.c in Sources */ = {isa = PBXBuildFile; fileRef = D3B718E00AB2BC8900B500C9 /* chipmunk.c */; };
D34963D10B56CBBF00CAD239 /* cpArray.c in Sources */ = {isa = PBXBuildFile; fileRef = D3E5F2DD0AAA562B004E361B /* cpArray.c */; };
D34963D20B56CBBF00CAD239 /* cpHashSet.c in Sources */ = {isa = PBXBuildFile; fileRef = D30CE25D0B52535500427129 /* cpHashSet.c */; };
D34963D30B56CBBF00CAD239 /* cpBody.c in Sources */ = {isa = PBXBuildFile; fileRef = D3E5F0DE0AAA2273004E361B /* cpBody.c */; };
D34963D40B56CBBF00CAD239 /* cpSpaceHash.c in Sources */ = {isa = PBXBuildFile; fileRef = D3E5F2DF0AAA562B004E361B /* cpSpaceHash.c */; };
D34963D50B56CBBF00CAD239 /* cpArbiter.c in Sources */ = {isa = PBXBuildFile; fileRef = D3E5F0C20AA75CA9004E361B /* cpArbiter.c */; };
D34963D60B56CBBF00CAD239 /* cpPolyShape.c in Sources */ = {isa = PBXBuildFile; fileRef = D3BC99AB0AB381AF0025A2C0 /* cpPolyShape.c */; };
D34963D70B56CBBF00CAD239 /* cpShape.c in Sources */ = {isa = PBXBuildFile; fileRef = D37E22FD0AAA63B800BB4C50 /* cpShape.c */; };
D34963D80B56CBBF00CAD239 /* cpCollision.c in Sources */ = {isa = PBXBuildFile; fileRef = D37E231F0AAA728A00BB4C50 /* cpCollision.c */; };
D34963D90B56CBBF00CAD239 /* cpSpace.c in Sources */ = {isa = PBXBuildFile; fileRef = D3E5F2CF0AAA5589004E361B /* cpSpace.c */; };
D34E9E6712558100002C0FE5 /* cpSpaceQuery.c in Sources */ = {isa = PBXBuildFile; fileRef = D34E9E6412558081002C0FE5 /* cpSpaceQuery.c */; };
D34E9E681255810F002C0FE5 /* cpSpaceQuery.c in Sources */ = {isa = PBXBuildFile; fileRef = D34E9E6412558081002C0FE5 /* cpSpaceQuery.c */; };
D34E9E97125581DD002C0FE5 /* cpSpaceComponent.c in Sources */ = {isa = PBXBuildFile; fileRef = D34E9E96125581DD002C0FE5 /* cpSpaceComponent.c */; };
D34E9E98125581DD002C0FE5 /* cpSpaceComponent.c in Sources */ = {isa = PBXBuildFile; fileRef = D34E9E96125581DD002C0FE5 /* cpSpaceComponent.c */; };
D34E9EA312558A7C002C0FE5 /* cpSpaceStep.c in Sources */ = {isa = PBXBuildFile; fileRef = D34E9EA212558A7C002C0FE5 /* cpSpaceStep.c */; };
D34E9EA412558A7C002C0FE5 /* cpSpaceStep.c in Sources */ = {isa = PBXBuildFile; fileRef = D34E9EA212558A7C002C0FE5 /* cpSpaceStep.c */; };
D35420C00F4E1FD70017F4F7 /* chipmunk_unsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = D35420BF0F4E1FD70017F4F7 /* chipmunk_unsafe.h */; };
D36B19510EA13B6D0028A362 /* cpDampedRotarySpring.c in Sources */ = {isa = PBXBuildFile; fileRef = D36B192D0EA1364E0028A362 /* cpDampedRotarySpring.c */; };
D36D87831012D63600DB5078 /* cpRatchetJoint.c in Sources */ = {isa = PBXBuildFile; fileRef = D36D87811012D63600DB5078 /* cpRatchetJoint.c */; };
D36D87841012D63600DB5078 /* cpRatchetJoint.h in Headers */ = {isa = PBXBuildFile; fileRef = D36D87821012D63600DB5078 /* cpRatchetJoint.h */; };
D37282AD13C6432F00FFFA3F /* Crane.c in Sources */ = {isa = PBXBuildFile; fileRef = D37282AC13C6432F00FFFA3F /* Crane.c */; };
D37282D413C76C1B00FFFA3F /* Buoyancy.c in Sources */ = {isa = PBXBuildFile; fileRef = D37282D313C76C1B00FFFA3F /* Buoyancy.c */; };
D373FF1013D0D66E000EDB87 /* ContactGraph.c in Sources */ = {isa = PBXBuildFile; fileRef = D373FF0F13D0D66E000EDB87 /* ContactGraph.c */; };
D37697200B50C53900BB33CC /* LogoSmash.c in Sources */ = {isa = PBXBuildFile; fileRef = D3CCDF460AE35D920080442F /* LogoSmash.c */; };
D37BB76E0EAADA6300C70958 /* cpRotaryLimitJoint.c in Sources */ = {isa = PBXBuildFile; fileRef = D37BB76C0EAADA6300C70958 /* cpRotaryLimitJoint.c */; };
D37BB76F0EAADA6300C70958 /* cpRotaryLimitJoint.h in Headers */ = {isa = PBXBuildFile; fileRef = D37BB76D0EAADA6300C70958 /* cpRotaryLimitJoint.h */; };
D37BB8B30EAB01E400C70958 /* cpGearJoint.c in Sources */ = {isa = PBXBuildFile; fileRef = D37BB8B10EAB01E400C70958 /* cpGearJoint.c */; };
D37BB8B40EAB01E400C70958 /* cpGearJoint.h in Headers */ = {isa = PBXBuildFile; fileRef = D37BB8B20EAB01E400C70958 /* cpGearJoint.h */; };
D37BB8F10EAB06B600C70958 /* cpSimpleMotor.h in Headers */ = {isa = PBXBuildFile; fileRef = D37BB8EF0EAB06B600C70958 /* cpSimpleMotor.h */; };
D37BB8F20EAB06B600C70958 /* cpSimpleMotor.c in Sources */ = {isa = PBXBuildFile; fileRef = D37BB8F00EAB06B600C70958 /* cpSimpleMotor.c */; };
D3800E120E9815FC00A3D7FA /* cpConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = D3800E0F0E9815FC00A3D7FA /* cpConstraint.h */; };
D3800E130E9815FC00A3D7FA /* cpConstraint.c in Sources */ = {isa = PBXBuildFile; fileRef = D3800E100E9815FC00A3D7FA /* cpConstraint.c */; };
D3800E1E0E98176F00A3D7FA /* cpPinJoint.c in Sources */ = {isa = PBXBuildFile; fileRef = D3800E1B0E98176F00A3D7FA /* cpPinJoint.c */; };
D3800E1F0E98176F00A3D7FA /* cpPinJoint.h in Headers */ = {isa = PBXBuildFile; fileRef = D3800E1C0E98176F00A3D7FA /* cpPinJoint.h */; };
D38011620E984FA400A3D7FA /* cpDampedSpring.c in Sources */ = {isa = PBXBuildFile; fileRef = D380115F0E984FA400A3D7FA /* cpDampedSpring.c */; };
D38011630E984FA400A3D7FA /* cpDampedSpring.h in Headers */ = {isa = PBXBuildFile; fileRef = D38011600E984FA400A3D7FA /* cpDampedSpring.h */; };
D38687D30BAFC695008B7008 /* libChipmunk-Mac.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D34963BB0B56CAA300CAD239 /* libChipmunk-Mac.a */; };
D38825E617EB945E00663730 /* cpTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = D38825E517EB945E00663730 /* cpTransform.h */; };
D38825E717EB945E00663730 /* cpTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = D38825E517EB945E00663730 /* cpTransform.h */; };
D389413318639E9700725CFC /* libChipmunk-Mac.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D34963BB0B56CAA300CAD239 /* libChipmunk-Mac.a */; };
D38996A6148B1E72006CFE0B /* Slice.c in Sources */ = {isa = PBXBuildFile; fileRef = D38996A5148B1E72006CFE0B /* Slice.c */; };
D38C029916840ED3009F612B /* Shatter.c in Sources */ = {isa = PBXBuildFile; fileRef = D38C029816840ED2009F612B /* Shatter.c */; };
D393275C0EA02C710026F6A2 /* Pump.c in Sources */ = {isa = PBXBuildFile; fileRef = D393275B0EA02C710026F6A2 /* Pump.c */; };
D39ECD8917ED70D900319DBA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D39ECD8817ED70D900319DBA /* Foundation.framework */; };
D39ECD8B17ED70D900319DBA /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D39ECD8A17ED70D900319DBA /* CoreGraphics.framework */; };
D39ECD8D17ED70D900319DBA /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D39ECD8C17ED70D900319DBA /* UIKit.framework */; };
D39ECD9517ED70D900319DBA /* iPhoneBenchmarkMain.m in Sources */ = {isa = PBXBuildFile; fileRef = D39ECD9417ED70D900319DBA /* iPhoneBenchmarkMain.m */; };
D39ECDB517ED71F800319DBA /* Bench.c in Sources */ = {isa = PBXBuildFile; fileRef = D3E4867513175AE000A00840 /* Bench.c */; };
D39ECDB817ED724600319DBA /* libChipmunk-iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D3C3787A11063B1B003EF1D9 /* libChipmunk-iOS.a */; };
D3A96F7B17E9F86900658436 /* cpSpaceDebug.c in Sources */ = {isa = PBXBuildFile; fileRef = D3A96F7A17E9F86900658436 /* cpSpaceDebug.c */; };
D3A96F7C17E9F86900658436 /* cpSpaceDebug.c in Sources */ = {isa = PBXBuildFile; fileRef = D3A96F7A17E9F86900658436 /* cpSpaceDebug.c */; };
D3AA477512AF0F8900E27AAB /* cpBBTree.c in Sources */ = {isa = PBXBuildFile; fileRef = D3AA477312AF0F8900E27AAB /* cpBBTree.c */; };
D3AA477612AF0F8900E27AAB /* cpSpatialIndex.c in Sources */ = {isa = PBXBuildFile; fileRef = D3AA477412AF0F8900E27AAB /* cpSpatialIndex.c */; };
D3AA477712AF0F8900E27AAB /* cpBBTree.c in Sources */ = {isa = PBXBuildFile; fileRef = D3AA477312AF0F8900E27AAB /* cpBBTree.c */; };
D3AA477812AF0F8900E27AAB /* cpSpatialIndex.c in Sources */ = {isa = PBXBuildFile; fileRef = D3AA477412AF0F8900E27AAB /* cpSpatialIndex.c */; };
D3AA477C12AF0F9B00E27AAB /* cpSpatialIndex.h in Headers */ = {isa = PBXBuildFile; fileRef = D3AA477A12AF0F9B00E27AAB /* cpSpatialIndex.h */; };
D3AA477E12AF0F9B00E27AAB /* cpSpatialIndex.h in Headers */ = {isa = PBXBuildFile; fileRef = D3AA477A12AF0F9B00E27AAB /* cpSpatialIndex.h */; };
D3BACF8310B5DF8900376394 /* OneWay.c in Sources */ = {isa = PBXBuildFile; fileRef = D3BACF8210B5DF8900376394 /* OneWay.c */; };
D3BAD65810B8B52900376394 /* Player.c in Sources */ = {isa = PBXBuildFile; fileRef = D3BAD0C710B61AAD00376394 /* Player.c */; };
D3BAF9C50E9C4F250039DD5C /* PyramidStack.c in Sources */ = {isa = PBXBuildFile; fileRef = D3BAF9C40E9C4F250039DD5C /* PyramidStack.c */; };
D3BAFA040E9C52810039DD5C /* Plink.c in Sources */ = {isa = PBXBuildFile; fileRef = D3BAFA030E9C52810039DD5C /* Plink.c */; };
D3BAFA360E9C53E50039DD5C /* Tumble.c in Sources */ = {isa = PBXBuildFile; fileRef = D3BAFA350E9C53E50039DD5C /* Tumble.c */; };
D3BAFA510E9C549C0039DD5C /* PyramidTopple.c in Sources */ = {isa = PBXBuildFile; fileRef = D3BAFA500E9C549C0039DD5C /* PyramidTopple.c */; };
D3BAFB8B0E9C7C150039DD5C /* Planet.c in Sources */ = {isa = PBXBuildFile; fileRef = D3BAFB8A0E9C7C150039DD5C /* Planet.c */; };
D3BC99C10AB381EE0025A2C0 /* ChipmunkDemo.c in Sources */ = {isa = PBXBuildFile; fileRef = D3BC99C00AB381EE0025A2C0 /* ChipmunkDemo.c */; };
D3C378F511063C57003EF1D9 /* cpConstraint.c in Sources */ = {isa = PBXBuildFile; fileRef = D3800E100E9815FC00A3D7FA /* cpConstraint.c */; };
D3C378F611063C57003EF1D9 /* cpPinJoint.c in Sources */ = {isa = PBXBuildFile; fileRef = D3800E1B0E98176F00A3D7FA /* cpPinJoint.c */; };
D3C378F711063C57003EF1D9 /* cpSlideJoint.c in Sources */ = {isa = PBXBuildFile; fileRef = D3800EA60E98260200A3D7FA /* cpSlideJoint.c */; };
D3C378F811063C57003EF1D9 /* cpPivotJoint.c in Sources */ = {isa = PBXBuildFile; fileRef = D3800EA40E98260200A3D7FA /* cpPivotJoint.c */; };
D3C378F911063C57003EF1D9 /* cpGrooveJoint.c in Sources */ = {isa = PBXBuildFile; fileRef = D3800EA00E98260200A3D7FA /* cpGrooveJoint.c */; };
D3C378FA11063C57003EF1D9 /* cpDampedSpring.c in Sources */ = {isa = PBXBuildFile; fileRef = D380115F0E984FA400A3D7FA /* cpDampedSpring.c */; };
D3C378FB11063C57003EF1D9 /* chipmunk.c in Sources */ = {isa = PBXBuildFile; fileRef = D3B718E00AB2BC8900B500C9 /* chipmunk.c */; };
D3C378FE11063C57003EF1D9 /* cpArray.c in Sources */ = {isa = PBXBuildFile; fileRef = D3E5F2DD0AAA562B004E361B /* cpArray.c */; };
D3C378FF11063C57003EF1D9 /* cpHashSet.c in Sources */ = {isa = PBXBuildFile; fileRef = D30CE25D0B52535500427129 /* cpHashSet.c */; };
D3C3790011063C57003EF1D9 /* cpBody.c in Sources */ = {isa = PBXBuildFile; fileRef = D3E5F0DE0AAA2273004E361B /* cpBody.c */; };
D3C3790111063C57003EF1D9 /* cpSpaceHash.c in Sources */ = {isa = PBXBuildFile; fileRef = D3E5F2DF0AAA562B004E361B /* cpSpaceHash.c */; };
D3C3790211063C57003EF1D9 /* cpArbiter.c in Sources */ = {isa = PBXBuildFile; fileRef = D3E5F0C20AA75CA9004E361B /* cpArbiter.c */; };
D3C3790311063C57003EF1D9 /* cpPolyShape.c in Sources */ = {isa = PBXBuildFile; fileRef = D3BC99AB0AB381AF0025A2C0 /* cpPolyShape.c */; };
D3C3790411063C57003EF1D9 /* cpShape.c in Sources */ = {isa = PBXBuildFile; fileRef = D37E22FD0AAA63B800BB4C50 /* cpShape.c */; };
D3C3790511063C57003EF1D9 /* cpCollision.c in Sources */ = {isa = PBXBuildFile; fileRef = D37E231F0AAA728A00BB4C50 /* cpCollision.c */; };
D3C3790611063C57003EF1D9 /* cpSpace.c in Sources */ = {isa = PBXBuildFile; fileRef = D3E5F2CF0AAA5589004E361B /* cpSpace.c */; };
D3C3790711063C57003EF1D9 /* cpDampedRotarySpring.c in Sources */ = {isa = PBXBuildFile; fileRef = D36B192D0EA1364E0028A362 /* cpDampedRotarySpring.c */; };
D3C3790811063C57003EF1D9 /* cpRotaryLimitJoint.c in Sources */ = {isa = PBXBuildFile; fileRef = D37BB76C0EAADA6300C70958 /* cpRotaryLimitJoint.c */; };
D3C3790911063C57003EF1D9 /* cpGearJoint.c in Sources */ = {isa = PBXBuildFile; fileRef = D37BB8B10EAB01E400C70958 /* cpGearJoint.c */; };
D3C3790A11063C57003EF1D9 /* cpSimpleMotor.c in Sources */ = {isa = PBXBuildFile; fileRef = D37BB8F00EAB06B600C70958 /* cpSimpleMotor.c */; };
D3C3790B11063C57003EF1D9 /* cpRatchetJoint.c in Sources */ = {isa = PBXBuildFile; fileRef = D36D87811012D63600DB5078 /* cpRatchetJoint.c */; };
D3D7CBA922A85D4B00E6181A /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = D3D7CB9F22A85D4B00E6181A /* LICENSE */; };
D3D7CBAA22A85D4B00E6181A /* fips.yml in Resources */ = {isa = PBXBuildFile; fileRef = D3D7CBA022A85D4B00E6181A /* fips.yml */; };
D3D7CBAB22A85D4B00E6181A /* README.md in Resources */ = {isa = PBXBuildFile; fileRef = D3D7CBA322A85D4B00E6181A /* README.md */; };
D3D7CBAC22A85D4B00E6181A /* .gitignore in Resources */ = {isa = PBXBuildFile; fileRef = D3D7CBA622A85D4B00E6181A /* .gitignore */; };
D3D7CBAD22A85D4B00E6181A /* sokol.m in Sources */ = {isa = PBXBuildFile; fileRef = D3D7CBA722A85D4B00E6181A /* sokol.m */; settings = {COMPILER_FLAGS = "-fobjc-arc"; }; };
D3DFB55D1613765700162F19 /* Sticky.c in Sources */ = {isa = PBXBuildFile; fileRef = D3DFB55C1613765700162F19 /* Sticky.c */; };
D3E4867613175AE000A00840 /* Bench.c in Sources */ = {isa = PBXBuildFile; fileRef = D3E4867513175AE000A00840 /* Bench.c */; };
D3E4A9C80E99683200EE08BA /* cpSlideJoint.c in Sources */ = {isa = PBXBuildFile; fileRef = D3800EA60E98260200A3D7FA /* cpSlideJoint.c */; };
D3E4A9CA0E99683200EE08BA /* cpPivotJoint.c in Sources */ = {isa = PBXBuildFile; fileRef = D3800EA40E98260200A3D7FA /* cpPivotJoint.c */; };
D3E4A9CC0E99683200EE08BA /* cpGrooveJoint.c in Sources */ = {isa = PBXBuildFile; fileRef = D3800EA00E98260200A3D7FA /* cpGrooveJoint.c */; };
D3E5F0560AA3303F004E361B /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D3E5F0540AA3303F004E361B /* OpenGL.framework */; };
D3E76CFC17BFE2340068C3C3 /* ChipmunkDemoTextSupport.c in Sources */ = {isa = PBXBuildFile; fileRef = D3E76CFB17BFDD930068C3C3 /* ChipmunkDemoTextSupport.c */; };
D3F18B491A5DDC8B005BED54 /* ChipmunkAutoGeometry.m in Sources */ = {isa = PBXBuildFile; fileRef = D3F18B451A5DDC8B005BED54 /* ChipmunkAutoGeometry.m */; };
D3F18B4A1A5DDC8B005BED54 /* ChipmunkAutoGeometry.m in Sources */ = {isa = PBXBuildFile; fileRef = D3F18B451A5DDC8B005BED54 /* ChipmunkAutoGeometry.m */; };
D3F18B4B1A5DDC8B005BED54 /* ChipmunkImageSampler.m in Sources */ = {isa = PBXBuildFile; fileRef = D3F18B461A5DDC8B005BED54 /* ChipmunkImageSampler.m */; };
D3F18B4C1A5DDC8B005BED54 /* ChipmunkImageSampler.m in Sources */ = {isa = PBXBuildFile; fileRef = D3F18B461A5DDC8B005BED54 /* ChipmunkImageSampler.m */; };
D3F18B4D1A5DDC8B005BED54 /* ChipmunkPointCloudSampler.m in Sources */ = {isa = PBXBuildFile; fileRef = D3F18B471A5DDC8B005BED54 /* ChipmunkPointCloudSampler.m */; };
D3F18B4E1A5DDC8B005BED54 /* ChipmunkPointCloudSampler.m in Sources */ = {isa = PBXBuildFile; fileRef = D3F18B471A5DDC8B005BED54 /* ChipmunkPointCloudSampler.m */; };
D3F18B4F1A5DDC8B005BED54 /* ChipmunkTileCache.m in Sources */ = {isa = PBXBuildFile; fileRef = D3F18B481A5DDC8B005BED54 /* ChipmunkTileCache.m */; };
D3F18B501A5DDC8B005BED54 /* ChipmunkTileCache.m in Sources */ = {isa = PBXBuildFile; fileRef = D3F18B481A5DDC8B005BED54 /* ChipmunkTileCache.m */; };
D3F2EE2F14F898E9005FD439 /* Unicycle.c in Sources */ = {isa = PBXBuildFile; fileRef = D3F2EE2E14F898E9005FD439 /* Unicycle.c */; };
D3F441E81B3B177B00C881DD /* cpRobust.c in Sources */ = {isa = PBXBuildFile; fileRef = D3F441E71B3B177B00C881DD /* cpRobust.c */; settings = {COMPILER_FLAGS = "-fno-fast-math"; }; };
D3F441E91B3B177B00C881DD /* cpRobust.c in Sources */ = {isa = PBXBuildFile; fileRef = D3F441E71B3B177B00C881DD /* cpRobust.c */; settings = {COMPILER_FLAGS = "-fno-fast-math"; }; };
D3F441EB1B3B17C900C881DD /* cpRobust.h in Headers */ = {isa = PBXBuildFile; fileRef = D3F441EA1B3B17C900C881DD /* cpRobust.h */; };
D3F441EC1B3B17C900C881DD /* cpRobust.h in Headers */ = {isa = PBXBuildFile; fileRef = D3F441EA1B3B17C900C881DD /* cpRobust.h */; };
D3F52BD313C509DC00EB67D9 /* Chains.c in Sources */ = {isa = PBXBuildFile; fileRef = D3F52BD213C509DC00EB67D9 /* Chains.c */; };
D3F6EEDF156D581300A158A8 /* Convex.c in Sources */ = {isa = PBXBuildFile; fileRef = D3F6EEDE156D581300A158A8 /* Convex.c */; };
D3FBA1A70E9B1E0400950BCC /* ChipmunkDebugDraw.c in Sources */ = {isa = PBXBuildFile; fileRef = D3FBA1A60E9B1E0400950BCC /* ChipmunkDebugDraw.c */; };
FF80DCD31CA9C68500C44647 /* cpRobust.h in Headers */ = {isa = PBXBuildFile; fileRef = D3F441EA1B3B17C900C881DD /* cpRobust.h */; };
FF80DCD41CA9C68500C44647 /* cpSpatialIndex.h in Headers */ = {isa = PBXBuildFile; fileRef = D3AA477A12AF0F9B00E27AAB /* cpSpatialIndex.h */; };
FF80DCD51CA9C68500C44647 /* cpMarch.h in Headers */ = {isa = PBXBuildFile; fileRef = D3172C701A5DDFC2004D09F7 /* cpMarch.h */; };
FF80DCD61CA9C68500C44647 /* cpHastySpace.h in Headers */ = {isa = PBXBuildFile; fileRef = D3172C6F1A5DDFC2004D09F7 /* cpHastySpace.h */; };
FF80DCD71CA9C68500C44647 /* cpPolyline.h in Headers */ = {isa = PBXBuildFile; fileRef = D3172C711A5DDFC2004D09F7 /* cpPolyline.h */; };
FF80DCD81CA9C68500C44647 /* cpTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = D38825E517EB945E00663730 /* cpTransform.h */; };
FF80DCDA1CA9C68500C44647 /* cpSpaceQuery.c in Sources */ = {isa = PBXBuildFile; fileRef = D34E9E6412558081002C0FE5 /* cpSpaceQuery.c */; };
FF80DCDB1CA9C68500C44647 /* cpConstraint.c in Sources */ = {isa = PBXBuildFile; fileRef = D3800E100E9815FC00A3D7FA /* cpConstraint.c */; };
FF80DCDC1CA9C68500C44647 /* cpPinJoint.c in Sources */ = {isa = PBXBuildFile; fileRef = D3800E1B0E98176F00A3D7FA /* cpPinJoint.c */; };
FF80DCDD1CA9C68500C44647 /* cpSlideJoint.c in Sources */ = {isa = PBXBuildFile; fileRef = D3800EA60E98260200A3D7FA /* cpSlideJoint.c */; };
FF80DCDE1CA9C68500C44647 /* cpPivotJoint.c in Sources */ = {isa = PBXBuildFile; fileRef = D3800EA40E98260200A3D7FA /* cpPivotJoint.c */; };
FF80DCDF1CA9C68500C44647 /* cpGrooveJoint.c in Sources */ = {isa = PBXBuildFile; fileRef = D3800EA00E98260200A3D7FA /* cpGrooveJoint.c */; };
FF80DCE01CA9C68500C44647 /* cpDampedSpring.c in Sources */ = {isa = PBXBuildFile; fileRef = D380115F0E984FA400A3D7FA /* cpDampedSpring.c */; };
FF80DCE11CA9C68500C44647 /* chipmunk.c in Sources */ = {isa = PBXBuildFile; fileRef = D3B718E00AB2BC8900B500C9 /* chipmunk.c */; };
FF80DCE21CA9C68500C44647 /* cpHastySpace.c in Sources */ = {isa = PBXBuildFile; fileRef = D3172C651A5DDF8C004D09F7 /* cpHastySpace.c */; };
FF80DCE31CA9C68500C44647 /* cpArray.c in Sources */ = {isa = PBXBuildFile; fileRef = D3E5F2DD0AAA562B004E361B /* cpArray.c */; };
FF80DCE41CA9C68500C44647 /* cpHashSet.c in Sources */ = {isa = PBXBuildFile; fileRef = D30CE25D0B52535500427129 /* cpHashSet.c */; };
FF80DCE51CA9C68500C44647 /* cpPolyline.c in Sources */ = {isa = PBXBuildFile; fileRef = D3172C671A5DDF8C004D09F7 /* cpPolyline.c */; };
FF80DCE61CA9C68500C44647 /* cpBody.c in Sources */ = {isa = PBXBuildFile; fileRef = D3E5F0DE0AAA2273004E361B /* cpBody.c */; };
FF80DCE71CA9C68500C44647 /* cpRobust.c in Sources */ = {isa = PBXBuildFile; fileRef = D3F441E71B3B177B00C881DD /* cpRobust.c */; settings = {COMPILER_FLAGS = "-fno-fast-math"; }; };
FF80DCE81CA9C68500C44647 /* cpMarch.c in Sources */ = {isa = PBXBuildFile; fileRef = D3172C661A5DDF8C004D09F7 /* cpMarch.c */; };
FF80DCE91CA9C68500C44647 /* cpSpaceHash.c in Sources */ = {isa = PBXBuildFile; fileRef = D3E5F2DF0AAA562B004E361B /* cpSpaceHash.c */; };
FF80DCEA1CA9C68500C44647 /* cpArbiter.c in Sources */ = {isa = PBXBuildFile; fileRef = D3E5F0C20AA75CA9004E361B /* cpArbiter.c */; };
FF80DCEB1CA9C68500C44647 /* cpPolyShape.c in Sources */ = {isa = PBXBuildFile; fileRef = D3BC99AB0AB381AF0025A2C0 /* cpPolyShape.c */; };
FF80DCEC1CA9C68500C44647 /* cpShape.c in Sources */ = {isa = PBXBuildFile; fileRef = D37E22FD0AAA63B800BB4C50 /* cpShape.c */; };
FF80DCED1CA9C68500C44647 /* cpCollision.c in Sources */ = {isa = PBXBuildFile; fileRef = D37E231F0AAA728A00BB4C50 /* cpCollision.c */; };
FF80DCEE1CA9C68500C44647 /* cpSpace.c in Sources */ = {isa = PBXBuildFile; fileRef = D3E5F2CF0AAA5589004E361B /* cpSpace.c */; };
FF80DCEF1CA9C68500C44647 /* cpDampedRotarySpring.c in Sources */ = {isa = PBXBuildFile; fileRef = D36B192D0EA1364E0028A362 /* cpDampedRotarySpring.c */; };
FF80DCF01CA9C68500C44647 /* cpRotaryLimitJoint.c in Sources */ = {isa = PBXBuildFile; fileRef = D37BB76C0EAADA6300C70958 /* cpRotaryLimitJoint.c */; };
FF80DCF11CA9C68500C44647 /* cpSpaceDebug.c in Sources */ = {isa = PBXBuildFile; fileRef = D3A96F7A17E9F86900658436 /* cpSpaceDebug.c */; };
FF80DCF21CA9C68500C44647 /* cpGearJoint.c in Sources */ = {isa = PBXBuildFile; fileRef = D37BB8B10EAB01E400C70958 /* cpGearJoint.c */; };
FF80DCF31CA9C68500C44647 /* cpSimpleMotor.c in Sources */ = {isa = PBXBuildFile; fileRef = D37BB8F00EAB06B600C70958 /* cpSimpleMotor.c */; };
FF80DCF41CA9C68500C44647 /* cpRatchetJoint.c in Sources */ = {isa = PBXBuildFile; fileRef = D36D87811012D63600DB5078 /* cpRatchetJoint.c */; };
FF80DCF51CA9C68500C44647 /* cpSpaceComponent.c in Sources */ = {isa = PBXBuildFile; fileRef = D34E9E96125581DD002C0FE5 /* cpSpaceComponent.c */; };
FF80DCF61CA9C68500C44647 /* cpSpaceStep.c in Sources */ = {isa = PBXBuildFile; fileRef = D34E9EA212558A7C002C0FE5 /* cpSpaceStep.c */; };
FF80DCF71CA9C68500C44647 /* cpBBTree.c in Sources */ = {isa = PBXBuildFile; fileRef = D3AA477312AF0F8900E27AAB /* cpBBTree.c */; };
FF80DCF81CA9C68500C44647 /* cpSpatialIndex.c in Sources */ = {isa = PBXBuildFile; fileRef = D3AA477412AF0F8900E27AAB /* cpSpatialIndex.c */; };
FF80DCF91CA9C68500C44647 /* cpSweep1D.c in Sources */ = {isa = PBXBuildFile; fileRef = D317246513280FC900752CBE /* cpSweep1D.c */; };
FF80DD171CA9C90100C44647 /* ChipmunkBody.m in Sources */ = {isa = PBXBuildFile; fileRef = D309B24617EFFF9E00AA52C8 /* ChipmunkBody.m */; };
FF80DD181CA9C90100C44647 /* ChipmunkShape.m in Sources */ = {isa = PBXBuildFile; fileRef = D309B24A17EFFF9E00AA52C8 /* ChipmunkShape.m */; };
FF80DD191CA9C90100C44647 /* ChipmunkPointCloudSampler.m in Sources */ = {isa = PBXBuildFile; fileRef = D3F18B471A5DDC8B005BED54 /* ChipmunkPointCloudSampler.m */; };
FF80DD1A1CA9C90100C44647 /* ChipmunkTileCache.m in Sources */ = {isa = PBXBuildFile; fileRef = D3F18B481A5DDC8B005BED54 /* ChipmunkTileCache.m */; };
FF80DD1B1CA9C90100C44647 /* ChipmunkImageSampler.m in Sources */ = {isa = PBXBuildFile; fileRef = D3F18B461A5DDC8B005BED54 /* ChipmunkImageSampler.m */; };
FF80DD1C1CA9C90100C44647 /* ChipmunkConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = D309B24717EFFF9E00AA52C8 /* ChipmunkConstraint.m */; };
FF80DD1D1CA9C90100C44647 /* ChipmunkAutoGeometry.m in Sources */ = {isa = PBXBuildFile; fileRef = D3F18B451A5DDC8B005BED54 /* ChipmunkAutoGeometry.m */; };
FF80DD1E1CA9C90100C44647 /* ChipmunkMultiGrab.m in Sources */ = {isa = PBXBuildFile; fileRef = D309B24817EFFF9E00AA52C8 /* ChipmunkMultiGrab.m */; };
FF80DD1F1CA9C90100C44647 /* ChipmunkSpace.m in Sources */ = {isa = PBXBuildFile; fileRef = D309B24B17EFFF9E00AA52C8 /* ChipmunkSpace.m */; };
FF80DD291CA9C98200C44647 /* libChipmunk-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FF80DCFE1CA9C68500C44647 /* libChipmunk-tvOS.a */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
D309B22417EFE2EF00AA52C8 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D3E5F0190AA32EAC004E361B /* Project object */;
proxyType = 1;
remoteGlobalIDString = D309B21217EFE2EF00AA52C8;
remoteInfo = ObjectiveChipmunk;
};
D309B23B17EFFDE800AA52C8 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D3E5F0190AA32EAC004E361B /* Project object */;
proxyType = 1;
remoteGlobalIDString = D3C3787911063B1B003EF1D9;
remoteInfo = "ChipmunkStatic-iPhone";
};
D38687D10BAFC688008B7008 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D3E5F0190AA32EAC004E361B /* Project object */;
proxyType = 1;
remoteGlobalIDString = D34963BA0B56CAA300CAD239;
remoteInfo = ChipmunkStatic;
};
D389413418639EA000725CFC /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D3E5F0190AA32EAC004E361B /* Project object */;
proxyType = 1;
remoteGlobalIDString = D34963BA0B56CAA300CAD239;
remoteInfo = ChipmunkStatic;
};
D39ECDB617ED724000319DBA /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D3E5F0190AA32EAC004E361B /* Project object */;
proxyType = 1;
remoteGlobalIDString = D3C3787911063B1B003EF1D9;
remoteInfo = "ChipmunkStatic-iPhone";
};
FF80DD271CA9C97A00C44647 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D3E5F0190AA32EAC004E361B /* Project object */;
proxyType = 1;
remoteGlobalIDString = FF80DCD11CA9C68500C44647;
remoteInfo = "Chipmunk-tvOS";
};
/* End PBXContainerItemProxy section */
/* Begin PBXCopyFilesBuildPhase section */
D309B21117EFE2EF00AA52C8 /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "include/$(PRODUCT_NAME)";
dstSubfolderSpec = 16;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
D333C5EC18639A0500BBC4FF /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "include/$(PRODUCT_NAME)";
dstSubfolderSpec = 16;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
FF80DD221CA9C90100C44647 /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "include/$(PRODUCT_NAME)";
dstSubfolderSpec = 16;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
D309B21317EFE2EF00AA52C8 /* libObjectiveChipmunk-iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libObjectiveChipmunk-iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
D309B22017EFE2EF00AA52C8 /* ObjectiveChipmunkTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ObjectiveChipmunkTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
D309B22917EFE2EF00AA52C8 /* ObjectiveChipmunkTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "ObjectiveChipmunkTests-Info.plist"; sourceTree = "<group>"; };
D309B22B17EFE2EF00AA52C8 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
D309B23E17EFFF8700AA52C8 /* ChipmunkBody.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ChipmunkBody.h; path = ../objectivec/include/ObjectiveChipmunk/ChipmunkBody.h; sourceTree = "<group>"; };
D309B23F17EFFF8700AA52C8 /* ChipmunkConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ChipmunkConstraint.h; path = ../objectivec/include/ObjectiveChipmunk/ChipmunkConstraint.h; sourceTree = "<group>"; };
D309B24117EFFF8700AA52C8 /* ChipmunkMultiGrab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ChipmunkMultiGrab.h; path = ../objectivec/include/ObjectiveChipmunk/ChipmunkMultiGrab.h; sourceTree = "<group>"; };
D309B24317EFFF8700AA52C8 /* ChipmunkShape.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ChipmunkShape.h; path = ../objectivec/include/ObjectiveChipmunk/ChipmunkShape.h; sourceTree = "<group>"; };
D309B24417EFFF8700AA52C8 /* ChipmunkSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ChipmunkSpace.h; path = ../objectivec/include/ObjectiveChipmunk/ChipmunkSpace.h; sourceTree = "<group>"; };
D309B24517EFFF8700AA52C8 /* ObjectiveChipmunk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ObjectiveChipmunk.h; path = ../objectivec/include/ObjectiveChipmunk/ObjectiveChipmunk.h; sourceTree = "<group>"; };
D309B24617EFFF9E00AA52C8 /* ChipmunkBody.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ChipmunkBody.m; path = ../objectivec/src/ChipmunkBody.m; sourceTree = "<group>"; };
D309B24717EFFF9E00AA52C8 /* ChipmunkConstraint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ChipmunkConstraint.m; path = ../objectivec/src/ChipmunkConstraint.m; sourceTree = "<group>"; };
D309B24817EFFF9E00AA52C8 /* ChipmunkMultiGrab.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ChipmunkMultiGrab.m; path = ../objectivec/src/ChipmunkMultiGrab.m; sourceTree = "<group>"; };
D309B24A17EFFF9E00AA52C8 /* ChipmunkShape.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ChipmunkShape.m; path = ../objectivec/src/ChipmunkShape.m; sourceTree = "<group>"; };
D309B24B17EFFF9E00AA52C8 /* ChipmunkSpace.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ChipmunkSpace.m; path = ../objectivec/src/ChipmunkSpace.m; sourceTree = "<group>"; };
D309B25217F003FD00AA52C8 /* BodyTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BodyTest.m; sourceTree = "<group>"; };
D309B25317F003FD00AA52C8 /* CallbacksTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CallbacksTest.m; sourceTree = "<group>"; };
D309B25417F003FD00AA52C8 /* ConvexTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ConvexTest.m; sourceTree = "<group>"; };
D309B25617F003FD00AA52C8 /* MemoryTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MemoryTest.m; sourceTree = "<group>"; };
D309B25717F003FD00AA52C8 /* MiscTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MiscTest.m; sourceTree = "<group>"; };
D309B25C17F003FD00AA52C8 /* ShapeTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShapeTest.m; sourceTree = "<group>"; };
D309B25F17F003FD00AA52C8 /* SpaceTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SpaceTest.m; sourceTree = "<group>"; };
D30CE25D0B52535500427129 /* cpHashSet.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = cpHashSet.c; sourceTree = "<group>"; };
D3102B161119FD3000E77771 /* Tank.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Tank.c; sourceTree = "<group>"; };
D31402940E9DD07E00EF79DB /* Springies.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Springies.c; sourceTree = "<group>"; };
D317246513280FC900752CBE /* cpSweep1D.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cpSweep1D.c; sourceTree = "<group>"; };
D3172C651A5DDF8C004D09F7 /* cpHastySpace.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = cpHastySpace.c; path = ../src/cpHastySpace.c; sourceTree = "<group>"; };
D3172C661A5DDF8C004D09F7 /* cpMarch.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = cpMarch.c; path = ../src/cpMarch.c; sourceTree = "<group>"; };
D3172C671A5DDF8C004D09F7 /* cpPolyline.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = cpPolyline.c; path = ../src/cpPolyline.c; sourceTree = "<group>"; };
D3172C6F1A5DDFC2004D09F7 /* cpHastySpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cpHastySpace.h; path = ../include/chipmunk/cpHastySpace.h; sourceTree = "<group>"; };
D3172C701A5DDFC2004D09F7 /* cpMarch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cpMarch.h; path = ../include/chipmunk/cpMarch.h; sourceTree = "<group>"; };
D3172C711A5DDFC2004D09F7 /* cpPolyline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cpPolyline.h; path = ../include/chipmunk/cpPolyline.h; sourceTree = "<group>"; };
D3172C781A5DE0D2004D09F7 /* ImageIO.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ImageIO.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.1.sdk/System/Library/Frameworks/ImageIO.framework; sourceTree = DEVELOPER_DIR; };
D3172C7B1A5DE0FA004D09F7 /* TestImageLA.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TestImageLA.png; sourceTree = "<group>"; };
D3172C7C1A5DE0FA004D09F7 /* TestImageRGB.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TestImageRGB.png; sourceTree = "<group>"; };
D31847740FC458FD00E30B0D /* Query.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Query.c; sourceTree = "<group>"; };
D3185D1F0EC5610A00E6BFCB /* TheoJansen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = TheoJansen.c; sourceTree = "<group>"; };
D3238F8110C1B5ED00C4BDC2 /* Joints.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Joints.c; sourceTree = "<group>"; };
D32E825317D6D1300037966D /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = /System/Library/Frameworks/IOKit.framework; sourceTree = "<absolute>"; };
D333C5F018639A0500BBC4FF /* libObjectiveChipmunk-Mac.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libObjectiveChipmunk-Mac.a"; sourceTree = BUILT_PRODUCTS_DIR; };
D34963BB0B56CAA300CAD239 /* libChipmunk-Mac.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libChipmunk-Mac.a"; sourceTree = BUILT_PRODUCTS_DIR; };
D34E9E6412558081002C0FE5 /* cpSpaceQuery.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = cpSpaceQuery.c; path = ../src/cpSpaceQuery.c; sourceTree = "<group>"; };
D34E9E96125581DD002C0FE5 /* cpSpaceComponent.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = cpSpaceComponent.c; path = ../src/cpSpaceComponent.c; sourceTree = "<group>"; };
D34E9EA212558A7C002C0FE5 /* cpSpaceStep.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = cpSpaceStep.c; path = ../src/cpSpaceStep.c; sourceTree = "<group>"; };
D353B6480B059C5F0038D274 /* prime.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = prime.h; sourceTree = "<group>"; };
D35420BF0F4E1FD70017F4F7 /* chipmunk_unsafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = chipmunk_unsafe.h; path = ../include/chipmunk/chipmunk_unsafe.h; sourceTree = SOURCE_ROOT; };
D36B192D0EA1364E0028A362 /* cpDampedRotarySpring.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cpDampedRotarySpring.c; sourceTree = "<group>"; };
D36B192E0EA1364E0028A362 /* cpDampedRotarySpring.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cpDampedRotarySpring.h; path = ../include/chipmunk/cpDampedRotarySpring.h; sourceTree = "<group>"; };
D36C44DD10F53DEB003D48B5 /* chipmunk_ffi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = chipmunk_ffi.h; path = ../include/chipmunk/chipmunk_ffi.h; sourceTree = SOURCE_ROOT; };
D36D87811012D63600DB5078 /* cpRatchetJoint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cpRatchetJoint.c; sourceTree = "<group>"; };
D36D87821012D63600DB5078 /* cpRatchetJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cpRatchetJoint.h; path = ../include/chipmunk/cpRatchetJoint.h; sourceTree = "<group>"; };
D37282AC13C6432F00FFFA3F /* Crane.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Crane.c; sourceTree = "<group>"; };
D37282D313C76C1B00FFFA3F /* Buoyancy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Buoyancy.c; sourceTree = "<group>"; };
D373FF0F13D0D66E000EDB87 /* ContactGraph.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ContactGraph.c; sourceTree = "<group>"; };
D37BB76C0EAADA6300C70958 /* cpRotaryLimitJoint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cpRotaryLimitJoint.c; sourceTree = "<group>"; };
D37BB76D0EAADA6300C70958 /* cpRotaryLimitJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cpRotaryLimitJoint.h; path = ../include/chipmunk/cpRotaryLimitJoint.h; sourceTree = "<group>"; };
D37BB8B10EAB01E400C70958 /* cpGearJoint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cpGearJoint.c; sourceTree = "<group>"; };
D37BB8B20EAB01E400C70958 /* cpGearJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cpGearJoint.h; path = ../include/chipmunk/cpGearJoint.h; sourceTree = "<group>"; };
D37BB8EF0EAB06B600C70958 /* cpSimpleMotor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cpSimpleMotor.h; path = ../include/chipmunk/cpSimpleMotor.h; sourceTree = "<group>"; };
D37BB8F00EAB06B600C70958 /* cpSimpleMotor.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cpSimpleMotor.c; sourceTree = "<group>"; };
D37E22FC0AAA63B800BB4C50 /* cpShape.h */ = {isa = PBXFileReference; fileEncoding = 4; languageSpecificationIdentifier = c; lastKnownFileType = sourcecode.c.h; name = cpShape.h; path = ../include/chipmunk/cpShape.h; sourceTree = "<group>"; };
D37E22FD0AAA63B800BB4C50 /* cpShape.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cpShape.c; sourceTree = "<group>"; };
D37E231F0AAA728A00BB4C50 /* cpCollision.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cpCollision.c; sourceTree = "<group>"; };
D3800E0F0E9815FC00A3D7FA /* cpConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cpConstraint.h; path = ../include/chipmunk/cpConstraint.h; sourceTree = "<group>"; };
D3800E100E9815FC00A3D7FA /* cpConstraint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cpConstraint.c; sourceTree = "<group>"; };
D3800E1B0E98176F00A3D7FA /* cpPinJoint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cpPinJoint.c; sourceTree = "<group>"; };
D3800E1C0E98176F00A3D7FA /* cpPinJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cpPinJoint.h; path = ../include/chipmunk/cpPinJoint.h; sourceTree = "<group>"; };
D3800EA00E98260200A3D7FA /* cpGrooveJoint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cpGrooveJoint.c; sourceTree = "<group>"; };
D3800EA10E98260200A3D7FA /* cpGrooveJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cpGrooveJoint.h; path = ../include/chipmunk/cpGrooveJoint.h; sourceTree = "<group>"; };
D3800EA40E98260200A3D7FA /* cpPivotJoint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cpPivotJoint.c; sourceTree = "<group>"; };
D3800EA50E98260200A3D7FA /* cpPivotJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cpPivotJoint.h; path = ../include/chipmunk/cpPivotJoint.h; sourceTree = "<group>"; };
D3800EA60E98260200A3D7FA /* cpSlideJoint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cpSlideJoint.c; sourceTree = "<group>"; };
D3800EA70E98260200A3D7FA /* cpSlideJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cpSlideJoint.h; path = ../include/chipmunk/cpSlideJoint.h; sourceTree = "<group>"; };
D380115F0E984FA400A3D7FA /* cpDampedSpring.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cpDampedSpring.c; sourceTree = "<group>"; };
D38011600E984FA400A3D7FA /* cpDampedSpring.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cpDampedSpring.h; path = ../include/chipmunk/cpDampedSpring.h; sourceTree = "<group>"; };
D38825E517EB945E00663730 /* cpTransform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cpTransform.h; path = ../include/chipmunk/cpTransform.h; sourceTree = "<group>"; };
D38996A5148B1E72006CFE0B /* Slice.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Slice.c; sourceTree = "<group>"; };
D38BB1D1149933F20000EC41 /* chipmunk-docs.textile */ = {isa = PBXFileReference; lastKnownFileType = text; name = "chipmunk-docs.textile"; path = "../doc-src/chipmunk-docs.textile"; sourceTree = "<group>"; };
D38C029816840ED2009F612B /* Shatter.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Shatter.c; sourceTree = "<group>"; };
D390FDAD146EF0F8005D1E06 /* VERSION.txt */ = {isa = PBXFileReference; lastKnownFileType = text; name = VERSION.txt; path = ../VERSION.txt; sourceTree = "<group>"; };
D393275B0EA02C710026F6A2 /* Pump.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Pump.c; sourceTree = "<group>"; };
D39ECD8617ED70D900319DBA /* Benchmark iPhone.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Benchmark iPhone.app"; sourceTree = BUILT_PRODUCTS_DIR; };
D39ECD8817ED70D900319DBA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
D39ECD8A17ED70D900319DBA /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
D39ECD8C17ED70D900319DBA /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };
D39ECD9017ED70D900319DBA /* Benchmark-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Benchmark-Info.plist"; sourceTree = "<group>"; };
D39ECD9417ED70D900319DBA /* iPhoneBenchmarkMain.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = iPhoneBenchmarkMain.m; sourceTree = "<group>"; };
D39ECDA117ED70D900319DBA /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
D39F478A0FD4AB4E00B244CA /* chipmunk_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = chipmunk_types.h; path = ../include/chipmunk/chipmunk_types.h; sourceTree = SOURCE_ROOT; };
D3A96F7A17E9F86900658436 /* cpSpaceDebug.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = cpSpaceDebug.c; path = ../src/cpSpaceDebug.c; sourceTree = "<group>"; };
D3AA477312AF0F8900E27AAB /* cpBBTree.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cpBBTree.c; sourceTree = "<group>"; };
D3AA477412AF0F8900E27AAB /* cpSpatialIndex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cpSpatialIndex.c; sourceTree = "<group>"; };
D3AA477A12AF0F9B00E27AAB /* cpSpatialIndex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cpSpatialIndex.h; path = ../include/chipmunk/cpSpatialIndex.h; sourceTree = SOURCE_ROOT; };
D3B718E00AB2BC8900B500C9 /* chipmunk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = chipmunk.c; path = ../src/chipmunk.c; sourceTree = "<group>"; };
D3BACF8210B5DF8900376394 /* OneWay.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = OneWay.c; sourceTree = "<group>"; };
D3BAD0C710B61AAD00376394 /* Player.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Player.c; sourceTree = "<group>"; };
D3BAF9C40E9C4F250039DD5C /* PyramidStack.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PyramidStack.c; sourceTree = "<group>"; };
D3BAFA030E9C52810039DD5C /* Plink.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Plink.c; sourceTree = "<group>"; };
D3BAFA350E9C53E50039DD5C /* Tumble.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Tumble.c; sourceTree = "<group>"; };
D3BAFA500E9C549C0039DD5C /* PyramidTopple.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PyramidTopple.c; sourceTree = "<group>"; };
D3BAFB8A0E9C7C150039DD5C /* Planet.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Planet.c; sourceTree = "<group>"; };
D3BC99AB0AB381AF0025A2C0 /* cpPolyShape.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = cpPolyShape.c; sourceTree = "<group>"; };
D3BC99AC0AB381AF0025A2C0 /* cpPolyShape.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = cpPolyShape.h; path = ../include/chipmunk/cpPolyShape.h; sourceTree = "<group>"; };
D3BC99C00AB381EE0025A2C0 /* ChipmunkDemo.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = ChipmunkDemo.c; sourceTree = "<group>"; };
D3C2B4581282178B0080A718 /* chipmunk_private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = chipmunk_private.h; path = ../include/chipmunk/chipmunk_private.h; sourceTree = "<group>"; };
D3C3787A11063B1B003EF1D9 /* libChipmunk-iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libChipmunk-iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
D3C517841279B38300C2AFEB /* TODO.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = TODO.txt; path = ../TODO.txt; sourceTree = SOURCE_ROOT; };
D3CCDF460AE35D920080442F /* LogoSmash.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = LogoSmash.c; sourceTree = "<group>"; };
D3CCEAE60E9B346100161D40 /* ChipmunkDemo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChipmunkDemo.h; sourceTree = "<group>"; };
D3D7CB9F22A85D4B00E6181A /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
D3D7CBA022A85D4B00E6181A /* fips.yml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = fips.yml; sourceTree = "<group>"; };
D3D7CBA122A85D4B00E6181A /* sokol_gfx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sokol_gfx.h; sourceTree = "<group>"; };
D3D7CBA222A85D4B00E6181A /* sokol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sokol.h; sourceTree = "<group>"; };
D3D7CBA322A85D4B00E6181A /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
D3D7CBA422A85D4B00E6181A /* sokol_app.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sokol_app.h; sourceTree = "<group>"; };
D3D7CBA522A85D4B00E6181A /* sokol_time.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sokol_time.h; sourceTree = "<group>"; };
D3D7CBA622A85D4B00E6181A /* .gitignore */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = .gitignore; sourceTree = "<group>"; };
D3D7CBA722A85D4B00E6181A /* sokol.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = sokol.m; sourceTree = "<group>"; };
D3DFB55C1613765700162F19 /* Sticky.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Sticky.c; sourceTree = "<group>"; };
D3E4867513175AE000A00840 /* Bench.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Bench.c; sourceTree = "<group>"; };
D3E5F0270AA32F16004E361B /* cpVect.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = cpVect.h; path = ../include/chipmunk/cpVect.h; sourceTree = "<group>"; };
D3E5F0490AA32FDE004E361B /* ChipmunkDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ChipmunkDemo.app; sourceTree = BUILT_PRODUCTS_DIR; };
D3E5F04C0AA32FDE004E361B /* main-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "main-Info.plist"; sourceTree = "<group>"; };
D3E5F0540AA3303F004E361B /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = /System/Library/Frameworks/OpenGL.framework; sourceTree = "<absolute>"; };
D3E5F0C10AA75CA9004E361B /* cpArbiter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cpArbiter.h; path = ../include/chipmunk/cpArbiter.h; sourceTree = "<group>"; };
D3E5F0C20AA75CA9004E361B /* cpArbiter.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cpArbiter.c; sourceTree = "<group>"; };
D3E5F0C40AA75CC3004E361B /* chipmunk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = chipmunk.h; path = ../include/chipmunk/chipmunk.h; sourceTree = "<group>"; };
D3E5F0DD0AAA2273004E361B /* cpBody.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cpBody.h; path = ../include/chipmunk/cpBody.h; sourceTree = "<group>"; };
D3E5F0DE0AAA2273004E361B /* cpBody.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = cpBody.c; path = ../src/cpBody.c; sourceTree = "<group>"; };
D3E5F2CE0AAA5589004E361B /* cpSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cpSpace.h; path = ../include/chipmunk/cpSpace.h; sourceTree = "<group>"; };
D3E5F2CF0AAA5589004E361B /* cpSpace.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = cpSpace.c; path = ../src/cpSpace.c; sourceTree = "<group>"; };
D3E5F2D90AAA5622004E361B /* cpBB.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = cpBB.h; path = ../include/chipmunk/cpBB.h; sourceTree = "<group>"; };
D3E5F2DD0AAA562B004E361B /* cpArray.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = cpArray.c; sourceTree = "<group>"; };
D3E5F2DF0AAA562B004E361B /* cpSpaceHash.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = cpSpaceHash.c; sourceTree = "<group>"; };
D3E76CFA17BFDD820068C3C3 /* ChipmunkDemoTextSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChipmunkDemoTextSupport.h; sourceTree = "<group>"; };
D3E76CFB17BFDD930068C3C3 /* ChipmunkDemoTextSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ChipmunkDemoTextSupport.c; sourceTree = "<group>"; };
D3E76CFE17C007E70068C3C3 /* VeraMoBd.ttf_sdf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VeraMoBd.ttf_sdf.h; sourceTree = "<group>"; };
D3F18B451A5DDC8B005BED54 /* ChipmunkAutoGeometry.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ChipmunkAutoGeometry.m; path = ../objectivec/src/ChipmunkAutoGeometry.m; sourceTree = "<group>"; };
D3F18B461A5DDC8B005BED54 /* ChipmunkImageSampler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ChipmunkImageSampler.m; path = ../objectivec/src/ChipmunkImageSampler.m; sourceTree = "<group>"; };
D3F18B471A5DDC8B005BED54 /* ChipmunkPointCloudSampler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ChipmunkPointCloudSampler.m; path = ../objectivec/src/ChipmunkPointCloudSampler.m; sourceTree = "<group>"; };
D3F18B481A5DDC8B005BED54 /* ChipmunkTileCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ChipmunkTileCache.m; path = ../objectivec/src/ChipmunkTileCache.m; sourceTree = "<group>"; };
D3F18B511A5DDCA5005BED54 /* ChipmunkAutoGeometry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ChipmunkAutoGeometry.h; path = ../objectivec/include/ObjectiveChipmunk/ChipmunkAutoGeometry.h; sourceTree = "<group>"; };
D3F18B531A5DDCA5005BED54 /* ChipmunkImageSampler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ChipmunkImageSampler.h; path = ../objectivec/include/ObjectiveChipmunk/ChipmunkImageSampler.h; sourceTree = "<group>"; };
D3F18B541A5DDCA5005BED54 /* ChipmunkPointCloudSampler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ChipmunkPointCloudSampler.h; path = ../objectivec/include/ObjectiveChipmunk/ChipmunkPointCloudSampler.h; sourceTree = "<group>"; };
D3F18B551A5DDCA5005BED54 /* ChipmunkTileCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ChipmunkTileCache.h; path = ../objectivec/include/ObjectiveChipmunk/ChipmunkTileCache.h; sourceTree = "<group>"; };
D3F2EE2E14F898E9005FD439 /* Unicycle.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Unicycle.c; sourceTree = "<group>"; };
D3F441E71B3B177B00C881DD /* cpRobust.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cpRobust.c; sourceTree = "<group>"; };
D3F441EA1B3B17C900C881DD /* cpRobust.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cpRobust.h; path = ../include/chipmunk/cpRobust.h; sourceTree = "<group>"; };
D3F52BD213C509DC00EB67D9 /* Chains.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Chains.c; sourceTree = "<group>"; };
D3F6EEDE156D581300A158A8 /* Convex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Convex.c; sourceTree = "<group>"; };
D3F74B131BE154FA00E41DA0 /* chipmunk_structs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = chipmunk_structs.h; path = ../include/chipmunk/chipmunk_structs.h; sourceTree = "<group>"; };
D3FBA1A60E9B1E0400950BCC /* ChipmunkDebugDraw.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ChipmunkDebugDraw.c; sourceTree = "<group>"; };
D3FBA1B80E9B1F6300950BCC /* ChipmunkDebugDraw.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChipmunkDebugDraw.h; sourceTree = "<group>"; };
FF80DCFE1CA9C68500C44647 /* libChipmunk-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libChipmunk-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
FF80DD261CA9C90100C44647 /* libObjectiveChipmunk-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libObjectiveChipmunk-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
D309B21017EFE2EF00AA52C8 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
D309B23D17EFFE2000AA52C8 /* libChipmunk-iOS.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
D309B21D17EFE2EF00AA52C8 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
D3172C7A1A5DE0E5004D09F7 /* ImageIO.framework in Frameworks */,
D309B26D17F00B3B00AA52C8 /* libObjectiveChipmunk-iOS.a in Frameworks */,
D309B22117EFE2EF00AA52C8 /* XCTest.framework in Frameworks */,
D309B22317EFE2EF00AA52C8 /* UIKit.framework in Frameworks */,
D309B22217EFE2EF00AA52C8 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
D333C5EA18639A0500BBC4FF /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
D389413318639E9700725CFC /* libChipmunk-Mac.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
D34963B90B56CAA300CAD239 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
D39ECD8317ED70D900319DBA /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
D39ECDB817ED724600319DBA /* libChipmunk-iOS.a in Frameworks */,
D39ECD8B17ED70D900319DBA /* CoreGraphics.framework in Frameworks */,
D39ECD8D17ED70D900319DBA /* UIKit.framework in Frameworks */,
D39ECD8917ED70D900319DBA /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
D3C3787811063B1B003EF1D9 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
D3E5F0470AA32FDE004E361B /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
D32E825417D6D1300037966D /* IOKit.framework in Frameworks */,
D38687D30BAFC695008B7008 /* libChipmunk-Mac.a in Frameworks */,
D3E5F0560AA3303F004E361B /* OpenGL.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
FF80DCFA1CA9C68500C44647 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
FF80DD201CA9C90100C44647 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
FF80DD291CA9C98200C44647 /* libChipmunk-tvOS.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
D309B1FA17EFDF8800AA52C8 /* ObjectiveChipmunk */ = {
isa = PBXGroup;
children = (
D309B24517EFFF8700AA52C8 /* ObjectiveChipmunk.h */,
D309B23E17EFFF8700AA52C8 /* ChipmunkBody.h */,
D309B24617EFFF9E00AA52C8 /* ChipmunkBody.m */,
D309B24317EFFF8700AA52C8 /* ChipmunkShape.h */,
D309B24A17EFFF9E00AA52C8 /* ChipmunkShape.m */,
D309B23F17EFFF8700AA52C8 /* ChipmunkConstraint.h */,
D309B24717EFFF9E00AA52C8 /* ChipmunkConstraint.m */,
D309B24417EFFF8700AA52C8 /* ChipmunkSpace.h */,
D309B24B17EFFF9E00AA52C8 /* ChipmunkSpace.m */,
D309B24117EFFF8700AA52C8 /* ChipmunkMultiGrab.h */,
D309B24817EFFF9E00AA52C8 /* ChipmunkMultiGrab.m */,
D3F18B511A5DDCA5005BED54 /* ChipmunkAutoGeometry.h */,
D3F18B451A5DDC8B005BED54 /* ChipmunkAutoGeometry.m */,
D3F18B531A5DDCA5005BED54 /* ChipmunkImageSampler.h */,
D3F18B461A5DDC8B005BED54 /* ChipmunkImageSampler.m */,
D3F18B541A5DDCA5005BED54 /* ChipmunkPointCloudSampler.h */,
D3F18B471A5DDC8B005BED54 /* ChipmunkPointCloudSampler.m */,
D3F18B551A5DDCA5005BED54 /* ChipmunkTileCache.h */,
D3F18B481A5DDC8B005BED54 /* ChipmunkTileCache.m */,
);
name = ObjectiveChipmunk;
sourceTree = "<group>";
};
D309B22717EFE2EF00AA52C8 /* ObjectiveChipmunkTests */ = {
isa = PBXGroup;
children = (
D309B25217F003FD00AA52C8 /* BodyTest.m */,
D309B25C17F003FD00AA52C8 /* ShapeTest.m */,
D309B25417F003FD00AA52C8 /* ConvexTest.m */,
D309B25F17F003FD00AA52C8 /* SpaceTest.m */,
D309B25317F003FD00AA52C8 /* CallbacksTest.m */,
D309B25617F003FD00AA52C8 /* MemoryTest.m */,
D309B25717F003FD00AA52C8 /* MiscTest.m */,
D309B22817EFE2EF00AA52C8 /* Supporting Files */,
);
path = ObjectiveChipmunkTests;
sourceTree = "<group>";
};
D309B22817EFE2EF00AA52C8 /* Supporting Files */ = {
isa = PBXGroup;
children = (
D3172C7B1A5DE0FA004D09F7 /* TestImageLA.png */,
D3172C7C1A5DE0FA004D09F7 /* TestImageRGB.png */,
D309B22917EFE2EF00AA52C8 /* ObjectiveChipmunkTests-Info.plist */,
D309B22A17EFE2EF00AA52C8 /* InfoPlist.strings */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
D3172C6E1A5DDFA1004D09F7 /* AutoGeometry */ = {
isa = PBXGroup;
children = (
D3172C701A5DDFC2004D09F7 /* cpMarch.h */,
D3172C661A5DDF8C004D09F7 /* cpMarch.c */,
D3172C711A5DDFC2004D09F7 /* cpPolyline.h */,
D3172C671A5DDF8C004D09F7 /* cpPolyline.c */,
);
name = AutoGeometry;
sourceTree = "<group>";
};
D34E9E5A12557FBF002C0FE5 /* Space */ = {
isa = PBXGroup;
children = (
D3E5F2CE0AAA5589004E361B /* cpSpace.h */,
D3E5F2CF0AAA5589004E361B /* cpSpace.c */,
D34E9E6412558081002C0FE5 /* cpSpaceQuery.c */,
D34E9E96125581DD002C0FE5 /* cpSpaceComponent.c */,
D34E9EA212558A7C002C0FE5 /* cpSpaceStep.c */,
D3A96F7A17E9F86900658436 /* cpSpaceDebug.c */,
D3172C6F1A5DDFC2004D09F7 /* cpHastySpace.h */,
D3172C651A5DDF8C004D09F7 /* cpHastySpace.c */,
);
name = Space;
sourceTree = "<group>";
};
D37E24570AAAA48800BB4C50 /* Collision */ = {
isa = PBXGroup;
children = (
D3AA477A12AF0F9B00E27AAB /* cpSpatialIndex.h */,
D3AA477412AF0F8900E27AAB /* cpSpatialIndex.c */,
D3E5F2DF0AAA562B004E361B /* cpSpaceHash.c */,
D3AA477312AF0F8900E27AAB /* cpBBTree.c */,
D317246513280FC900752CBE /* cpSweep1D.c */,
D3E5F0C10AA75CA9004E361B /* cpArbiter.h */,
D3E5F0C20AA75CA9004E361B /* cpArbiter.c */,
D37E22FC0AAA63B800BB4C50 /* cpShape.h */,
D37E22FD0AAA63B800BB4C50 /* cpShape.c */,
D3BC99AC0AB381AF0025A2C0 /* cpPolyShape.h */,
D3BC99AB0AB381AF0025A2C0 /* cpPolyShape.c */,
D37E231F0AAA728A00BB4C50 /* cpCollision.c */,
);
name = Collision;
path = ../src;
sourceTree = "<group>";
};
D3800E0E0E9815FC00A3D7FA /* Constraints */ = {
isa = PBXGroup;
children = (
D3800E0F0E9815FC00A3D7FA /* cpConstraint.h */,
D3800E100E9815FC00A3D7FA /* cpConstraint.c */,
D3800E1C0E98176F00A3D7FA /* cpPinJoint.h */,
D3800E1B0E98176F00A3D7FA /* cpPinJoint.c */,
D3800EA70E98260200A3D7FA /* cpSlideJoint.h */,
D3800EA60E98260200A3D7FA /* cpSlideJoint.c */,
D3800EA50E98260200A3D7FA /* cpPivotJoint.h */,
D3800EA40E98260200A3D7FA /* cpPivotJoint.c */,
D3800EA10E98260200A3D7FA /* cpGrooveJoint.h */,
D3800EA00E98260200A3D7FA /* cpGrooveJoint.c */,
D38011600E984FA400A3D7FA /* cpDampedSpring.h */,
D380115F0E984FA400A3D7FA /* cpDampedSpring.c */,
D36B192E0EA1364E0028A362 /* cpDampedRotarySpring.h */,
D36B192D0EA1364E0028A362 /* cpDampedRotarySpring.c */,
D37BB76D0EAADA6300C70958 /* cpRotaryLimitJoint.h */,
D37BB76C0EAADA6300C70958 /* cpRotaryLimitJoint.c */,
D36D87821012D63600DB5078 /* cpRatchetJoint.h */,
D36D87811012D63600DB5078 /* cpRatchetJoint.c */,
D37BB8B20EAB01E400C70958 /* cpGearJoint.h */,
D37BB8B10EAB01E400C70958 /* cpGearJoint.c */,
D37BB8EF0EAB06B600C70958 /* cpSimpleMotor.h */,
D37BB8F00EAB06B600C70958 /* cpSimpleMotor.c */,
);
name = Constraints;
path = ../src;
sourceTree = SOURCE_ROOT;
};
D39ECD8717ED70D900319DBA /* Frameworks */ = {
isa = PBXGroup;
children = (
D3172C781A5DE0D2004D09F7 /* ImageIO.framework */,
D32E825317D6D1300037966D /* IOKit.framework */,
D3E5F0540AA3303F004E361B /* OpenGL.framework */,
D39ECD8817ED70D900319DBA /* Foundation.framework */,
D39ECD8A17ED70D900319DBA /* CoreGraphics.framework */,
D39ECD8C17ED70D900319DBA /* UIKit.framework */,
D39ECDA117ED70D900319DBA /* XCTest.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
D39ECD8E17ED70D900319DBA /* Benchmark iPhone */ = {
isa = PBXGroup;
children = (
D39ECD9017ED70D900319DBA /* Benchmark-Info.plist */,
D39ECD9417ED70D900319DBA /* iPhoneBenchmarkMain.m */,
);
name = "Benchmark iPhone";
path = Benchmark;
sourceTree = "<group>";
};
D3CCDF5B0AE35DA00080442F /* demo */ = {
isa = PBXGroup;
children = (
D3D7CB9E22A85D4B00E6181A /* sokol */,
D3CCEAE60E9B346100161D40 /* ChipmunkDemo.h */,
D3BC99C00AB381EE0025A2C0 /* ChipmunkDemo.c */,
D3FBA1B80E9B1F6300950BCC /* ChipmunkDebugDraw.h */,
D3FBA1A60E9B1E0400950BCC /* ChipmunkDebugDraw.c */,
D3E76CFA17BFDD820068C3C3 /* ChipmunkDemoTextSupport.h */,
D3E76CFB17BFDD930068C3C3 /* ChipmunkDemoTextSupport.c */,
D3E76CFE17C007E70068C3C3 /* VeraMoBd.ttf_sdf.h */,
D3CCDF460AE35D920080442F /* LogoSmash.c */,
D3BAF9C40E9C4F250039DD5C /* PyramidStack.c */,
D3BAFA030E9C52810039DD5C /* Plink.c */,
D3BAFA350E9C53E50039DD5C /* Tumble.c */,
D3BAFA500E9C549C0039DD5C /* PyramidTopple.c */,
D3BAFB8A0E9C7C150039DD5C /* Planet.c */,
D31402940E9DD07E00EF79DB /* Springies.c */,
D393275B0EA02C710026F6A2 /* Pump.c */,
D3185D1F0EC5610A00E6BFCB /* TheoJansen.c */,
D31847740FC458FD00E30B0D /* Query.c */,
D3BACF8210B5DF8900376394 /* OneWay.c */,
D3BAD0C710B61AAD00376394 /* Player.c */,
D3238F8110C1B5ED00C4BDC2 /* Joints.c */,
D3102B161119FD3000E77771 /* Tank.c */,
D3F52BD213C509DC00EB67D9 /* Chains.c */,
D37282AC13C6432F00FFFA3F /* Crane.c */,
D3F2EE2E14F898E9005FD439 /* Unicycle.c */,
D37282D313C76C1B00FFFA3F /* Buoyancy.c */,
D373FF0F13D0D66E000EDB87 /* ContactGraph.c */,
D38996A5148B1E72006CFE0B /* Slice.c */,
D38C029816840ED2009F612B /* Shatter.c */,
D3F6EEDE156D581300A158A8 /* Convex.c */,
D3DFB55C1613765700162F19 /* Sticky.c */,
D3E4867513175AE000A00840 /* Bench.c */,
);
name = demo;
path = ../demo;
sourceTree = "<group>";
};
D3D7CB9E22A85D4B00E6181A /* sokol */ = {
isa = PBXGroup;
children = (
D3D7CB9F22A85D4B00E6181A /* LICENSE */,
D3D7CBA022A85D4B00E6181A /* fips.yml */,
D3D7CBA122A85D4B00E6181A /* sokol_gfx.h */,
D3D7CBA222A85D4B00E6181A /* sokol.h */,
D3D7CBA322A85D4B00E6181A /* README.md */,
D3D7CBA422A85D4B00E6181A /* sokol_app.h */,
D3D7CBA522A85D4B00E6181A /* sokol_time.h */,
D3D7CBA622A85D4B00E6181A /* .gitignore */,
D3D7CBA722A85D4B00E6181A /* sokol.m */,
);
path = sokol;
sourceTree = "<group>";
};
D3E5F0170AA32EAC004E361B = {
isa = PBXGroup;
children = (
D3C517841279B38300C2AFEB /* TODO.txt */,
D390FDAD146EF0F8005D1E06 /* VERSION.txt */,
D38BB1D1149933F20000EC41 /* chipmunk-docs.textile */,
D3CCDF5B0AE35DA00080442F /* demo */,
D3E5F0C40AA75CC3004E361B /* chipmunk.h */,
D3C2B4581282178B0080A718 /* chipmunk_private.h */,
D39F478A0FD4AB4E00B244CA /* chipmunk_types.h */,
D3F74B131BE154FA00E41DA0 /* chipmunk_structs.h */,
D35420BF0F4E1FD70017F4F7 /* chipmunk_unsafe.h */,
D36C44DD10F53DEB003D48B5 /* chipmunk_ffi.h */,
D3B718E00AB2BC8900B500C9 /* chipmunk.c */,
D3E5F2F30AAA575E004E361B /* Basics */,
D3E5F0DD0AAA2273004E361B /* cpBody.h */,
D3E5F0DE0AAA2273004E361B /* cpBody.c */,
D37E24570AAAA48800BB4C50 /* Collision */,
D3800E0E0E9815FC00A3D7FA /* Constraints */,
D34E9E5A12557FBF002C0FE5 /* Space */,
D3172C6E1A5DDFA1004D09F7 /* AutoGeometry */,
D309B1FA17EFDF8800AA52C8 /* ObjectiveChipmunk */,
D39ECD8E17ED70D900319DBA /* Benchmark iPhone */,
D309B22717EFE2EF00AA52C8 /* ObjectiveChipmunkTests */,
D39ECD8717ED70D900319DBA /* Frameworks */,
D3E5F04A0AA32FDE004E361B /* Products */,
D3E5F04C0AA32FDE004E361B /* main-Info.plist */,
);
sourceTree = "<group>";
};
D3E5F04A0AA32FDE004E361B /* Products */ = {
isa = PBXGroup;
children = (
D3E5F0490AA32FDE004E361B /* ChipmunkDemo.app */,
D34963BB0B56CAA300CAD239 /* libChipmunk-Mac.a */,
D3C3787A11063B1B003EF1D9 /* libChipmunk-iOS.a */,
D39ECD8617ED70D900319DBA /* Benchmark iPhone.app */,
D309B21317EFE2EF00AA52C8 /* libObjectiveChipmunk-iOS.a */,
D309B22017EFE2EF00AA52C8 /* ObjectiveChipmunkTests.xctest */,
D333C5F018639A0500BBC4FF /* libObjectiveChipmunk-Mac.a */,
FF80DCFE1CA9C68500C44647 /* libChipmunk-tvOS.a */,
FF80DD261CA9C90100C44647 /* libObjectiveChipmunk-tvOS.a */,
);
name = Products;
sourceTree = "<group>";
};
D3E5F2F30AAA575E004E361B /* Basics */ = {
isa = PBXGroup;
children = (
D353B6480B059C5F0038D274 /* prime.h */,
D3E5F0270AA32F16004E361B /* cpVect.h */,
D38825E517EB945E00663730 /* cpTransform.h */,
D3E5F2D90AAA5622004E361B /* cpBB.h */,
D3E5F2DD0AAA562B004E361B /* cpArray.c */,
D30CE25D0B52535500427129 /* cpHashSet.c */,
D3F441EA1B3B17C900C881DD /* cpRobust.h */,
D3F441E71B3B177B00C881DD /* cpRobust.c */,
);
name = Basics;
path = ../src;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
D34963B70B56CAA300CAD239 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
D3172C741A5DDFC2004D09F7 /* cpMarch.h in Headers */,
D34963C10B56CBA900CAD239 /* chipmunk.h in Headers */,
D34963C20B56CBA900CAD239 /* cpVect.h in Headers */,
D38825E617EB945E00663730 /* cpTransform.h in Headers */,
D34963C30B56CBA900CAD239 /* cpBB.h in Headers */,
D3172C721A5DDFC2004D09F7 /* cpHastySpace.h in Headers */,
D34963C50B56CBA900CAD239 /* prime.h in Headers */,
D34963C70B56CBA900CAD239 /* cpBody.h in Headers */,
D34963C90B56CBA900CAD239 /* cpArbiter.h in Headers */,
D3F441EB1B3B17C900C881DD /* cpRobust.h in Headers */,
D34963CA0B56CBA900CAD239 /* cpPolyShape.h in Headers */,
D34963CB0B56CBA900CAD239 /* cpShape.h in Headers */,
D34963CD0B56CBA900CAD239 /* cpSpace.h in Headers */,
D3800E120E9815FC00A3D7FA /* cpConstraint.h in Headers */,
D3172C761A5DDFC2004D09F7 /* cpPolyline.h in Headers */,
D3800E1F0E98176F00A3D7FA /* cpPinJoint.h in Headers */,
D38011630E984FA400A3D7FA /* cpDampedSpring.h in Headers */,
D37BB76F0EAADA6300C70958 /* cpRotaryLimitJoint.h in Headers */,
D37BB8B40EAB01E400C70958 /* cpGearJoint.h in Headers */,
D37BB8F10EAB06B600C70958 /* cpSimpleMotor.h in Headers */,
D35420C00F4E1FD70017F4F7 /* chipmunk_unsafe.h in Headers */,
D36D87841012D63600DB5078 /* cpRatchetJoint.h in Headers */,
D3AA477C12AF0F9B00E27AAB /* cpSpatialIndex.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
D3C3787611063B1B003EF1D9 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
D3F441EC1B3B17C900C881DD /* cpRobust.h in Headers */,
D3AA477E12AF0F9B00E27AAB /* cpSpatialIndex.h in Headers */,
D3172C751A5DDFC2004D09F7 /* cpMarch.h in Headers */,
D3172C731A5DDFC2004D09F7 /* cpHastySpace.h in Headers */,
D3172C771A5DDFC2004D09F7 /* cpPolyline.h in Headers */,
D38825E717EB945E00663730 /* cpTransform.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
FF80DCD21CA9C68500C44647 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
FF80DCD31CA9C68500C44647 /* cpRobust.h in Headers */,
FF80DCD41CA9C68500C44647 /* cpSpatialIndex.h in Headers */,
FF80DCD51CA9C68500C44647 /* cpMarch.h in Headers */,
FF80DCD61CA9C68500C44647 /* cpHastySpace.h in Headers */,
FF80DCD71CA9C68500C44647 /* cpPolyline.h in Headers */,
FF80DCD81CA9C68500C44647 /* cpTransform.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
D309B21217EFE2EF00AA52C8 /* ObjectiveChipmunk-iOS */ = {
isa = PBXNativeTarget;
buildConfigurationList = D309B22F17EFE2EF00AA52C8 /* Build configuration list for PBXNativeTarget "ObjectiveChipmunk-iOS" */;
buildPhases = (
D309B20F17EFE2EF00AA52C8 /* Sources */,
D309B21017EFE2EF00AA52C8 /* Frameworks */,
D309B21117EFE2EF00AA52C8 /* CopyFiles */,
);
buildRules = (
);
dependencies = (
D309B23C17EFFDE800AA52C8 /* PBXTargetDependency */,
);
name = "ObjectiveChipmunk-iOS";
productName = ObjectiveChipmunk;
productReference = D309B21317EFE2EF00AA52C8 /* libObjectiveChipmunk-iOS.a */;
productType = "com.apple.product-type.library.static";
};
D309B21F17EFE2EF00AA52C8 /* ObjectiveChipmunkTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = D309B23217EFE2EF00AA52C8 /* Build configuration list for PBXNativeTarget "ObjectiveChipmunkTests" */;
buildPhases = (
D309B21C17EFE2EF00AA52C8 /* Sources */,
D309B21D17EFE2EF00AA52C8 /* Frameworks */,
D309B21E17EFE2EF00AA52C8 /* Resources */,
);
buildRules = (
);
dependencies = (
D309B22517EFE2EF00AA52C8 /* PBXTargetDependency */,
);
name = ObjectiveChipmunkTests;
productName = ObjectiveChipmunkTests;
productReference = D309B22017EFE2EF00AA52C8 /* ObjectiveChipmunkTests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
D333C5E118639A0500BBC4FF /* ObjectiveChipmunk-Mac */ = {
isa = PBXNativeTarget;
buildConfigurationList = D333C5ED18639A0500BBC4FF /* Build configuration list for PBXNativeTarget "ObjectiveChipmunk-Mac" */;
buildPhases = (
D333C5E418639A0500BBC4FF /* Sources */,
D333C5EA18639A0500BBC4FF /* Frameworks */,
D333C5EC18639A0500BBC4FF /* CopyFiles */,
);
buildRules = (
);
dependencies = (
D389413518639EA000725CFC /* PBXTargetDependency */,
);
name = "ObjectiveChipmunk-Mac";
productName = ObjectiveChipmunk;
productReference = D333C5F018639A0500BBC4FF /* libObjectiveChipmunk-Mac.a */;
productType = "com.apple.product-type.library.static";
};
D34963BA0B56CAA300CAD239 /* Chipmunk-Mac */ = {
isa = PBXNativeTarget;
buildConfigurationList = D34963BE0B56CACA00CAD239 /* Build configuration list for PBXNativeTarget "Chipmunk-Mac" */;
buildPhases = (
D34963B70B56CAA300CAD239 /* Headers */,
D34963B80B56CAA300CAD239 /* Sources */,
D34963B90B56CAA300CAD239 /* Frameworks */,
);
buildRules = (
);
dependencies = (
);
name = "Chipmunk-Mac";
productName = Chipmunk;
productReference = D34963BB0B56CAA300CAD239 /* libChipmunk-Mac.a */;
productType = "com.apple.product-type.library.static";
};
D39ECD8517ED70D900319DBA /* Benchmark iPhone */ = {
isa = PBXNativeTarget;
buildConfigurationList = D39ECDAF17ED70D900319DBA /* Build configuration list for PBXNativeTarget "Benchmark iPhone" */;
buildPhases = (
D39ECD8217ED70D900319DBA /* Sources */,
D39ECD8317ED70D900319DBA /* Frameworks */,
D39ECD8417ED70D900319DBA /* Resources */,
);
buildRules = (
);
dependencies = (
D39ECDB717ED724000319DBA /* PBXTargetDependency */,
);
name = "Benchmark iPhone";
productName = Benchmark;
productReference = D39ECD8617ED70D900319DBA /* Benchmark iPhone.app */;
productType = "com.apple.product-type.application";
};
D3C3787911063B1B003EF1D9 /* Chipmunk-iOS */ = {
isa = PBXNativeTarget;
buildConfigurationList = D3C3787E11063BB5003EF1D9 /* Build configuration list for PBXNativeTarget "Chipmunk-iOS" */;
buildPhases = (
D3C3787611063B1B003EF1D9 /* Headers */,
D3C3787711063B1B003EF1D9 /* Sources */,
D3C3787811063B1B003EF1D9 /* Frameworks */,
);
buildRules = (
);
dependencies = (
);
name = "Chipmunk-iOS";
productName = "ChipmunkStatic (iPhone)";
productReference = D3C3787A11063B1B003EF1D9 /* libChipmunk-iOS.a */;
productType = "com.apple.product-type.library.static";
};
D3E5F0480AA32FDE004E361B /* ChipmunkDemo */ = {
isa = PBXNativeTarget;
buildConfigurationList = D3E5F04D0AA32FDF004E361B /* Build configuration list for PBXNativeTarget "ChipmunkDemo" */;
buildPhases = (
D3E5F0450AA32FDE004E361B /* Resources */,
D3E5F0460AA32FDE004E361B /* Sources */,
D3E5F0470AA32FDE004E361B /* Frameworks */,
);
buildRules = (
);
dependencies = (
D38687D20BAFC688008B7008 /* PBXTargetDependency */,
);
name = ChipmunkDemo;
productName = main;
productReference = D3E5F0490AA32FDE004E361B /* ChipmunkDemo.app */;
productType = "com.apple.product-type.application";
};
FF80DCD11CA9C68500C44647 /* Chipmunk-tvOS */ = {
isa = PBXNativeTarget;
buildConfigurationList = FF80DCFB1CA9C68500C44647 /* Build configuration list for PBXNativeTarget "Chipmunk-tvOS" */;
buildPhases = (
FF80DCD21CA9C68500C44647 /* Headers */,
FF80DCD91CA9C68500C44647 /* Sources */,
FF80DCFA1CA9C68500C44647 /* Frameworks */,
);
buildRules = (
);
dependencies = (
);
name = "Chipmunk-tvOS";
productName = "ChipmunkStatic (iPhone)";
productReference = FF80DCFE1CA9C68500C44647 /* libChipmunk-tvOS.a */;
productType = "com.apple.product-type.library.static";
};
FF80DD131CA9C90100C44647 /* ObjectiveChipmunk-tvOS */ = {
isa = PBXNativeTarget;
buildConfigurationList = FF80DD231CA9C90100C44647 /* Build configuration list for PBXNativeTarget "ObjectiveChipmunk-tvOS" */;
buildPhases = (
FF80DD161CA9C90100C44647 /* Sources */,
FF80DD201CA9C90100C44647 /* Frameworks */,
FF80DD221CA9C90100C44647 /* CopyFiles */,
);
buildRules = (
);
dependencies = (
FF80DD281CA9C97A00C44647 /* PBXTargetDependency */,
);
name = "ObjectiveChipmunk-tvOS";
productName = ObjectiveChipmunk;
productReference = FF80DD261CA9C90100C44647 /* libObjectiveChipmunk-tvOS.a */;
productType = "com.apple.product-type.library.static";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
D3E5F0190AA32EAC004E361B /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0710;
TargetAttributes = {
D309B21F17EFE2EF00AA52C8 = {
TestTargetID = D3E5F0480AA32FDE004E361B;
};
};
};
buildConfigurationList = D3E5F01A0AA32EAC004E361B /* Build configuration list for PBXProject "Chipmunk7" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
English,
Japanese,
French,
German,
en,
);
mainGroup = D3E5F0170AA32EAC004E361B;
productRefGroup = D3E5F04A0AA32FDE004E361B /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
D3E5F0480AA32FDE004E361B /* ChipmunkDemo */,
D34963BA0B56CAA300CAD239 /* Chipmunk-Mac */,
D3C3787911063B1B003EF1D9 /* Chipmunk-iOS */,
FF80DCD11CA9C68500C44647 /* Chipmunk-tvOS */,
D39ECD8517ED70D900319DBA /* Benchmark iPhone */,
D333C5E118639A0500BBC4FF /* ObjectiveChipmunk-Mac */,
D309B21217EFE2EF00AA52C8 /* ObjectiveChipmunk-iOS */,
FF80DD131CA9C90100C44647 /* ObjectiveChipmunk-tvOS */,
D309B21F17EFE2EF00AA52C8 /* ObjectiveChipmunkTests */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
D309B21E17EFE2EF00AA52C8 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
D3172C7E1A5DE0FA004D09F7 /* TestImageRGB.png in Resources */,
D3172C7D1A5DE0FA004D09F7 /* TestImageLA.png in Resources */,
D309B22C17EFE2EF00AA52C8 /* InfoPlist.strings in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
D39ECD8417ED70D900319DBA /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
D3E5F0450AA32FDE004E361B /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
D3D7CBAC22A85D4B00E6181A /* .gitignore in Resources */,
D3D7CBAB22A85D4B00E6181A /* README.md in Resources */,
D3D7CBAA22A85D4B00E6181A /* fips.yml in Resources */,
D3D7CBA922A85D4B00E6181A /* LICENSE in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
D309B20F17EFE2EF00AA52C8 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
D309B24C17EFFF9E00AA52C8 /* ChipmunkBody.m in Sources */,
D309B25017EFFF9E00AA52C8 /* ChipmunkShape.m in Sources */,
D3F18B4E1A5DDC8B005BED54 /* ChipmunkPointCloudSampler.m in Sources */,
D3F18B501A5DDC8B005BED54 /* ChipmunkTileCache.m in Sources */,
D3F18B4C1A5DDC8B005BED54 /* ChipmunkImageSampler.m in Sources */,
D309B24D17EFFF9E00AA52C8 /* ChipmunkConstraint.m in Sources */,
D3F18B4A1A5DDC8B005BED54 /* ChipmunkAutoGeometry.m in Sources */,
D309B24E17EFFF9E00AA52C8 /* ChipmunkMultiGrab.m in Sources */,
D309B25117EFFF9E00AA52C8 /* ChipmunkSpace.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
D309B21C17EFE2EF00AA52C8 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
D309B27217F0B4A600AA52C8 /* MiscTest.m in Sources */,
D309B27317F0B66F00AA52C8 /* SpaceTest.m in Sources */,
D309B27017F0AFFD00AA52C8 /* CallbacksTest.m in Sources */,
D309B27117F0B42900AA52C8 /* MemoryTest.m in Sources */,
D309B26E17F00D5500AA52C8 /* ShapeTest.m in Sources */,
D309B26F17F0A84800AA52C8 /* ConvexTest.m in Sources */,
D309B26C17F0088A00AA52C8 /* BodyTest.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
D333C5E418639A0500BBC4FF /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
D333C5E518639A0500BBC4FF /* ChipmunkBody.m in Sources */,
D333C5E618639A0500BBC4FF /* ChipmunkShape.m in Sources */,
D3F18B4D1A5DDC8B005BED54 /* ChipmunkPointCloudSampler.m in Sources */,
D3F18B4F1A5DDC8B005BED54 /* ChipmunkTileCache.m in Sources */,
D3F18B4B1A5DDC8B005BED54 /* ChipmunkImageSampler.m in Sources */,
D333C5E718639A0500BBC4FF /* ChipmunkConstraint.m in Sources */,
D3F18B491A5DDC8B005BED54 /* ChipmunkAutoGeometry.m in Sources */,
D333C5E818639A0500BBC4FF /* ChipmunkMultiGrab.m in Sources */,
D333C5E918639A0500BBC4FF /* ChipmunkSpace.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
D34963B80B56CAA300CAD239 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
D34E9E6712558100002C0FE5 /* cpSpaceQuery.c in Sources */,
D3800E130E9815FC00A3D7FA /* cpConstraint.c in Sources */,
D3800E1E0E98176F00A3D7FA /* cpPinJoint.c in Sources */,
D3E4A9C80E99683200EE08BA /* cpSlideJoint.c in Sources */,
D3E4A9CA0E99683200EE08BA /* cpPivotJoint.c in Sources */,
D3E4A9CC0E99683200EE08BA /* cpGrooveJoint.c in Sources */,
D38011620E984FA400A3D7FA /* cpDampedSpring.c in Sources */,
D34963CE0B56CBBF00CAD239 /* chipmunk.c in Sources */,
D3172C681A5DDF8C004D09F7 /* cpHastySpace.c in Sources */,
D34963D10B56CBBF00CAD239 /* cpArray.c in Sources */,
D34963D20B56CBBF00CAD239 /* cpHashSet.c in Sources */,
D3172C6C1A5DDF8D004D09F7 /* cpPolyline.c in Sources */,
D34963D30B56CBBF00CAD239 /* cpBody.c in Sources */,
D3F441E81B3B177B00C881DD /* cpRobust.c in Sources */,
D3172C6A1A5DDF8D004D09F7 /* cpMarch.c in Sources */,
D34963D40B56CBBF00CAD239 /* cpSpaceHash.c in Sources */,
D34963D50B56CBBF00CAD239 /* cpArbiter.c in Sources */,
D34963D60B56CBBF00CAD239 /* cpPolyShape.c in Sources */,
D34963D70B56CBBF00CAD239 /* cpShape.c in Sources */,
D34963D80B56CBBF00CAD239 /* cpCollision.c in Sources */,
D34963D90B56CBBF00CAD239 /* cpSpace.c in Sources */,
D36B19510EA13B6D0028A362 /* cpDampedRotarySpring.c in Sources */,
D37BB76E0EAADA6300C70958 /* cpRotaryLimitJoint.c in Sources */,
D3A96F7B17E9F86900658436 /* cpSpaceDebug.c in Sources */,
D37BB8B30EAB01E400C70958 /* cpGearJoint.c in Sources */,
D37BB8F20EAB06B600C70958 /* cpSimpleMotor.c in Sources */,
D36D87831012D63600DB5078 /* cpRatchetJoint.c in Sources */,
D34E9E97125581DD002C0FE5 /* cpSpaceComponent.c in Sources */,
D34E9EA312558A7C002C0FE5 /* cpSpaceStep.c in Sources */,
D3AA477512AF0F8900E27AAB /* cpBBTree.c in Sources */,
D3AA477612AF0F8900E27AAB /* cpSpatialIndex.c in Sources */,
D317246613280FC900752CBE /* cpSweep1D.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
D39ECD8217ED70D900319DBA /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
D39ECDB517ED71F800319DBA /* Bench.c in Sources */,
D39ECD9517ED70D900319DBA /* iPhoneBenchmarkMain.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
D3C3787711063B1B003EF1D9 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
D34E9E681255810F002C0FE5 /* cpSpaceQuery.c in Sources */,
D3C378F511063C57003EF1D9 /* cpConstraint.c in Sources */,
D3C378F611063C57003EF1D9 /* cpPinJoint.c in Sources */,
D3C378F711063C57003EF1D9 /* cpSlideJoint.c in Sources */,
D3C378F811063C57003EF1D9 /* cpPivotJoint.c in Sources */,
D3C378F911063C57003EF1D9 /* cpGrooveJoint.c in Sources */,
D3C378FA11063C57003EF1D9 /* cpDampedSpring.c in Sources */,
D3C378FB11063C57003EF1D9 /* chipmunk.c in Sources */,
D3172C691A5DDF8C004D09F7 /* cpHastySpace.c in Sources */,
D3C378FE11063C57003EF1D9 /* cpArray.c in Sources */,
D3C378FF11063C57003EF1D9 /* cpHashSet.c in Sources */,
D3172C6D1A5DDF8D004D09F7 /* cpPolyline.c in Sources */,
D3C3790011063C57003EF1D9 /* cpBody.c in Sources */,
D3F441E91B3B177B00C881DD /* cpRobust.c in Sources */,
D3172C6B1A5DDF8D004D09F7 /* cpMarch.c in Sources */,
D3C3790111063C57003EF1D9 /* cpSpaceHash.c in Sources */,
D3C3790211063C57003EF1D9 /* cpArbiter.c in Sources */,
D3C3790311063C57003EF1D9 /* cpPolyShape.c in Sources */,
D3C3790411063C57003EF1D9 /* cpShape.c in Sources */,
D3C3790511063C57003EF1D9 /* cpCollision.c in Sources */,
D3C3790611063C57003EF1D9 /* cpSpace.c in Sources */,
D3C3790711063C57003EF1D9 /* cpDampedRotarySpring.c in Sources */,
D3C3790811063C57003EF1D9 /* cpRotaryLimitJoint.c in Sources */,
D3A96F7C17E9F86900658436 /* cpSpaceDebug.c in Sources */,
D3C3790911063C57003EF1D9 /* cpGearJoint.c in Sources */,
D3C3790A11063C57003EF1D9 /* cpSimpleMotor.c in Sources */,
D3C3790B11063C57003EF1D9 /* cpRatchetJoint.c in Sources */,
D34E9E98125581DD002C0FE5 /* cpSpaceComponent.c in Sources */,
D34E9EA412558A7C002C0FE5 /* cpSpaceStep.c in Sources */,
D3AA477712AF0F8900E27AAB /* cpBBTree.c in Sources */,
D3AA477812AF0F8900E27AAB /* cpSpatialIndex.c in Sources */,
D317246713280FC900752CBE /* cpSweep1D.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
D3E5F0460AA32FDE004E361B /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
D3E76CFC17BFE2340068C3C3 /* ChipmunkDemoTextSupport.c in Sources */,
D3BC99C10AB381EE0025A2C0 /* ChipmunkDemo.c in Sources */,
D37697200B50C53900BB33CC /* LogoSmash.c in Sources */,
D3FBA1A70E9B1E0400950BCC /* ChipmunkDebugDraw.c in Sources */,
D3BAF9C50E9C4F250039DD5C /* PyramidStack.c in Sources */,
D3BAFA040E9C52810039DD5C /* Plink.c in Sources */,
D3BAFA360E9C53E50039DD5C /* Tumble.c in Sources */,
D3BAFA510E9C549C0039DD5C /* PyramidTopple.c in Sources */,
D3BAFB8B0E9C7C150039DD5C /* Planet.c in Sources */,
D31402950E9DD07E00EF79DB /* Springies.c in Sources */,
D393275C0EA02C710026F6A2 /* Pump.c in Sources */,
D3185D200EC5610A00E6BFCB /* TheoJansen.c in Sources */,
D31847750FC458FD00E30B0D /* Query.c in Sources */,
D3BACF8310B5DF8900376394 /* OneWay.c in Sources */,
D3BAD65810B8B52900376394 /* Player.c in Sources */,
D3238F8210C1B5ED00C4BDC2 /* Joints.c in Sources */,
D3102B171119FD3000E77771 /* Tank.c in Sources */,
D3E4867613175AE000A00840 /* Bench.c in Sources */,
D3D7CBAD22A85D4B00E6181A /* sokol.m in Sources */,
D3F52BD313C509DC00EB67D9 /* Chains.c in Sources */,
D37282AD13C6432F00FFFA3F /* Crane.c in Sources */,
D37282D413C76C1B00FFFA3F /* Buoyancy.c in Sources */,
D373FF1013D0D66E000EDB87 /* ContactGraph.c in Sources */,
D38996A6148B1E72006CFE0B /* Slice.c in Sources */,
D3F2EE2F14F898E9005FD439 /* Unicycle.c in Sources */,
D3F6EEDF156D581300A158A8 /* Convex.c in Sources */,
D3DFB55D1613765700162F19 /* Sticky.c in Sources */,
D38C029916840ED3009F612B /* Shatter.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
FF80DCD91CA9C68500C44647 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FF80DCDA1CA9C68500C44647 /* cpSpaceQuery.c in Sources */,
FF80DCDB1CA9C68500C44647 /* cpConstraint.c in Sources */,
FF80DCDC1CA9C68500C44647 /* cpPinJoint.c in Sources */,
FF80DCDD1CA9C68500C44647 /* cpSlideJoint.c in Sources */,
FF80DCDE1CA9C68500C44647 /* cpPivotJoint.c in Sources */,
FF80DCDF1CA9C68500C44647 /* cpGrooveJoint.c in Sources */,
FF80DCE01CA9C68500C44647 /* cpDampedSpring.c in Sources */,
FF80DCE11CA9C68500C44647 /* chipmunk.c in Sources */,
FF80DCE21CA9C68500C44647 /* cpHastySpace.c in Sources */,
FF80DCE31CA9C68500C44647 /* cpArray.c in Sources */,
FF80DCE41CA9C68500C44647 /* cpHashSet.c in Sources */,
FF80DCE51CA9C68500C44647 /* cpPolyline.c in Sources */,
FF80DCE61CA9C68500C44647 /* cpBody.c in Sources */,
FF80DCE71CA9C68500C44647 /* cpRobust.c in Sources */,
FF80DCE81CA9C68500C44647 /* cpMarch.c in Sources */,
FF80DCE91CA9C68500C44647 /* cpSpaceHash.c in Sources */,
FF80DCEA1CA9C68500C44647 /* cpArbiter.c in Sources */,
FF80DCEB1CA9C68500C44647 /* cpPolyShape.c in Sources */,
FF80DCEC1CA9C68500C44647 /* cpShape.c in Sources */,
FF80DCED1CA9C68500C44647 /* cpCollision.c in Sources */,
FF80DCEE1CA9C68500C44647 /* cpSpace.c in Sources */,
FF80DCEF1CA9C68500C44647 /* cpDampedRotarySpring.c in Sources */,
FF80DCF01CA9C68500C44647 /* cpRotaryLimitJoint.c in Sources */,
FF80DCF11CA9C68500C44647 /* cpSpaceDebug.c in Sources */,
FF80DCF21CA9C68500C44647 /* cpGearJoint.c in Sources */,
FF80DCF31CA9C68500C44647 /* cpSimpleMotor.c in Sources */,
FF80DCF41CA9C68500C44647 /* cpRatchetJoint.c in Sources */,
FF80DCF51CA9C68500C44647 /* cpSpaceComponent.c in Sources */,
FF80DCF61CA9C68500C44647 /* cpSpaceStep.c in Sources */,
FF80DCF71CA9C68500C44647 /* cpBBTree.c in Sources */,
FF80DCF81CA9C68500C44647 /* cpSpatialIndex.c in Sources */,
FF80DCF91CA9C68500C44647 /* cpSweep1D.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
FF80DD161CA9C90100C44647 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FF80DD171CA9C90100C44647 /* ChipmunkBody.m in Sources */,
FF80DD181CA9C90100C44647 /* ChipmunkShape.m in Sources */,
FF80DD191CA9C90100C44647 /* ChipmunkPointCloudSampler.m in Sources */,
FF80DD1A1CA9C90100C44647 /* ChipmunkTileCache.m in Sources */,
FF80DD1B1CA9C90100C44647 /* ChipmunkImageSampler.m in Sources */,
FF80DD1C1CA9C90100C44647 /* ChipmunkConstraint.m in Sources */,
FF80DD1D1CA9C90100C44647 /* ChipmunkAutoGeometry.m in Sources */,
FF80DD1E1CA9C90100C44647 /* ChipmunkMultiGrab.m in Sources */,
FF80DD1F1CA9C90100C44647 /* ChipmunkSpace.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
D309B22517EFE2EF00AA52C8 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = D309B21217EFE2EF00AA52C8 /* ObjectiveChipmunk-iOS */;
targetProxy = D309B22417EFE2EF00AA52C8 /* PBXContainerItemProxy */;
};
D309B23C17EFFDE800AA52C8 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = D3C3787911063B1B003EF1D9 /* Chipmunk-iOS */;
targetProxy = D309B23B17EFFDE800AA52C8 /* PBXContainerItemProxy */;
};
D38687D20BAFC688008B7008 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = D34963BA0B56CAA300CAD239 /* Chipmunk-Mac */;
targetProxy = D38687D10BAFC688008B7008 /* PBXContainerItemProxy */;
};
D389413518639EA000725CFC /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = D34963BA0B56CAA300CAD239 /* Chipmunk-Mac */;
targetProxy = D389413418639EA000725CFC /* PBXContainerItemProxy */;
};
D39ECDB717ED724000319DBA /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = D3C3787911063B1B003EF1D9 /* Chipmunk-iOS */;
targetProxy = D39ECDB617ED724000319DBA /* PBXContainerItemProxy */;
};
FF80DD281CA9C97A00C44647 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FF80DCD11CA9C68500C44647 /* Chipmunk-tvOS */;
targetProxy = FF80DD271CA9C97A00C44647 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXVariantGroup section */
D309B22A17EFE2EF00AA52C8 /* InfoPlist.strings */ = {
isa = PBXVariantGroup;
children = (
D309B22B17EFE2EF00AA52C8 /* en */,
);
name = InfoPlist.strings;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
D309B23017EFE2EF00AA52C8 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = NO;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
COPY_PHASE_STRIP = NO;
DSTROOT = /tmp/ObjectiveChipmunk.dst;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
ONLY_ACTIVE_ARCH = NO;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
};
name = Debug;
};
D309B23117EFE2EF00AA52C8 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = NO;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
COPY_PHASE_STRIP = YES;
DSTROOT = /tmp/ObjectiveChipmunk.dst;
ENABLE_NS_ASSERTIONS = NO;
GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1";
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
VALIDATE_PRODUCT = YES;
};
name = Release;
};
D309B23317EFE2EF00AA52C8 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
COPY_PHASE_STRIP = NO;
FRAMEWORK_SEARCH_PATHS = (
"$(SDKROOT)/Developer/Library/Frameworks",
"$(inherited)",
"$(DEVELOPER_FRAMEWORKS_DIR)",
);
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
INFOPLIST_FILE = "ObjectiveChipmunkTests/ObjectiveChipmunkTests-Info.plist";
PRODUCT_BUNDLE_IDENTIFIER = "net.Chipmunk2D..${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = iphoneos;
TEST_HOST = "$(BUNDLE_LOADER)";
WRAPPER_EXTENSION = xctest;
};
name = Debug;
};
D309B23417EFE2EF00AA52C8 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
COPY_PHASE_STRIP = YES;
ENABLE_NS_ASSERTIONS = NO;
FRAMEWORK_SEARCH_PATHS = (
"$(SDKROOT)/Developer/Library/Frameworks",
"$(inherited)",
"$(DEVELOPER_FRAMEWORKS_DIR)",
);
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
INFOPLIST_FILE = "ObjectiveChipmunkTests/ObjectiveChipmunkTests-Info.plist";
PRODUCT_BUNDLE_IDENTIFIER = "net.Chipmunk2D..${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = iphoneos;
TEST_HOST = "$(BUNDLE_LOADER)";
VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = xctest;
};
name = Release;
};
D333C5EE18639A0500BBC4FF /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = NO;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = NO;
DSTROOT = /tmp/ObjectiveChipmunk.dst;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = macosx;
SKIP_INSTALL = YES;
};
name = Debug;
};
D333C5EF18639A0500BBC4FF /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = NO;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = YES;
DSTROOT = /tmp/ObjectiveChipmunk.dst;
ENABLE_NS_ASSERTIONS = NO;
GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1";
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = macosx;
SKIP_INSTALL = YES;
VALIDATE_PRODUCT = YES;
};
name = Release;
};
D34963BF0B56CACA00CAD239 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
INSTALL_PATH = /usr/local/lib;
OTHER_CFLAGS = (
"-DDEBUG",
"-DCHIPMUNK_FFI",
"-ffast-math",
);
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = macosx;
SKIP_INSTALL = YES;
};
name = Debug;
};
D34963C00B56CACA00CAD239 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = YES;
INSTALL_PATH = /usr/local/lib;
OTHER_CFLAGS = (
"-DCHIPMUNK_FFI",
"-DNDEBUG",
"-ffast-math",
);
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = macosx;
SKIP_INSTALL = YES;
};
name = Release;
};
D39ECDB017ED70D900319DBA /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(DEVELOPER_FRAMEWORKS_DIR)",
);
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
INFOPLIST_FILE = "Benchmark/Benchmark-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 5.0;
PRODUCT_BUNDLE_IDENTIFIER = "net.Chipmunk2D..${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
WRAPPER_EXTENSION = app;
};
name = Debug;
};
D39ECDB117ED70D900319DBA /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = YES;
ENABLE_NS_ASSERTIONS = NO;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(DEVELOPER_FRAMEWORKS_DIR)",
);
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
INFOPLIST_FILE = "Benchmark/Benchmark-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 5.0;
PRODUCT_BUNDLE_IDENTIFIER = "net.Chipmunk2D..${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = app;
};
name = Release;
};
D3C3787B11063B1C003EF1D9 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_THUMB_SUPPORT = NO;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
ONLY_ACTIVE_ARCH = NO;
OTHER_CFLAGS = "-ffast-math";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
};
name = Debug;
};
D3C3787C11063B1C003EF1D9 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = YES;
GCC_AUTO_VECTORIZATION = YES;
GCC_THUMB_SUPPORT = NO;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
ZERO_LINK = NO;
};
name = Release;
};
D3E5F01B0AA32EAC004E361B /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_IMPLICIT_SIGN_CONVERSION = NO;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION = NO;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = c99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS = YES;
GCC_TREAT_INCOMPATIBLE_POINTER_TYPE_WARNINGS_AS_ERRORS = YES;
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES;
GCC_WARN_ABOUT_MISSING_NEWLINE = YES;
GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES;
GCC_WARN_SIGN_COMPARE = YES;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = (
"\"$(SRCROOT)/../include\"",
"\"$(SRCROOT)/../objectivec/include\"",
);
IPHONEOS_DEPLOYMENT_TARGET = 6.0;
MACOSX_DEPLOYMENT_TARGET = 10.6;
ONLY_ACTIVE_ARCH = YES;
OTHER_CFLAGS = (
"-DDEBUG",
"-ffast-math",
);
WARNING_CFLAGS = (
"-Wall",
"-W",
"-Wno-unused-parameter",
"-Werror",
"-Wnewline-eof",
"-Wreturn-type-c-linkage",
);
};
name = Debug;
};
D3E5F01C0AA32EAC004E361B /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_IMPLICIT_SIGN_CONVERSION = NO;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION = NO;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = c99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 3;
GCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS = YES;
GCC_TREAT_INCOMPATIBLE_POINTER_TYPE_WARNINGS_AS_ERRORS = YES;
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES;
GCC_WARN_ABOUT_MISSING_NEWLINE = YES;
GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES;
GCC_WARN_SIGN_COMPARE = YES;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = (
"\"$(SRCROOT)/../include\"",
"\"$(SRCROOT)/../objectivec/include\"",
);
IPHONEOS_DEPLOYMENT_TARGET = 6.0;
MACOSX_DEPLOYMENT_TARGET = 10.6;
OTHER_CFLAGS = (
"-DNDEBUG",
"-ffast-math",
);
WARNING_CFLAGS = (
"-Wall",
"-W",
"-Wno-unused-parameter",
"-Werror",
"-Wnewline-eof",
"-Wreturn-type-c-linkage",
);
};
name = Release;
};
D3E5F04E0AA32FDF004E361B /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_DYNAMIC_NO_PIC = NO;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "";
HEADER_SEARCH_PATHS = (
"\"$(SRCROOT)/../include\"",
"\"$(SRCROOT)/libglfw/include\"",
"\"$(SRCROOT)/libGLEW/include\"",
);
INFOPLIST_FILE = "main-Info.plist";
INSTALL_PATH = "$(HOME)/Applications";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)/libGLEW/lib\"",
"\"$(SRCROOT)/libglfw/lib\"",
);
LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/build/Release\"";
OTHER_LDFLAGS = (
"-framework",
Foundation,
"-framework",
AppKit,
);
PRODUCT_BUNDLE_IDENTIFIER = com.yourcompany.main;
PRODUCT_NAME = ChipmunkDemo;
SDKROOT = macosx;
SHARED_PRECOMPS_DIR = "";
WARNING_CFLAGS = (
"-Wall",
"-W",
"-Wno-unused-parameter",
"-Wnewline-eof",
);
WRAPPER_EXTENSION = app;
ZERO_LINK = NO;
};
name = Debug;
};
D3E5F04F0AA32FDF004E361B /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_AUTO_VECTORIZATION = YES;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "";
HEADER_SEARCH_PATHS = (
"\"$(SRCROOT)/../include\"",
"\"$(SRCROOT)/libglfw/include\"",
"\"$(SRCROOT)/libGLEW/include\"",
);
INFOPLIST_FILE = "main-Info.plist";
INSTALL_PATH = "$(HOME)/Applications";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)/libGLEW/lib\"",
"\"$(SRCROOT)/libglfw/lib\"",
);
LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/build/Release\"";
OTHER_CFLAGS = (
"-ffast-math",
"-DNDEBUG",
);
OTHER_LDFLAGS = (
"-framework",
Foundation,
"-framework",
AppKit,
);
PRODUCT_BUNDLE_IDENTIFIER = com.yourcompany.main;
PRODUCT_NAME = ChipmunkDemo;
SDKROOT = macosx;
SHARED_PRECOMPS_DIR = "";
WARNING_CFLAGS = (
"-Wall",
"-W",
"-Wno-unused-parameter",
"-Wnewline-eof",
);
WRAPPER_EXTENSION = app;
ZERO_LINK = NO;
};
name = Release;
};
FF80DCFC1CA9C68500C44647 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_THUMB_SUPPORT = NO;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
ONLY_ACTIVE_ARCH = NO;
OTHER_CFLAGS = "-ffast-math";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = appletvos;
SKIP_INSTALL = YES;
TVOS_DEPLOYMENT_TARGET = 9.0;
};
name = Debug;
};
FF80DCFD1CA9C68500C44647 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = YES;
GCC_AUTO_VECTORIZATION = YES;
GCC_THUMB_SUPPORT = NO;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = appletvos;
SKIP_INSTALL = YES;
TVOS_DEPLOYMENT_TARGET = 9.0;
ZERO_LINK = NO;
};
name = Release;
};
FF80DD241CA9C90100C44647 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = NO;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
COPY_PHASE_STRIP = NO;
DSTROOT = /tmp/ObjectiveChipmunk.dst;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
ONLY_ACTIVE_ARCH = NO;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = appletvos;
SKIP_INSTALL = YES;
TVOS_DEPLOYMENT_TARGET = 9.0;
};
name = Debug;
};
FF80DD251CA9C90100C44647 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = NO;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
COPY_PHASE_STRIP = YES;
DSTROOT = /tmp/ObjectiveChipmunk.dst;
ENABLE_NS_ASSERTIONS = NO;
GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1";
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
IPHONEOS_DEPLOYMENT_TARGET = 6.0;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = appletvos;
SKIP_INSTALL = YES;
TVOS_DEPLOYMENT_TARGET = 9.0;
VALIDATE_PRODUCT = YES;
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
D309B22F17EFE2EF00AA52C8 /* Build configuration list for PBXNativeTarget "ObjectiveChipmunk-iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
D309B23017EFE2EF00AA52C8 /* Debug */,
D309B23117EFE2EF00AA52C8 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
D309B23217EFE2EF00AA52C8 /* Build configuration list for PBXNativeTarget "ObjectiveChipmunkTests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
D309B23317EFE2EF00AA52C8 /* Debug */,
D309B23417EFE2EF00AA52C8 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
D333C5ED18639A0500BBC4FF /* Build configuration list for PBXNativeTarget "ObjectiveChipmunk-Mac" */ = {
isa = XCConfigurationList;
buildConfigurations = (
D333C5EE18639A0500BBC4FF /* Debug */,
D333C5EF18639A0500BBC4FF /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
D34963BE0B56CACA00CAD239 /* Build configuration list for PBXNativeTarget "Chipmunk-Mac" */ = {
isa = XCConfigurationList;
buildConfigurations = (
D34963BF0B56CACA00CAD239 /* Debug */,
D34963C00B56CACA00CAD239 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
D39ECDAF17ED70D900319DBA /* Build configuration list for PBXNativeTarget "Benchmark iPhone" */ = {
isa = XCConfigurationList;
buildConfigurations = (
D39ECDB017ED70D900319DBA /* Debug */,
D39ECDB117ED70D900319DBA /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
D3C3787E11063BB5003EF1D9 /* Build configuration list for PBXNativeTarget "Chipmunk-iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
D3C3787B11063B1C003EF1D9 /* Debug */,
D3C3787C11063B1C003EF1D9 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
D3E5F01A0AA32EAC004E361B /* Build configuration list for PBXProject "Chipmunk7" */ = {
isa = XCConfigurationList;
buildConfigurations = (
D3E5F01B0AA32EAC004E361B /* Debug */,
D3E5F01C0AA32EAC004E361B /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
D3E5F04D0AA32FDF004E361B /* Build configuration list for PBXNativeTarget "ChipmunkDemo" */ = {
isa = XCConfigurationList;
buildConfigurations = (
D3E5F04E0AA32FDF004E361B /* Debug */,
D3E5F04F0AA32FDF004E361B /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
FF80DCFB1CA9C68500C44647 /* Build configuration list for PBXNativeTarget "Chipmunk-tvOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
FF80DCFC1CA9C68500C44647 /* Debug */,
FF80DCFD1CA9C68500C44647 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
FF80DD231CA9C90100C44647 /* Build configuration list for PBXNativeTarget "ObjectiveChipmunk-tvOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
FF80DD241CA9C90100C44647 /* Debug */,
FF80DD251CA9C90100C44647 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = D3E5F0190AA32EAC004E361B /* Project object */;
}
|