1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
6745
6746
6747
6748
6749
6750
6751
6752
6753
6754
6755
6756
6757
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
6770
6771
6772
6773
6774
6775
6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788
6789
6790
6791
6792
6793
6794
6795
6796
6797
6798
6799
6800
6801
6802
6803
6804
6805
6806
6807
6808
6809
6810
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
6821
6822
6823
6824
6825
6826
6827
6828
6829
6830
6831
6832
6833
6834
6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
6846
6847
6848
6849
6850
6851
6852
6853
6854
6855
6856
6857
6858
6859
6860
6861
6862
6863
6864
6865
6866
6867
6868
6869
6870
6871
6872
6873
6874
6875
6876
6877
6878
6879
6880
6881
6882
6883
6884
6885
6886
6887
6888
6889
6890
6891
6892
6893
6894
6895
6896
6897
6898
6899
6900
6901
6902
6903
6904
6905
6906
6907
6908
6909
6910
6911
6912
6913
6914
6915
6916
6917
6918
6919
6920
6921
6922
6923
6924
6925
6926
6927
6928
6929
6930
6931
6932
6933
6934
6935
6936
6937
6938
6939
6940
6941
6942
6943
6944
6945
6946
6947
6948
6949
6950
6951
6952
6953
6954
6955
6956
6957
6958
6959
6960
6961
6962
6963
6964
6965
6966
6967
6968
6969
6970
6971
6972
6973
6974
6975
6976
6977
6978
6979
6980
6981
6982
6983
6984
6985
6986
6987
6988
6989
6990
6991
6992
6993
6994
6995
6996
6997
6998
6999
7000
7001
7002
7003
7004
7005
7006
7007
7008
7009
7010
7011
7012
7013
7014
7015
7016
7017
7018
7019
7020
7021
7022
7023
7024
7025
7026
7027
7028
7029
7030
7031
7032
7033
7034
7035
7036
7037
7038
7039
7040
7041
7042
7043
7044
7045
7046
7047
7048
7049
7050
7051
7052
7053
7054
7055
7056
7057
7058
7059
7060
7061
7062
7063
7064
7065
7066
7067
7068
7069
7070
7071
7072
7073
7074
7075
7076
7077
7078
7079
7080
7081
7082
7083
7084
7085
7086
7087
7088
7089
7090
7091
7092
7093
7094
7095
7096
7097
7098
7099
7100
7101
7102
7103
7104
7105
7106
7107
7108
7109
7110
7111
7112
7113
7114
7115
7116
7117
7118
7119
7120
7121
7122
7123
7124
7125
7126
7127
7128
7129
7130
7131
7132
7133
7134
7135
7136
7137
7138
7139
7140
7141
7142
7143
7144
7145
7146
7147
7148
7149
7150
7151
7152
7153
7154
7155
7156
7157
7158
7159
7160
7161
7162
7163
7164
7165
7166
7167
7168
7169
7170
7171
7172
7173
7174
7175
7176
7177
7178
7179
7180
7181
7182
7183
7184
7185
7186
7187
7188
7189
7190
7191
7192
7193
7194
7195
7196
7197
7198
7199
7200
7201
7202
7203
7204
7205
7206
7207
7208
7209
7210
7211
7212
7213
7214
7215
7216
7217
7218
7219
7220
7221
7222
7223
7224
7225
7226
7227
7228
7229
7230
7231
7232
7233
7234
7235
7236
7237
7238
7239
7240
7241
7242
7243
7244
7245
7246
7247
7248
7249
7250
7251
7252
7253
7254
7255
7256
7257
7258
7259
7260
7261
7262
7263
7264
7265
7266
7267
7268
7269
7270
7271
7272
7273
7274
7275
7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
7671
7672
7673
7674
7675
7676
7677
7678
7679
7680
7681
7682
7683
7684
7685
7686
7687
7688
7689
7690
7691
|
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 42;
objects = {
/* Begin PBXBuildFile section of PhysX */
FFFFb87680807fbab8768080 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDb87961a07fbab87961a0 /* SceneQuery */; };
FFFFb87629707fbab8762970 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDb879a6d07fbab879a6d0 /* SimulationController */; };
FFFFb902b2387fbab902b238 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902b2387fbab902b238 /* NpActor.cpp */; };
FFFFb902b2a07fbab902b2a0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902b2a07fbab902b2a0 /* NpAggregate.cpp */; };
FFFFb902b3087fbab902b308 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902b3087fbab902b308 /* NpArticulation.cpp */; };
FFFFb902b3707fbab902b370 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902b3707fbab902b370 /* NpArticulationJoint.cpp */; };
FFFFb902b3d87fbab902b3d8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902b3d87fbab902b3d8 /* NpArticulationLink.cpp */; };
FFFFb902b4407fbab902b440 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902b4407fbab902b440 /* NpBatchQuery.cpp */; };
FFFFb902b4a87fbab902b4a8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902b4a87fbab902b4a8 /* NpConstraint.cpp */; };
FFFFb902b5107fbab902b510 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902b5107fbab902b510 /* NpFactory.cpp */; };
FFFFb902b5787fbab902b578 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902b5787fbab902b578 /* NpMaterial.cpp */; };
FFFFb902b5e07fbab902b5e0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902b5e07fbab902b5e0 /* NpMetaData.cpp */; };
FFFFb902b6487fbab902b648 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902b6487fbab902b648 /* NpPhysics.cpp */; };
FFFFb902b6b07fbab902b6b0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902b6b07fbab902b6b0 /* NpPvdSceneQueryCollector.cpp */; };
FFFFb902b7187fbab902b718 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902b7187fbab902b718 /* NpReadCheck.cpp */; };
FFFFb902b7807fbab902b780 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902b7807fbab902b780 /* NpRigidDynamic.cpp */; };
FFFFb902b7e87fbab902b7e8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902b7e87fbab902b7e8 /* NpRigidStatic.cpp */; };
FFFFb902b8507fbab902b850 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902b8507fbab902b850 /* NpScene.cpp */; };
FFFFb902b8b87fbab902b8b8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902b8b87fbab902b8b8 /* NpSceneQueries.cpp */; };
FFFFb902b9207fbab902b920 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902b9207fbab902b920 /* NpSerializerAdapter.cpp */; };
FFFFb902b9887fbab902b988 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902b9887fbab902b988 /* NpShape.cpp */; };
FFFFb902b9f07fbab902b9f0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902b9f07fbab902b9f0 /* NpShapeManager.cpp */; };
FFFFb902ba587fbab902ba58 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902ba587fbab902ba58 /* NpSpatialIndex.cpp */; };
FFFFb902bac07fbab902bac0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902bac07fbab902bac0 /* NpVolumeCache.cpp */; };
FFFFb902bb287fbab902bb28 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902bb287fbab902bb28 /* NpWriteCheck.cpp */; };
FFFFb902bb907fbab902bb90 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902bb907fbab902bb90 /* PvdMetaDataPvdBinding.cpp */; };
FFFFb902bbf87fbab902bbf8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902bbf87fbab902bbf8 /* PvdPhysicsClient.cpp */; };
FFFFb902be007fbab902be00 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902be007fbab902be00 /* particles/NpParticleFluid.cpp */; };
FFFFb902be687fbab902be68 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902be687fbab902be68 /* particles/NpParticleSystem.cpp */; };
FFFFb902c6207fbab902c620 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902c6207fbab902c620 /* buffering/ScbActor.cpp */; };
FFFFb902c6887fbab902c688 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902c6887fbab902c688 /* buffering/ScbAggregate.cpp */; };
FFFFb902c6f07fbab902c6f0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902c6f07fbab902c6f0 /* buffering/ScbBase.cpp */; };
FFFFb902c7587fbab902c758 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902c7587fbab902c758 /* buffering/ScbCloth.cpp */; };
FFFFb902c7c07fbab902c7c0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902c7c07fbab902c7c0 /* buffering/ScbMetaData.cpp */; };
FFFFb902c8287fbab902c828 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902c8287fbab902c828 /* buffering/ScbParticleSystem.cpp */; };
FFFFb902c8907fbab902c890 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902c8907fbab902c890 /* buffering/ScbScene.cpp */; };
FFFFb902c8f87fbab902c8f8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902c8f87fbab902c8f8 /* buffering/ScbScenePvdClient.cpp */; };
FFFFb902c9607fbab902c960 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902c9607fbab902c960 /* buffering/ScbShape.cpp */; };
FFFFb902cb007fbab902cb00 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902cb007fbab902cb00 /* cloth/NpCloth.cpp */; };
FFFFb902cb687fbab902cb68 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902cb687fbab902cb68 /* cloth/NpClothFabric.cpp */; };
FFFFb902cbd07fbab902cbd0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902cbd07fbab902cbd0 /* cloth/NpClothParticleData.cpp */; };
FFFFb902cc387fbab902cc38 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902cc387fbab902cc38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; };
FFFFb90253a87fbab90253a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDb90253a87fbab90253a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; };
FFFFb90254107fbab9025410 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDb90254107fbab9025410 /* core/src/PxMetaDataObjects.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFDb87703d07fbab87703d0 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFDb902a4007fbab902a400 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; };
FFFDb902a4687fbab902a468 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; };
FFFDb902a4d07fbab902a4d0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; };
FFFDb902a5387fbab902a538 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; };
FFFDb902a5a07fbab902a5a0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
FFFDb902a6087fbab902a608 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; };
FFFDb902a6707fbab902a670 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; };
FFFDb902a6d87fbab902a6d8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; };
FFFDb902a7407fbab902a740 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; };
FFFDb902a7a87fbab902a7a8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; };
FFFDb902a8107fbab902a810 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; };
FFFDb902a8787fbab902a878 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; };
FFFDb902a8e07fbab902a8e0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; };
FFFDb902a9487fbab902a948 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; };
FFFDb902a9b07fbab902a9b0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; };
FFFDb902aa187fbab902aa18 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; };
FFFDb902aa807fbab902aa80 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; };
FFFDb902aae87fbab902aae8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; };
FFFDb902ab507fbab902ab50 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; };
FFFDb902abb87fbab902abb8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; };
FFFDb902ac207fbab902ac20 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; };
FFFDb902ac887fbab902ac88 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; };
FFFDb902acf07fbab902acf0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; };
FFFDb902ad587fbab902ad58 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; };
FFFDb902adc07fbab902adc0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; };
FFFDb902ae287fbab902ae28 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; };
FFFDb902ae907fbab902ae90 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; };
FFFDb902aef87fbab902aef8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; };
FFFDb902af607fbab902af60 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; };
FFFDb902afc87fbab902afc8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; };
FFFDb902b0307fbab902b030 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; };
FFFDb902b0987fbab902b098 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; };
FFFDb902b1007fbab902b100 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; };
FFFDb902b1687fbab902b168 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; };
FFFDb902b1d07fbab902b1d0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; };
FFFDb902b2387fbab902b238 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902b2a07fbab902b2a0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902b3087fbab902b308 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902b3707fbab902b370 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902b3d87fbab902b3d8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902b4407fbab902b440 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902b4a87fbab902b4a8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902b5107fbab902b510 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902b5787fbab902b578 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902b5e07fbab902b5e0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902b6487fbab902b648 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902b6b07fbab902b6b0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902b7187fbab902b718 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902b7807fbab902b780 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902b7e87fbab902b7e8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902b8507fbab902b850 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902b8b87fbab902b8b8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902b9207fbab902b920 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902b9887fbab902b988 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902b9f07fbab902b9f0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902ba587fbab902ba58 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902bac07fbab902bac0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902bb287fbab902bb28 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902bb907fbab902bb90 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902bbf87fbab902bbf8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902bc607fbab902bc60 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; };
FFFDb902bcc87fbab902bcc8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; };
FFFDb902bd307fbab902bd30 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; };
FFFDb902bd987fbab902bd98 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; };
FFFDb902be007fbab902be00 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902be687fbab902be68 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902bed07fbab902bed0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; };
FFFDb902bf387fbab902bf38 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; };
FFFDb902bfa07fbab902bfa0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; };
FFFDb902c0087fbab902c008 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
FFFDb902c0707fbab902c070 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; };
FFFDb902c0d87fbab902c0d8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; };
FFFDb902c1407fbab902c140 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; };
FFFDb902c1a87fbab902c1a8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; };
FFFDb902c2107fbab902c210 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; };
FFFDb902c2787fbab902c278 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; };
FFFDb902c2e07fbab902c2e0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; };
FFFDb902c3487fbab902c348 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; };
FFFDb902c3b07fbab902c3b0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; };
FFFDb902c4187fbab902c418 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; };
FFFDb902c4807fbab902c480 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFDb902c4e87fbab902c4e8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; };
FFFDb902c5507fbab902c550 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; };
FFFDb902c5b87fbab902c5b8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; };
FFFDb902c6207fbab902c620 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902c6887fbab902c688 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902c6f07fbab902c6f0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902c7587fbab902c758 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902c7c07fbab902c7c0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902c8287fbab902c828 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902c8907fbab902c890 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902c8f87fbab902c8f8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902c9607fbab902c960 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902c9c87fbab902c9c8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; };
FFFDb902ca307fbab902ca30 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; };
FFFDb902ca987fbab902ca98 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; };
FFFDb902cb007fbab902cb00 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902cb687fbab902cb68 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902cbd07fbab902cbd0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902cc387fbab902cc38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902ce007fbab902ce00 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; };
FFFDb902ce687fbab902ce68 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; };
FFFDb902ced07fbab902ced0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; };
FFFDb902cf387fbab902cf38 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
FFFDb902cfa07fbab902cfa0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; };
FFFDb902d0087fbab902d008 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; };
FFFDb902d0707fbab902d070 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; };
FFFDb902d0d87fbab902d0d8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; };
FFFDb902d1407fbab902d140 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; };
FFFDb902d1a87fbab902d1a8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; };
FFFDb902d2107fbab902d210 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; };
FFFDb902d2787fbab902d278 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; };
FFFDb902d2e07fbab902d2e0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; };
FFFDb902d3487fbab902d348 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; };
FFFDb902d3b07fbab902d3b0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; };
FFFDb902d4187fbab902d418 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; };
FFFDb902d4807fbab902d480 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; };
FFFDb902d4e87fbab902d4e8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; };
FFFDb902d5507fbab902d550 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; };
FFFDb902d5b87fbab902d5b8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; };
FFFDb902d6207fbab902d620 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; };
FFFDb902d6887fbab902d688 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; };
FFFDb902d6f07fbab902d6f0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; };
FFFDb902d7587fbab902d758 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; };
FFFDb902d7c07fbab902d7c0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; };
FFFDb902d8287fbab902d828 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; };
FFFDb902d8907fbab902d890 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; };
FFFDb902d8f87fbab902d8f8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; };
FFFDb902d9607fbab902d960 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; };
FFFDb902d9c87fbab902d9c8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; };
FFFDb902da307fbab902da30 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; };
FFFDb902da987fbab902da98 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; };
FFFDb902db007fbab902db00 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; };
FFFDb902db687fbab902db68 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; };
FFFDb902dbd07fbab902dbd0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; };
FFFDb902dc387fbab902dc38 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; };
FFFDb902dca07fbab902dca0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; };
FFFDb902dd087fbab902dd08 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; };
FFFDb902dd707fbab902dd70 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; };
FFFDb902ddd87fbab902ddd8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; };
FFFDb902de407fbab902de40 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; };
FFFDb902dea87fbab902dea8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; };
FFFDb902df107fbab902df10 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; };
FFFDb902df787fbab902df78 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; };
FFFDb902dfe07fbab902dfe0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; };
FFFDb902e0487fbab902e048 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; };
FFFDb902e0b07fbab902e0b0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; };
FFFDb902e1187fbab902e118 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; };
FFFDb902e1807fbab902e180 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; };
FFFDb902e1e87fbab902e1e8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; };
FFFDb902e2507fbab902e250 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; };
FFFDb902e2b87fbab902e2b8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; };
FFFDb902e3207fbab902e320 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; };
FFFDb902e3887fbab902e388 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; };
FFFDb90250007fbab9025000 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; };
FFFDb90250687fbab9025068 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
FFFDb90250d07fbab90250d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
FFFDb90251387fbab9025138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
FFFDb90251a07fbab90251a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
FFFDb90252087fbab9025208 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; };
FFFDb90252707fbab9025270 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; };
FFFDb90252d87fbab90252d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
FFFDb90253407fbab9025340 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
FFFDb90253a87fbab90253a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90254107fbab9025410 /* core/src/PxMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
FFF2b87703d07fbab87703d0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFCb87703d07fbab87703d0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF8b87703d07fbab87703d0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFFb902b2387fbab902b238,
FFFFb902b2a07fbab902b2a0,
FFFFb902b3087fbab902b308,
FFFFb902b3707fbab902b370,
FFFFb902b3d87fbab902b3d8,
FFFFb902b4407fbab902b440,
FFFFb902b4a87fbab902b4a8,
FFFFb902b5107fbab902b510,
FFFFb902b5787fbab902b578,
FFFFb902b5e07fbab902b5e0,
FFFFb902b6487fbab902b648,
FFFFb902b6b07fbab902b6b0,
FFFFb902b7187fbab902b718,
FFFFb902b7807fbab902b780,
FFFFb902b7e87fbab902b7e8,
FFFFb902b8507fbab902b850,
FFFFb902b8b87fbab902b8b8,
FFFFb902b9207fbab902b920,
FFFFb902b9887fbab902b988,
FFFFb902b9f07fbab902b9f0,
FFFFb902ba587fbab902ba58,
FFFFb902bac07fbab902bac0,
FFFFb902bb287fbab902bb28,
FFFFb902bb907fbab902bb90,
FFFFb902bbf87fbab902bbf8,
FFFFb902be007fbab902be00,
FFFFb902be687fbab902be68,
FFFFb902c6207fbab902c620,
FFFFb902c6887fbab902c688,
FFFFb902c6f07fbab902c6f0,
FFFFb902c7587fbab902c758,
FFFFb902c7c07fbab902c7c0,
FFFFb902c8287fbab902c828,
FFFFb902c8907fbab902c890,
FFFFb902c8f87fbab902c8f8,
FFFFb902c9607fbab902c960,
FFFFb902cb007fbab902cb00,
FFFFb902cb687fbab902cb68,
FFFFb902cbd07fbab902cbd0,
FFFFb902cc387fbab902cc38,
FFFFb90253a87fbab90253a8,
FFFFb90254107fbab9025410,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
FFF4b8775d407fbab8775d40 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFAb98574907fbab9857490 /* LowLevel */;
targetProxy = FFF5b98574907fbab9857490 /* PBXContainerItemProxy */;
};
FFF4b87750107fbab8775010 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFAbb0160707fbabb016070 /* LowLevelAABB */;
targetProxy = FFF5bb0160707fbabb016070 /* PBXContainerItemProxy */;
};
FFF4b8767fc07fbab8767fc0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFAb87530507fbab8753050 /* LowLevelCloth */;
targetProxy = FFF5b87530507fbab8753050 /* PBXContainerItemProxy */;
};
FFF4b87750707fbab8775070 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFAb872ced07fbab872ced0 /* LowLevelDynamics */;
targetProxy = FFF5b872ced07fbab872ced0 /* PBXContainerItemProxy */;
};
FFF4b87680207fbab8768020 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFAbb01a9407fbabb01a940 /* LowLevelParticles */;
targetProxy = FFF5bb01a9407fbabb01a940 /* PBXContainerItemProxy */;
};
FFF4b8771ca07fbab8771ca0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFAb9b6f2d07fbab9b6f2d0 /* PhysXCommon */;
targetProxy = FFF5b9b6f2d07fbab9b6f2d0 /* PBXContainerItemProxy */;
};
FFF4b87706f07fbab87706f0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFAb9b5ed307fbab9b5ed30 /* PxFoundation */;
targetProxy = FFF5b9b5ed307fbab9b5ed30 /* PBXContainerItemProxy */;
};
FFF4b87703a07fbab87703a0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFAb98414907fbab9841490 /* PxPvdSDK */;
targetProxy = FFF5b98414907fbab9841490 /* PBXContainerItemProxy */;
};
FFF4b87629a07fbab87629a0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFAbb3e5dc07fbabb3e5dc0 /* PxTask */;
targetProxy = FFF5bb3e5dc07fbabb3e5dc0 /* PBXContainerItemProxy */;
};
FFF4b87680807fbab8768080 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFAb87961a07fbab87961a0 /* SceneQuery */;
targetProxy = FFF5b87961a07fbab87961a0 /* PBXContainerItemProxy */;
};
FFF4b87629707fbab8762970 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFAb879a6d07fbab879a6d0 /* SimulationController */;
targetProxy = FFF5b879a6d07fbab879a6d0 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXCharacterKinematic */
FFFFb8776d207fbab8776d20 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDb8784f507fbab8784f50 /* PhysXExtensions */; };
FFFFb902e8787fbab902e878 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902e8787fbab902e878 /* CctBoxController.cpp */; };
FFFFb902e8e07fbab902e8e0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902e8e07fbab902e8e0 /* CctCapsuleController.cpp */; };
FFFFb902e9487fbab902e948 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902e9487fbab902e948 /* CctCharacterController.cpp */; };
FFFFb902e9b07fbab902e9b0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902e9b07fbab902e9b0 /* CctCharacterControllerCallbacks.cpp */; };
FFFFb902ea187fbab902ea18 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902ea187fbab902ea18 /* CctCharacterControllerManager.cpp */; };
FFFFb902ea807fbab902ea80 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902ea807fbab902ea80 /* CctController.cpp */; };
FFFFb902eae87fbab902eae8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902eae87fbab902eae8 /* CctObstacleContext.cpp */; };
FFFFb902eb507fbab902eb50 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902eb507fbab902eb50 /* CctSweptBox.cpp */; };
FFFFb902ebb87fbab902ebb8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902ebb87fbab902ebb8 /* CctSweptCapsule.cpp */; };
FFFFb902ec207fbab902ec20 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb902ec207fbab902ec20 /* CctSweptVolume.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFDb8767c907fbab8767c90 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFDb87796407fbab8779640 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; };
FFFDb87796a87fbab87796a8 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; };
FFFDb87797107fbab8779710 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; };
FFFDb87797787fbab8779778 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; };
FFFDb87797e07fbab87797e0 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; };
FFFDb87798487fbab8779848 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; };
FFFDb87798b07fbab87798b0 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; };
FFFDb87799187fbab8779918 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; };
FFFDb902e4007fbab902e400 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; };
FFFDb902e4687fbab902e468 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; };
FFFDb902e4d07fbab902e4d0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; };
FFFDb902e5387fbab902e538 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; };
FFFDb902e5a07fbab902e5a0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; };
FFFDb902e6087fbab902e608 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; };
FFFDb902e6707fbab902e670 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; };
FFFDb902e6d87fbab902e6d8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; };
FFFDb902e7407fbab902e740 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; };
FFFDb902e7a87fbab902e7a8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; };
FFFDb902e8107fbab902e810 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; };
FFFDb902e8787fbab902e878 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902e8e07fbab902e8e0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902e9487fbab902e948 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902e9b07fbab902e9b0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902ea187fbab902ea18 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902ea807fbab902ea80 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902eae87fbab902eae8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902eb507fbab902eb50 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902ebb87fbab902ebb8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb902ec207fbab902ec20 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
FFF2b8767c907fbab8767c90 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFCb8767c907fbab8767c90 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF8b8767c907fbab8767c90 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFFb902e8787fbab902e878,
FFFFb902e8e07fbab902e8e0,
FFFFb902e9487fbab902e948,
FFFFb902e9b07fbab902e9b0,
FFFFb902ea187fbab902ea18,
FFFFb902ea807fbab902ea80,
FFFFb902eae87fbab902eae8,
FFFFb902eb507fbab902eb50,
FFFFb902ebb87fbab902ebb8,
FFFFb902ec207fbab902ec20,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
FFF4b87777f07fbab87777f0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFAb9b6f2d07fbab9b6f2d0 /* PhysXCommon */;
targetProxy = FFF5b9b6f2d07fbab9b6f2d0 /* PBXContainerItemProxy */;
};
FFF4b8776d207fbab8776d20 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFAb8784f507fbab8784f50 /* PhysXExtensions */;
targetProxy = FFF5b8784f507fbab8784f50 /* PBXContainerItemProxy */;
};
FFF4b87783c07fbab87783c0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFAb9b5ed307fbab9b5ed30 /* PxFoundation */;
targetProxy = FFF5b9b5ed307fbab9b5ed30 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXVehicle */
FFFFb9032a087fbab9032a08 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9032a087fbab9032a08 /* PxVehicleComponents.cpp */; };
FFFFb9032a707fbab9032a70 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9032a707fbab9032a70 /* PxVehicleDrive.cpp */; };
FFFFb9032ad87fbab9032ad8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9032ad87fbab9032ad8 /* PxVehicleDrive4W.cpp */; };
FFFFb9032b407fbab9032b40 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9032b407fbab9032b40 /* PxVehicleDriveNW.cpp */; };
FFFFb9032ba87fbab9032ba8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9032ba87fbab9032ba8 /* PxVehicleDriveTank.cpp */; };
FFFFb9032c107fbab9032c10 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9032c107fbab9032c10 /* PxVehicleMetaData.cpp */; };
FFFFb9032c787fbab9032c78 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9032c787fbab9032c78 /* PxVehicleNoDrive.cpp */; };
FFFFb9032ce07fbab9032ce0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9032ce07fbab9032ce0 /* PxVehicleSDK.cpp */; };
FFFFb9032d487fbab9032d48 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9032d487fbab9032d48 /* PxVehicleSerialization.cpp */; };
FFFFb9032db07fbab9032db0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9032db07fbab9032db0 /* PxVehicleSuspWheelTire4.cpp */; };
FFFFb9032e187fbab9032e18 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9032e187fbab9032e18 /* PxVehicleTireFriction.cpp */; };
FFFFb9032e807fbab9032e80 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9032e807fbab9032e80 /* PxVehicleUpdate.cpp */; };
FFFFb9032ee87fbab9032ee8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9032ee87fbab9032ee8 /* PxVehicleWheels.cpp */; };
FFFFb9032f507fbab9032f50 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9032f507fbab9032f50 /* VehicleUtilControl.cpp */; };
FFFFb9032fb87fbab9032fb8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9032fb87fbab9032fb8 /* VehicleUtilSetup.cpp */; };
FFFFb90330207fbab9033020 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90330207fbab9033020 /* VehicleUtilTelemetry.cpp */; };
FFFFb87854c87fbab87854c8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDb87854c87fbab87854c8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; };
FFFFb87855307fbab8785530 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDb87855307fbab8785530 /* src/PxVehicleMetaDataObjects.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFDb87675207fbab8767520 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFDb9030a007fbab9030a00 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; };
FFFDb9030a687fbab9030a68 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; };
FFFDb9030ad07fbab9030ad0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; };
FFFDb9030b387fbab9030b38 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; };
FFFDb9030ba07fbab9030ba0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; };
FFFDb9030c087fbab9030c08 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; };
FFFDb9030c707fbab9030c70 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; };
FFFDb9030cd87fbab9030cd8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; };
FFFDb9030d407fbab9030d40 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; };
FFFDb9030da87fbab9030da8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; };
FFFDb9030e107fbab9030e10 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; };
FFFDb9030e787fbab9030e78 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; };
FFFDb9030ee07fbab9030ee0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; };
FFFDb9030f487fbab9030f48 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; };
FFFDb9030fb07fbab9030fb0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; };
FFFDb90328007fbab9032800 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; };
FFFDb90328687fbab9032868 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; };
FFFDb90328d07fbab90328d0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; };
FFFDb90329387fbab9032938 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; };
FFFDb90329a07fbab90329a0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; };
FFFDb9032a087fbab9032a08 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9032a707fbab9032a70 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9032ad87fbab9032ad8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9032b407fbab9032b40 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9032ba87fbab9032ba8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9032c107fbab9032c10 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9032c787fbab9032c78 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9032ce07fbab9032ce0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9032d487fbab9032d48 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9032db07fbab9032db0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9032e187fbab9032e18 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9032e807fbab9032e80 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9032ee87fbab9032ee8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9032f507fbab9032f50 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9032fb87fbab9032fb8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90330207fbab9033020 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb87853907fbab8785390 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
FFFDb87853f87fbab87853f8 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
FFFDb87854607fbab8785460 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
FFFDb87854c87fbab87854c8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb87855307fbab8785530 /* src/PxVehicleMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
FFF2b87675207fbab8767520 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFCb87675207fbab8767520 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF8b87675207fbab8767520 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFFb9032a087fbab9032a08,
FFFFb9032a707fbab9032a70,
FFFFb9032ad87fbab9032ad8,
FFFFb9032b407fbab9032b40,
FFFFb9032ba87fbab9032ba8,
FFFFb9032c107fbab9032c10,
FFFFb9032c787fbab9032c78,
FFFFb9032ce07fbab9032ce0,
FFFFb9032d487fbab9032d48,
FFFFb9032db07fbab9032db0,
FFFFb9032e187fbab9032e18,
FFFFb9032e807fbab9032e80,
FFFFb9032ee87fbab9032ee8,
FFFFb9032f507fbab9032f50,
FFFFb9032fb87fbab9032fb8,
FFFFb90330207fbab9033020,
FFFFb87854c87fbab87854c8,
FFFFb87855307fbab8785530,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXExtensions */
FFFFb90350e87fbab90350e8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90350e87fbab90350e8 /* ExtBroadPhase.cpp */; };
FFFFb90351507fbab9035150 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90351507fbab9035150 /* ExtClothFabricCooker.cpp */; };
FFFFb90351b87fbab90351b8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90351b87fbab90351b8 /* ExtClothGeodesicTetherCooker.cpp */; };
FFFFb90352207fbab9035220 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90352207fbab9035220 /* ExtClothMeshQuadifier.cpp */; };
FFFFb90352887fbab9035288 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90352887fbab9035288 /* ExtClothSimpleTetherCooker.cpp */; };
FFFFb90352f07fbab90352f0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90352f07fbab90352f0 /* ExtCollection.cpp */; };
FFFFb90353587fbab9035358 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90353587fbab9035358 /* ExtConvexMeshExt.cpp */; };
FFFFb90353c07fbab90353c0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90353c07fbab90353c0 /* ExtCpuWorkerThread.cpp */; };
FFFFb90354287fbab9035428 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90354287fbab9035428 /* ExtD6Joint.cpp */; };
FFFFb90354907fbab9035490 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90354907fbab9035490 /* ExtD6JointSolverPrep.cpp */; };
FFFFb90354f87fbab90354f8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90354f87fbab90354f8 /* ExtDefaultCpuDispatcher.cpp */; };
FFFFb90355607fbab9035560 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90355607fbab9035560 /* ExtDefaultErrorCallback.cpp */; };
FFFFb90355c87fbab90355c8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90355c87fbab90355c8 /* ExtDefaultSimulationFilterShader.cpp */; };
FFFFb90356307fbab9035630 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90356307fbab9035630 /* ExtDefaultStreams.cpp */; };
FFFFb90356987fbab9035698 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90356987fbab9035698 /* ExtDistanceJoint.cpp */; };
FFFFb90357007fbab9035700 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90357007fbab9035700 /* ExtDistanceJointSolverPrep.cpp */; };
FFFFb90357687fbab9035768 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90357687fbab9035768 /* ExtExtensions.cpp */; };
FFFFb90357d07fbab90357d0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90357d07fbab90357d0 /* ExtFixedJoint.cpp */; };
FFFFb90358387fbab9035838 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90358387fbab9035838 /* ExtFixedJointSolverPrep.cpp */; };
FFFFb90358a07fbab90358a0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90358a07fbab90358a0 /* ExtJoint.cpp */; };
FFFFb90359087fbab9035908 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90359087fbab9035908 /* ExtMetaData.cpp */; };
FFFFb90359707fbab9035970 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90359707fbab9035970 /* ExtParticleExt.cpp */; };
FFFFb90359d87fbab90359d8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb90359d87fbab90359d8 /* ExtPrismaticJoint.cpp */; };
FFFFb9035a407fbab9035a40 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9035a407fbab9035a40 /* ExtPrismaticJointSolverPrep.cpp */; };
FFFFb9035aa87fbab9035aa8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9035aa87fbab9035aa8 /* ExtPvd.cpp */; };
FFFFb9035b107fbab9035b10 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9035b107fbab9035b10 /* ExtPxStringTable.cpp */; };
FFFFb9035b787fbab9035b78 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9035b787fbab9035b78 /* ExtRaycastCCD.cpp */; };
FFFFb9035be07fbab9035be0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9035be07fbab9035be0 /* ExtRevoluteJoint.cpp */; };
FFFFb9035c487fbab9035c48 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9035c487fbab9035c48 /* ExtRevoluteJointSolverPrep.cpp */; };
FFFFb9035cb07fbab9035cb0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9035cb07fbab9035cb0 /* ExtRigidBodyExt.cpp */; };
FFFFb9035d187fbab9035d18 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9035d187fbab9035d18 /* ExtSceneQueryExt.cpp */; };
FFFFb9035d807fbab9035d80 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9035d807fbab9035d80 /* ExtSimpleFactory.cpp */; };
FFFFb9035de87fbab9035de8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9035de87fbab9035de8 /* ExtSmoothNormals.cpp */; };
FFFFb9035e507fbab9035e50 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9035e507fbab9035e50 /* ExtSphericalJoint.cpp */; };
FFFFb9035eb87fbab9035eb8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9035eb87fbab9035eb8 /* ExtSphericalJointSolverPrep.cpp */; };
FFFFb9035f207fbab9035f20 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb9035f207fbab9035f20 /* ExtTriangleMeshExt.cpp */; };
FFFFb90386d07fbab90386d0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb90386d07fbab90386d0 /* SnSerialUtils.cpp */; };
FFFFb90387387fbab9038738 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb90387387fbab9038738 /* SnSerialization.cpp */; };
FFFFb90387a07fbab90387a0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb90387a07fbab90387a0 /* SnSerializationRegistry.cpp */; };
FFFFb9038ae07fbab9038ae0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb9038ae07fbab9038ae0 /* Binary/SnBinaryDeserialization.cpp */; };
FFFFb9038b487fbab9038b48 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb9038b487fbab9038b48 /* Binary/SnBinarySerialization.cpp */; };
FFFFb9038bb07fbab9038bb0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb9038bb07fbab9038bb0 /* Binary/SnConvX.cpp */; };
FFFFb9038c187fbab9038c18 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb9038c187fbab9038c18 /* Binary/SnConvX_Align.cpp */; };
FFFFb9038c807fbab9038c80 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb9038c807fbab9038c80 /* Binary/SnConvX_Convert.cpp */; };
FFFFb9038ce87fbab9038ce8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb9038ce87fbab9038ce8 /* Binary/SnConvX_Error.cpp */; };
FFFFb9038d507fbab9038d50 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb9038d507fbab9038d50 /* Binary/SnConvX_MetaData.cpp */; };
FFFFb9038db87fbab9038db8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb9038db87fbab9038db8 /* Binary/SnConvX_Output.cpp */; };
FFFFb9038e207fbab9038e20 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb9038e207fbab9038e20 /* Binary/SnConvX_Union.cpp */; };
FFFFb9038e887fbab9038e88 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb9038e887fbab9038e88 /* Binary/SnSerializationContext.cpp */; };
FFFFb90397e07fbab90397e0 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb90397e07fbab90397e0 /* Xml/SnJointRepXSerializer.cpp */; };
FFFFb90398487fbab9039848 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb90398487fbab9039848 /* Xml/SnRepXCoreSerializer.cpp */; };
FFFFb90398b07fbab90398b0 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb90398b07fbab90398b0 /* Xml/SnRepXUpgrader.cpp */; };
FFFFb90399187fbab9039918 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb90399187fbab9039918 /* Xml/SnXmlSerialization.cpp */; };
FFFFb90374e07fbab90374e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDb90374e07fbab90374e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFDb8784f507fbab8784f50 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFDb90360007fbab9036000 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; };
FFFDb90360687fbab9036068 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; };
FFFDb90360d07fbab90360d0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; };
FFFDb90361387fbab9036138 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; };
FFFDb90361a07fbab90361a0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; };
FFFDb90362087fbab9036208 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; };
FFFDb90362707fbab9036270 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; };
FFFDb90362d87fbab90362d8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; };
FFFDb90363407fbab9036340 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; };
FFFDb90363a87fbab90363a8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; };
FFFDb90364107fbab9036410 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; };
FFFDb90364787fbab9036478 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
FFFDb90364e07fbab90364e0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; };
FFFDb90365487fbab9036548 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; };
FFFDb90365b07fbab90365b0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; };
FFFDb90366187fbab9036618 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; };
FFFDb90366807fbab9036680 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; };
FFFDb90366e87fbab90366e8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; };
FFFDb90367507fbab9036750 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; };
FFFDb90367b87fbab90367b8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; };
FFFDb90368207fbab9036820 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; };
FFFDb90368887fbab9036888 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; };
FFFDb90368f07fbab90368f0 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; };
FFFDb90369587fbab9036958 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; };
FFFDb90369c07fbab90369c0 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; };
FFFDb9036a287fbab9036a28 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; };
FFFDb9036a907fbab9036a90 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; };
FFFDb9036af87fbab9036af8 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; };
FFFDb9036b607fbab9036b60 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; };
FFFDb9036bc87fbab9036bc8 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; };
FFFDb9036c307fbab9036c30 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; };
FFFDb9036c987fbab9036c98 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; };
FFFDb9036d007fbab9036d00 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; };
FFFDb9036d687fbab9036d68 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; };
FFFDb9036dd07fbab9036dd0 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; };
FFFDb9036e387fbab9036e38 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; };
FFFDb9036ea07fbab9036ea0 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; };
FFFDb9034a007fbab9034a00 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; };
FFFDb9034a687fbab9034a68 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; };
FFFDb9034ad07fbab9034ad0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; };
FFFDb9034b387fbab9034b38 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
FFFDb9034ba07fbab9034ba0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; };
FFFDb9034c087fbab9034c08 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; };
FFFDb9034c707fbab9034c70 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; };
FFFDb9034cd87fbab9034cd8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; };
FFFDb9034d407fbab9034d40 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
FFFDb9034da87fbab9034da8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; };
FFFDb9034e107fbab9034e10 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; };
FFFDb9034e787fbab9034e78 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; };
FFFDb9034ee07fbab9034ee0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; };
FFFDb9034f487fbab9034f48 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; };
FFFDb9034fb07fbab9034fb0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; };
FFFDb90350187fbab9035018 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; };
FFFDb90350807fbab9035080 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; };
FFFDb90350e87fbab90350e8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90351507fbab9035150 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90351b87fbab90351b8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90352207fbab9035220 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90352887fbab9035288 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90352f07fbab90352f0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90353587fbab9035358 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90353c07fbab90353c0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90354287fbab9035428 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90354907fbab9035490 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90354f87fbab90354f8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90355607fbab9035560 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90355c87fbab90355c8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90356307fbab9035630 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90356987fbab9035698 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90357007fbab9035700 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90357687fbab9035768 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90357d07fbab90357d0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90358387fbab9035838 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90358a07fbab90358a0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90359087fbab9035908 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90359707fbab9035970 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90359d87fbab90359d8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9035a407fbab9035a40 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9035aa87fbab9035aa8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9035b107fbab9035b10 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9035b787fbab9035b78 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9035be07fbab9035be0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9035c487fbab9035c48 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9035cb07fbab9035cb0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9035d187fbab9035d18 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9035d807fbab9035d80 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9035de87fbab9035de8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9035e507fbab9035e50 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9035eb87fbab9035eb8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9035f207fbab9035f20 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90386007fbab9038600 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; };
FFFDb90386687fbab9038668 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; };
FFFDb90386d07fbab90386d0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90387387fbab9038738 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90387a07fbab90387a0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90388087fbab9038808 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; };
FFFDb90388707fbab9038870 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; };
FFFDb90388d87fbab90388d8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; };
FFFDb90389407fbab9038940 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; };
FFFDb90389a87fbab90389a8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; };
FFFDb9038a107fbab9038a10 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; };
FFFDb9038a787fbab9038a78 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; };
FFFDb9038ae07fbab9038ae0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9038b487fbab9038b48 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9038bb07fbab9038bb0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9038c187fbab9038c18 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9038c807fbab9038c80 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9038ce87fbab9038ce8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9038d507fbab9038d50 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9038db87fbab9038db8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9038e207fbab9038e20 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9038e887fbab9038e88 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb9038ef07fbab9038ef0 /* Xml/SnJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; };
FFFDb9038f587fbab9038f58 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; };
FFFDb9038fc07fbab9038fc0 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; };
FFFDb90390287fbab9039028 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; };
FFFDb90390907fbab9039090 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; };
FFFDb90390f87fbab90390f8 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; };
FFFDb90391607fbab9039160 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; };
FFFDb90391c87fbab90391c8 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; };
FFFDb90392307fbab9039230 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; };
FFFDb90392987fbab9039298 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; };
FFFDb90393007fbab9039300 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; };
FFFDb90393687fbab9039368 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; };
FFFDb90393d07fbab90393d0 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; };
FFFDb90394387fbab9039438 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; };
FFFDb90394a07fbab90394a0 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; };
FFFDb90395087fbab9039508 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; };
FFFDb90395707fbab9039570 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; };
FFFDb90395d87fbab90395d8 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; };
FFFDb90396407fbab9039640 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; };
FFFDb90396a87fbab90396a8 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; };
FFFDb90397107fbab9039710 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; };
FFFDb90397787fbab9039778 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; };
FFFDb90397e07fbab90397e0 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90398487fbab9039848 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90398b07fbab90398b0 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90399187fbab9039918 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90399807fbab9039980 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; };
FFFDb90370007fbab9037000 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; };
FFFDb90370687fbab9037068 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
FFFDb90370d07fbab90370d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
FFFDb90371387fbab9037138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
FFFDb90371a07fbab90371a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
FFFDb90372087fbab9037208 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; };
FFFDb90372707fbab9037270 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; };
FFFDb90372d87fbab90372d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
FFFDb90373407fbab9037340 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
FFFDb90373a87fbab90373a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
FFFDb90374107fbab9037410 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
FFFDb90374787fbab9037478 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
FFFDb90374e07fbab90374e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
FFF2b8784f507fbab8784f50 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFCb8784f507fbab8784f50 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF8b8784f507fbab8784f50 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFFb90350e87fbab90350e8,
FFFFb90351507fbab9035150,
FFFFb90351b87fbab90351b8,
FFFFb90352207fbab9035220,
FFFFb90352887fbab9035288,
FFFFb90352f07fbab90352f0,
FFFFb90353587fbab9035358,
FFFFb90353c07fbab90353c0,
FFFFb90354287fbab9035428,
FFFFb90354907fbab9035490,
FFFFb90354f87fbab90354f8,
FFFFb90355607fbab9035560,
FFFFb90355c87fbab90355c8,
FFFFb90356307fbab9035630,
FFFFb90356987fbab9035698,
FFFFb90357007fbab9035700,
FFFFb90357687fbab9035768,
FFFFb90357d07fbab90357d0,
FFFFb90358387fbab9035838,
FFFFb90358a07fbab90358a0,
FFFFb90359087fbab9035908,
FFFFb90359707fbab9035970,
FFFFb90359d87fbab90359d8,
FFFFb9035a407fbab9035a40,
FFFFb9035aa87fbab9035aa8,
FFFFb9035b107fbab9035b10,
FFFFb9035b787fbab9035b78,
FFFFb9035be07fbab9035be0,
FFFFb9035c487fbab9035c48,
FFFFb9035cb07fbab9035cb0,
FFFFb9035d187fbab9035d18,
FFFFb9035d807fbab9035d80,
FFFFb9035de87fbab9035de8,
FFFFb9035e507fbab9035e50,
FFFFb9035eb87fbab9035eb8,
FFFFb9035f207fbab9035f20,
FFFFb90386d07fbab90386d0,
FFFFb90387387fbab9038738,
FFFFb90387a07fbab90387a0,
FFFFb9038ae07fbab9038ae0,
FFFFb9038b487fbab9038b48,
FFFFb9038bb07fbab9038bb0,
FFFFb9038c187fbab9038c18,
FFFFb9038c807fbab9038c80,
FFFFb9038ce87fbab9038ce8,
FFFFb9038d507fbab9038d50,
FFFFb9038db87fbab9038db8,
FFFFb9038e207fbab9038e20,
FFFFb9038e887fbab9038e88,
FFFFb90397e07fbab90397e0,
FFFFb90398487fbab9039848,
FFFFb90398b07fbab90398b0,
FFFFb90399187fbab9039918,
FFFFb90374e07fbab90374e0,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
FFF4b87858a07fbab87858a0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFAb876cb807fbab876cb80 /* PsFastXml */;
targetProxy = FFF5b876cb807fbab876cb80 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of SceneQuery */
FFFFb903d8007fbab903d800 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb903d8007fbab903d800 /* SqAABBPruner.cpp */; };
FFFFb903d8687fbab903d868 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb903d8687fbab903d868 /* SqAABBTree.cpp */; };
FFFFb903d8d07fbab903d8d0 /* SqAABBTreeBuild.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb903d8d07fbab903d8d0 /* SqAABBTreeBuild.cpp */; };
FFFFb903d9387fbab903d938 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb903d9387fbab903d938 /* SqAABBTreeUpdateMap.cpp */; };
FFFFb903d9a07fbab903d9a0 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb903d9a07fbab903d9a0 /* SqBounds.cpp */; };
FFFFb903da087fbab903da08 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb903da087fbab903da08 /* SqBucketPruner.cpp */; };
FFFFb903da707fbab903da70 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb903da707fbab903da70 /* SqExtendedBucketPruner.cpp */; };
FFFFb903dad87fbab903dad8 /* SqIncrementalAABBPrunerCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb903dad87fbab903dad8 /* SqIncrementalAABBPrunerCore.cpp */; };
FFFFb903db407fbab903db40 /* SqIncrementalAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb903db407fbab903db40 /* SqIncrementalAABBTree.cpp */; };
FFFFb903dba87fbab903dba8 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb903dba87fbab903dba8 /* SqMetaData.cpp */; };
FFFFb903dc107fbab903dc10 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb903dc107fbab903dc10 /* SqPruningPool.cpp */; };
FFFFb903dc787fbab903dc78 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb903dc787fbab903dc78 /* SqPruningStructure.cpp */; };
FFFFb903dce07fbab903dce0 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb903dce07fbab903dce0 /* SqSceneQueryManager.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFDb87961a07fbab87961a0 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFDb903d8007fbab903d800 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb903d8687fbab903d868 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb903d8d07fbab903d8d0 /* SqAABBTreeBuild.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeBuild.cpp"; path = "../../SceneQuery/src/SqAABBTreeBuild.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb903d9387fbab903d938 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb903d9a07fbab903d9a0 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb903da087fbab903da08 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb903da707fbab903da70 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb903dad87fbab903dad8 /* SqIncrementalAABBPrunerCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBPrunerCore.cpp"; path = "../../SceneQuery/src/SqIncrementalAABBPrunerCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb903db407fbab903db40 /* SqIncrementalAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBTree.cpp"; path = "../../SceneQuery/src/SqIncrementalAABBTree.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb903dba87fbab903dba8 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb903dc107fbab903dc10 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb903dc787fbab903dc78 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb903dce07fbab903dce0 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb903dd487fbab903dd48 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; };
FFFDb903ddb07fbab903ddb0 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; };
FFFDb903de187fbab903de18 /* SqAABBTreeBuild.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeBuild.h"; path = "../../SceneQuery/src/SqAABBTreeBuild.h"; sourceTree = SOURCE_ROOT; };
FFFDb903de807fbab903de80 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; };
FFFDb903dee87fbab903dee8 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; };
FFFDb903df507fbab903df50 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; };
FFFDb903dfb87fbab903dfb8 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; };
FFFDb903e0207fbab903e020 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; };
FFFDb903e0887fbab903e088 /* SqIncrementalAABBPrunerCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBPrunerCore.h"; path = "../../SceneQuery/src/SqIncrementalAABBPrunerCore.h"; sourceTree = SOURCE_ROOT; };
FFFDb903e0f07fbab903e0f0 /* SqIncrementalAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBTree.h"; path = "../../SceneQuery/src/SqIncrementalAABBTree.h"; sourceTree = SOURCE_ROOT; };
FFFDb903e1587fbab903e158 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; };
FFFDb903e1c07fbab903e1c0 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; };
FFFDb903e2287fbab903e228 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; };
FFFDb879a4a07fbab879a4a0 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; };
FFFDb879a5087fbab879a508 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; };
FFFDb879a5707fbab879a570 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; };
FFFDb879a5d87fbab879a5d8 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
FFF2b87961a07fbab87961a0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFCb87961a07fbab87961a0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF8b87961a07fbab87961a0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFFb903d8007fbab903d800,
FFFFb903d8687fbab903d868,
FFFFb903d8d07fbab903d8d0,
FFFFb903d9387fbab903d938,
FFFFb903d9a07fbab903d9a0,
FFFFb903da087fbab903da08,
FFFFb903da707fbab903da70,
FFFFb903dad87fbab903dad8,
FFFFb903db407fbab903db40,
FFFFb903dba87fbab903dba8,
FFFFb903dc107fbab903dc10,
FFFFb903dc787fbab903dc78,
FFFFb903dce07fbab903dce0,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of SimulationController */
FFFFba834dd07fbaba834dd0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba834dd07fbaba834dd0 /* ScActorCore.cpp */; };
FFFFba834e387fbaba834e38 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba834e387fbaba834e38 /* ScActorSim.cpp */; };
FFFFba834ea07fbaba834ea0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba834ea07fbaba834ea0 /* ScArticulationCore.cpp */; };
FFFFba834f087fbaba834f08 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba834f087fbaba834f08 /* ScArticulationJointCore.cpp */; };
FFFFba834f707fbaba834f70 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba834f707fbaba834f70 /* ScArticulationJointSim.cpp */; };
FFFFba834fd87fbaba834fd8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba834fd87fbaba834fd8 /* ScArticulationSim.cpp */; };
FFFFba8350407fbaba835040 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8350407fbaba835040 /* ScBodyCore.cpp */; };
FFFFba8350a87fbaba8350a8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8350a87fbaba8350a8 /* ScBodyCoreKinematic.cpp */; };
FFFFba8351107fbaba835110 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8351107fbaba835110 /* ScBodySim.cpp */; };
FFFFba8351787fbaba835178 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8351787fbaba835178 /* ScConstraintCore.cpp */; };
FFFFba8351e07fbaba8351e0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8351e07fbaba8351e0 /* ScConstraintGroupNode.cpp */; };
FFFFba8352487fbaba835248 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8352487fbaba835248 /* ScConstraintInteraction.cpp */; };
FFFFba8352b07fbaba8352b0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8352b07fbaba8352b0 /* ScConstraintProjectionManager.cpp */; };
FFFFba8353187fbaba835318 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8353187fbaba835318 /* ScConstraintProjectionTree.cpp */; };
FFFFba8353807fbaba835380 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8353807fbaba835380 /* ScConstraintSim.cpp */; };
FFFFba8353e87fbaba8353e8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8353e87fbaba8353e8 /* ScElementInteractionMarker.cpp */; };
FFFFba8354507fbaba835450 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8354507fbaba835450 /* ScElementSim.cpp */; };
FFFFba8354b87fbaba8354b8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8354b87fbaba8354b8 /* ScInteraction.cpp */; };
FFFFba8355207fbaba835520 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8355207fbaba835520 /* ScIterators.cpp */; };
FFFFba8355887fbaba835588 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8355887fbaba835588 /* ScMaterialCore.cpp */; };
FFFFba8355f07fbaba8355f0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8355f07fbaba8355f0 /* ScMetaData.cpp */; };
FFFFba8356587fbaba835658 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8356587fbaba835658 /* ScNPhaseCore.cpp */; };
FFFFba8356c07fbaba8356c0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8356c07fbaba8356c0 /* ScPhysics.cpp */; };
FFFFba8357287fbaba835728 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8357287fbaba835728 /* ScRigidCore.cpp */; };
FFFFba8357907fbaba835790 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8357907fbaba835790 /* ScRigidSim.cpp */; };
FFFFba8357f87fbaba8357f8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8357f87fbaba8357f8 /* ScScene.cpp */; };
FFFFba8358607fbaba835860 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8358607fbaba835860 /* ScShapeCore.cpp */; };
FFFFba8358c87fbaba8358c8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8358c87fbaba8358c8 /* ScShapeInteraction.cpp */; };
FFFFba8359307fbaba835930 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8359307fbaba835930 /* ScShapeSim.cpp */; };
FFFFba8359987fbaba835998 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8359987fbaba835998 /* ScSimStats.cpp */; };
FFFFba835a007fbaba835a00 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba835a007fbaba835a00 /* ScSimulationController.cpp */; };
FFFFba835a687fbaba835a68 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba835a687fbaba835a68 /* ScSqBoundsManager.cpp */; };
FFFFba835ad07fbaba835ad0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba835ad07fbaba835ad0 /* ScStaticCore.cpp */; };
FFFFba835b387fbaba835b38 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba835b387fbaba835b38 /* ScStaticSim.cpp */; };
FFFFba835ba07fbaba835ba0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba835ba07fbaba835ba0 /* ScTriggerInteraction.cpp */; };
FFFFba835d407fbaba835d40 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba835d407fbaba835d40 /* particles/ScParticleBodyInteraction.cpp */; };
FFFFba835da87fbaba835da8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba835da87fbaba835da8 /* particles/ScParticlePacketShape.cpp */; };
FFFFba835e107fbaba835e10 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba835e107fbaba835e10 /* particles/ScParticleSystemCore.cpp */; };
FFFFba835e787fbaba835e78 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba835e787fbaba835e78 /* particles/ScParticleSystemSim.cpp */; };
FFFFba835fb07fbaba835fb0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba835fb07fbaba835fb0 /* cloth/ScClothCore.cpp */; };
FFFFba8360187fbaba836018 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8360187fbaba836018 /* cloth/ScClothFabricCore.cpp */; };
FFFFba8360807fbaba836080 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8360807fbaba836080 /* cloth/ScClothShape.cpp */; };
FFFFba8360e87fbaba8360e8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8360e87fbaba8360e8 /* cloth/ScClothSim.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFDb879a6d07fbab879a6d0 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFDb90404007fbab9040400 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; };
FFFDb90404687fbab9040468 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; };
FFFDb90404d07fbab90404d0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; };
FFFDb90405387fbab9040538 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; };
FFFDb90405a07fbab90405a0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; };
FFFDb90406087fbab9040608 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; };
FFFDb90406707fbab9040670 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; };
FFFDb90406d87fbab90406d8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; };
FFFDb90407407fbab9040740 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; };
FFFDb90407a87fbab90407a8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; };
FFFDb90408107fbab9040810 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; };
FFFDb90408787fbab9040878 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; };
FFFDb90408e07fbab90408e0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; };
FFFDb90409487fbab9040948 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; };
FFFDb90409b07fbab90409b0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; };
FFFDba8340007fbaba834000 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; };
FFFDba8340687fbaba834068 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; };
FFFDba8340d07fbaba8340d0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; };
FFFDba8341387fbaba834138 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; };
FFFDba8341a07fbaba8341a0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; };
FFFDba8342087fbaba834208 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; };
FFFDba8342707fbaba834270 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; };
FFFDba8342d87fbaba8342d8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; };
FFFDba8343407fbaba834340 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; };
FFFDba8343a87fbaba8343a8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; };
FFFDba8344107fbaba834410 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; };
FFFDba8344787fbaba834478 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; };
FFFDba8344e07fbaba8344e0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; };
FFFDba8345487fbaba834548 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFDba8345b07fbaba8345b0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; };
FFFDba8346187fbaba834618 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; };
FFFDba8346807fbaba834680 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; };
FFFDba8346e87fbaba8346e8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; };
FFFDba8347507fbaba834750 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; };
FFFDba8347b87fbaba8347b8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; };
FFFDba8348207fbaba834820 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; };
FFFDba8348887fbaba834888 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; };
FFFDba8348f07fbaba8348f0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; };
FFFDba8349587fbaba834958 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; };
FFFDba8349c07fbaba8349c0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; };
FFFDba834a287fbaba834a28 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; };
FFFDba834a907fbaba834a90 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; };
FFFDba834af87fbaba834af8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; };
FFFDba834b607fbaba834b60 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; };
FFFDba834bc87fbaba834bc8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; };
FFFDba834c307fbaba834c30 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; };
FFFDba834c987fbaba834c98 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; };
FFFDba834d007fbaba834d00 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; };
FFFDba834d687fbaba834d68 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; };
FFFDba834dd07fbaba834dd0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba834e387fbaba834e38 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba834ea07fbaba834ea0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba834f087fbaba834f08 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba834f707fbaba834f70 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba834fd87fbaba834fd8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8350407fbaba835040 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8350a87fbaba8350a8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8351107fbaba835110 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8351787fbaba835178 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8351e07fbaba8351e0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8352487fbaba835248 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8352b07fbaba8352b0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8353187fbaba835318 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8353807fbaba835380 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8353e87fbaba8353e8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8354507fbaba835450 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8354b87fbaba8354b8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8355207fbaba835520 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8355887fbaba835588 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8355f07fbaba8355f0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8356587fbaba835658 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8356c07fbaba8356c0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8357287fbaba835728 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8357907fbaba835790 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8357f87fbaba8357f8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8358607fbaba835860 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8358c87fbaba8358c8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8359307fbaba835930 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8359987fbaba835998 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba835a007fbaba835a00 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba835a687fbaba835a68 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba835ad07fbaba835ad0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba835b387fbaba835b38 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba835ba07fbaba835ba0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba835c087fbaba835c08 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; };
FFFDba835c707fbaba835c70 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; };
FFFDba835cd87fbaba835cd8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; };
FFFDba835d407fbaba835d40 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba835da87fbaba835da8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba835e107fbaba835e10 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba835e787fbaba835e78 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba835ee07fbaba835ee0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; };
FFFDba835f487fbaba835f48 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; };
FFFDba835fb07fbaba835fb0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8360187fbaba836018 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8360807fbaba836080 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8360e87fbaba8360e8 /* cloth/ScClothSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.cpp"; path = "../../SimulationController/src/cloth/ScClothSim.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
FFF2b879a6d07fbab879a6d0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFCb879a6d07fbab879a6d0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF8b879a6d07fbab879a6d0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFFba834dd07fbaba834dd0,
FFFFba834e387fbaba834e38,
FFFFba834ea07fbaba834ea0,
FFFFba834f087fbaba834f08,
FFFFba834f707fbaba834f70,
FFFFba834fd87fbaba834fd8,
FFFFba8350407fbaba835040,
FFFFba8350a87fbaba8350a8,
FFFFba8351107fbaba835110,
FFFFba8351787fbaba835178,
FFFFba8351e07fbaba8351e0,
FFFFba8352487fbaba835248,
FFFFba8352b07fbaba8352b0,
FFFFba8353187fbaba835318,
FFFFba8353807fbaba835380,
FFFFba8353e87fbaba8353e8,
FFFFba8354507fbaba835450,
FFFFba8354b87fbaba8354b8,
FFFFba8355207fbaba835520,
FFFFba8355887fbaba835588,
FFFFba8355f07fbaba8355f0,
FFFFba8356587fbaba835658,
FFFFba8356c07fbaba8356c0,
FFFFba8357287fbaba835728,
FFFFba8357907fbaba835790,
FFFFba8357f87fbaba8357f8,
FFFFba8358607fbaba835860,
FFFFba8358c87fbaba8358c8,
FFFFba8359307fbaba835930,
FFFFba8359987fbaba835998,
FFFFba835a007fbaba835a00,
FFFFba835a687fbaba835a68,
FFFFba835ad07fbaba835ad0,
FFFFba835b387fbaba835b38,
FFFFba835ba07fbaba835ba0,
FFFFba835d407fbaba835d40,
FFFFba835da87fbaba835da8,
FFFFba835e107fbaba835e10,
FFFFba835e787fbaba835e78,
FFFFba835fb07fbaba835fb0,
FFFFba8360187fbaba836018,
FFFFba8360807fbaba836080,
FFFFba8360e87fbaba8360e8,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXCooking */
FFFFbb1665907fbabb166590 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDb8784f507fbab8784f50 /* PhysXExtensions */; };
FFFFba839a007fbaba839a00 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba839a007fbaba839a00 /* Adjacencies.cpp */; };
FFFFba839a687fbaba839a68 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba839a687fbaba839a68 /* Cooking.cpp */; };
FFFFba839ad07fbaba839ad0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba839ad07fbaba839ad0 /* CookingUtils.cpp */; };
FFFFba839b387fbaba839b38 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba839b387fbaba839b38 /* EdgeList.cpp */; };
FFFFba839ba07fbaba839ba0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba839ba07fbaba839ba0 /* MeshCleaner.cpp */; };
FFFFba839c087fbaba839c08 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba839c087fbaba839c08 /* Quantizer.cpp */; };
FFFFba839ee07fbaba839ee0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba839ee07fbaba839ee0 /* mesh/GrbTriangleMeshCooking.cpp */; };
FFFFba839f487fbaba839f48 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba839f487fbaba839f48 /* mesh/HeightFieldCooking.cpp */; };
FFFFba839fb07fbaba839fb0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba839fb07fbaba839fb0 /* mesh/RTreeCooking.cpp */; };
FFFFba83a0187fbaba83a018 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba83a0187fbaba83a018 /* mesh/TriangleMeshBuilder.cpp */; };
FFFFba83a2887fbaba83a288 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba83a2887fbaba83a288 /* convex/BigConvexDataBuilder.cpp */; };
FFFFba83a2f07fbaba83a2f0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba83a2f07fbaba83a2f0 /* convex/ConvexHullBuilder.cpp */; };
FFFFba83a3587fbaba83a358 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba83a3587fbaba83a358 /* convex/ConvexHullLib.cpp */; };
FFFFba83a3c07fbaba83a3c0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba83a3c07fbaba83a3c0 /* convex/ConvexHullUtils.cpp */; };
FFFFba83a4287fbaba83a428 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba83a4287fbaba83a428 /* convex/ConvexMeshBuilder.cpp */; };
FFFFba83a4907fbaba83a490 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba83a4907fbaba83a490 /* convex/ConvexPolygonsBuilder.cpp */; };
FFFFba83a4f87fbaba83a4f8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba83a4f87fbaba83a4f8 /* convex/InflationConvexHullLib.cpp */; };
FFFFba83a5607fbaba83a560 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba83a5607fbaba83a560 /* convex/QuickHullConvexHullLib.cpp */; };
FFFFba83a5c87fbaba83a5c8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba83a5c87fbaba83a5c8 /* convex/VolumeIntegration.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFDbb0fb7e07fbabb0fb7e0 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFDbb0393d07fbabb0393d0 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
FFFDbb0394387fbabb039438 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
FFFDbb0394a07fbabb0394a0 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; };
FFFDbb0395087fbabb039508 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; };
FFFDbb0395707fbabb039570 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
FFFDbb0395d87fbabb0395d8 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; };
FFFDbb0396407fbabb039640 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; };
FFFDba839a007fbaba839a00 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba839a687fbaba839a68 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba839ad07fbaba839ad0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba839b387fbaba839b38 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba839ba07fbaba839ba0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba839c087fbaba839c08 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba839c707fbaba839c70 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; };
FFFDba839cd87fbaba839cd8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; };
FFFDba839d407fbaba839d40 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; };
FFFDba839da87fbaba839da8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; };
FFFDba839e107fbaba839e10 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; };
FFFDba839e787fbaba839e78 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; };
FFFDba839ee07fbaba839ee0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba839f487fbaba839f48 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba839fb07fbaba839fb0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba83a0187fbaba83a018 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba83a0807fbaba83a080 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; };
FFFDba83a0e87fbaba83a0e8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; };
FFFDba83a1507fbaba83a150 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; };
FFFDba83a1b87fbaba83a1b8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; };
FFFDba83a2207fbaba83a220 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; };
FFFDba83a2887fbaba83a288 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba83a2f07fbaba83a2f0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba83a3587fbaba83a358 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba83a3c07fbaba83a3c0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba83a4287fbaba83a428 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba83a4907fbaba83a490 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba83a4f87fbaba83a4f8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba83a5607fbaba83a560 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba83a5c87fbaba83a5c8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba83a6307fbaba83a630 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; };
FFFDba83a6987fbaba83a698 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; };
FFFDba83a7007fbaba83a700 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
FFFDba83a7687fbaba83a768 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; };
FFFDba83a7d07fbaba83a7d0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; };
FFFDba83a8387fbaba83a838 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; };
FFFDba83a8a07fbaba83a8a0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
FFFDba83a9087fbaba83a908 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
FFFDba83a9707fbaba83a970 /* convex/VolumeIntegration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.h"; path = "../../PhysXCooking/src/convex/VolumeIntegration.h"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
FFF2bb0fb7e07fbabb0fb7e0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFCbb0fb7e07fbabb0fb7e0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF8bb0fb7e07fbabb0fb7e0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFFba839a007fbaba839a00,
FFFFba839a687fbaba839a68,
FFFFba839ad07fbaba839ad0,
FFFFba839b387fbaba839b38,
FFFFba839ba07fbaba839ba0,
FFFFba839c087fbaba839c08,
FFFFba839ee07fbaba839ee0,
FFFFba839f487fbaba839f48,
FFFFba839fb07fbaba839fb0,
FFFFba83a0187fbaba83a018,
FFFFba83a2887fbaba83a288,
FFFFba83a2f07fbaba83a2f0,
FFFFba83a3587fbaba83a358,
FFFFba83a3c07fbaba83a3c0,
FFFFba83a4287fbaba83a428,
FFFFba83a4907fbaba83a490,
FFFFba83a4f87fbaba83a4f8,
FFFFba83a5607fbaba83a560,
FFFFba83a5c87fbaba83a5c8,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
FFF4bb1726907fbabb172690 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFAb9b6f2d07fbab9b6f2d0 /* PhysXCommon */;
targetProxy = FFF5b9b6f2d07fbab9b6f2d0 /* PBXContainerItemProxy */;
};
FFF4bb1665907fbabb166590 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFAb8784f507fbab8784f50 /* PhysXExtensions */;
targetProxy = FFF5b8784f507fbab8784f50 /* PBXContainerItemProxy */;
};
FFF4bb1330807fbabb133080 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFAb9b5ed307fbab9b5ed30 /* PxFoundation */;
targetProxy = FFF5b9b5ed307fbab9b5ed30 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXCommon */
FFFFb899f2007fbab899f200 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb899f2007fbab899f200 /* src/CmBoxPruning.cpp */; };
FFFFb899f2687fbab899f268 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb899f2687fbab899f268 /* src/CmCollection.cpp */; };
FFFFb899f2d07fbab899f2d0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb899f2d07fbab899f2d0 /* src/CmMathUtils.cpp */; };
FFFFb899f3387fbab899f338 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb899f3387fbab899f338 /* src/CmPtrTable.cpp */; };
FFFFb899f3a07fbab899f3a0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb899f3a07fbab899f3a0 /* src/CmRadixSort.cpp */; };
FFFFb899f4087fbab899f408 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb899f4087fbab899f408 /* src/CmRadixSortBuffered.cpp */; };
FFFFb899f4707fbab899f470 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb899f4707fbab899f470 /* src/CmRenderOutput.cpp */; };
FFFFb899f4d87fbab899f4d8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb899f4d87fbab899f4d8 /* src/CmVisualization.cpp */; };
FFFFba0079a87fbaba0079a8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba0079a87fbaba0079a8 /* ../../Include/GeomUtils */; };
FFFFba00aee07fbaba00aee0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00aee07fbaba00aee0 /* src/GuBounds.cpp */; };
FFFFba00af487fbaba00af48 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00af487fbaba00af48 /* src/GuBox.cpp */; };
FFFFba00afb07fbaba00afb0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00afb07fbaba00afb0 /* src/GuCCTSweepTests.cpp */; };
FFFFba00b0187fbaba00b018 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00b0187fbaba00b018 /* src/GuCapsule.cpp */; };
FFFFba00b0807fbaba00b080 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00b0807fbaba00b080 /* src/GuGeometryQuery.cpp */; };
FFFFba00b0e87fbaba00b0e8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00b0e87fbaba00b0e8 /* src/GuGeometryUnion.cpp */; };
FFFFba00b1507fbaba00b150 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00b1507fbaba00b150 /* src/GuInternal.cpp */; };
FFFFba00b1b87fbaba00b1b8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00b1b87fbaba00b1b8 /* src/GuMTD.cpp */; };
FFFFba00b2207fbaba00b220 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00b2207fbaba00b220 /* src/GuMeshFactory.cpp */; };
FFFFba00b2887fbaba00b288 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00b2887fbaba00b288 /* src/GuMetaData.cpp */; };
FFFFba00b2f07fbaba00b2f0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00b2f07fbaba00b2f0 /* src/GuOverlapTests.cpp */; };
FFFFba00b3587fbaba00b358 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00b3587fbaba00b358 /* src/GuRaycastTests.cpp */; };
FFFFba00b3c07fbaba00b3c0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00b3c07fbaba00b3c0 /* src/GuSerialize.cpp */; };
FFFFba00b4287fbaba00b428 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00b4287fbaba00b428 /* src/GuSweepMTD.cpp */; };
FFFFba00b4907fbaba00b490 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00b4907fbaba00b490 /* src/GuSweepSharedTests.cpp */; };
FFFFba00b4f87fbaba00b4f8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00b4f87fbaba00b4f8 /* src/GuSweepTests.cpp */; };
FFFFba00b5607fbaba00b560 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00b5607fbaba00b560 /* src/contact/GuContactBoxBox.cpp */; };
FFFFba00b5c87fbaba00b5c8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00b5c87fbaba00b5c8 /* src/contact/GuContactCapsuleBox.cpp */; };
FFFFba00b6307fbaba00b630 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00b6307fbaba00b630 /* src/contact/GuContactCapsuleCapsule.cpp */; };
FFFFba00b6987fbaba00b698 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00b6987fbaba00b698 /* src/contact/GuContactCapsuleConvex.cpp */; };
FFFFba00b7007fbaba00b700 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00b7007fbaba00b700 /* src/contact/GuContactCapsuleMesh.cpp */; };
FFFFba00b7687fbaba00b768 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00b7687fbaba00b768 /* src/contact/GuContactConvexConvex.cpp */; };
FFFFba00b7d07fbaba00b7d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00b7d07fbaba00b7d0 /* src/contact/GuContactConvexMesh.cpp */; };
FFFFba00b8387fbaba00b838 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00b8387fbaba00b838 /* src/contact/GuContactPlaneBox.cpp */; };
FFFFba00b8a07fbaba00b8a0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00b8a07fbaba00b8a0 /* src/contact/GuContactPlaneCapsule.cpp */; };
FFFFba00b9087fbaba00b908 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00b9087fbaba00b908 /* src/contact/GuContactPlaneConvex.cpp */; };
FFFFba00b9707fbaba00b970 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00b9707fbaba00b970 /* src/contact/GuContactPolygonPolygon.cpp */; };
FFFFba00b9d87fbaba00b9d8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00b9d87fbaba00b9d8 /* src/contact/GuContactSphereBox.cpp */; };
FFFFba00ba407fbaba00ba40 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00ba407fbaba00ba40 /* src/contact/GuContactSphereCapsule.cpp */; };
FFFFba00baa87fbaba00baa8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00baa87fbaba00baa8 /* src/contact/GuContactSphereMesh.cpp */; };
FFFFba00bb107fbaba00bb10 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00bb107fbaba00bb10 /* src/contact/GuContactSpherePlane.cpp */; };
FFFFba00bb787fbaba00bb78 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00bb787fbaba00bb78 /* src/contact/GuContactSphereSphere.cpp */; };
FFFFba00bbe07fbaba00bbe0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00bbe07fbaba00bbe0 /* src/contact/GuFeatureCode.cpp */; };
FFFFba00bc487fbaba00bc48 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00bc487fbaba00bc48 /* src/contact/GuLegacyContactBoxHeightField.cpp */; };
FFFFba00bcb07fbaba00bcb0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00bcb07fbaba00bcb0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; };
FFFFba00bd187fbaba00bd18 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00bd187fbaba00bd18 /* src/contact/GuLegacyContactConvexHeightField.cpp */; };
FFFFba00bd807fbaba00bd80 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00bd807fbaba00bd80 /* src/contact/GuLegacyContactSphereHeightField.cpp */; };
FFFFba00bde87fbaba00bde8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00bde87fbaba00bde8 /* src/common/GuBarycentricCoordinates.cpp */; };
FFFFba00be507fbaba00be50 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00be507fbaba00be50 /* src/common/GuSeparatingAxes.cpp */; };
FFFFba00beb87fbaba00beb8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00beb87fbaba00beb8 /* src/convex/GuBigConvexData.cpp */; };
FFFFba00bf207fbaba00bf20 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00bf207fbaba00bf20 /* src/convex/GuConvexHelper.cpp */; };
FFFFba00bf887fbaba00bf88 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00bf887fbaba00bf88 /* src/convex/GuConvexMesh.cpp */; };
FFFFba00bff07fbaba00bff0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00bff07fbaba00bff0 /* src/convex/GuConvexSupportTable.cpp */; };
FFFFba00c0587fbaba00c058 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00c0587fbaba00c058 /* src/convex/GuConvexUtilsInternal.cpp */; };
FFFFba00c0c07fbaba00c0c0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00c0c07fbaba00c0c0 /* src/convex/GuHillClimbing.cpp */; };
FFFFba00c1287fbaba00c128 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00c1287fbaba00c128 /* src/convex/GuShapeConvex.cpp */; };
FFFFba00c1907fbaba00c190 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00c1907fbaba00c190 /* src/distance/GuDistancePointBox.cpp */; };
FFFFba00c1f87fbaba00c1f8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00c1f87fbaba00c1f8 /* src/distance/GuDistancePointTriangle.cpp */; };
FFFFba00c2607fbaba00c260 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00c2607fbaba00c260 /* src/distance/GuDistanceSegmentBox.cpp */; };
FFFFba00c2c87fbaba00c2c8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00c2c87fbaba00c2c8 /* src/distance/GuDistanceSegmentSegment.cpp */; };
FFFFba00c3307fbaba00c330 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00c3307fbaba00c330 /* src/distance/GuDistanceSegmentTriangle.cpp */; };
FFFFba00c3987fbaba00c398 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00c3987fbaba00c398 /* src/sweep/GuSweepBoxBox.cpp */; };
FFFFba00c4007fbaba00c400 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00c4007fbaba00c400 /* src/sweep/GuSweepBoxSphere.cpp */; };
FFFFba00c4687fbaba00c468 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00c4687fbaba00c468 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; };
FFFFba00c4d07fbaba00c4d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00c4d07fbaba00c4d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; };
FFFFba00c5387fbaba00c538 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00c5387fbaba00c538 /* src/sweep/GuSweepCapsuleBox.cpp */; };
FFFFba00c5a07fbaba00c5a0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00c5a07fbaba00c5a0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; };
FFFFba00c6087fbaba00c608 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00c6087fbaba00c608 /* src/sweep/GuSweepCapsuleTriangle.cpp */; };
FFFFba00c6707fbaba00c670 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00c6707fbaba00c670 /* src/sweep/GuSweepSphereCapsule.cpp */; };
FFFFba00c6d87fbaba00c6d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00c6d87fbaba00c6d8 /* src/sweep/GuSweepSphereSphere.cpp */; };
FFFFba00c7407fbaba00c740 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00c7407fbaba00c740 /* src/sweep/GuSweepSphereTriangle.cpp */; };
FFFFba00c7a87fbaba00c7a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00c7a87fbaba00c7a8 /* src/sweep/GuSweepTriangleUtils.cpp */; };
FFFFba00c8107fbaba00c810 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00c8107fbaba00c810 /* src/gjk/GuEPA.cpp */; };
FFFFba00c8787fbaba00c878 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00c8787fbaba00c878 /* src/gjk/GuGJKSimplex.cpp */; };
FFFFba00c8e07fbaba00c8e0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00c8e07fbaba00c8e0 /* src/gjk/GuGJKTest.cpp */; };
FFFFba00c9487fbaba00c948 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00c9487fbaba00c948 /* src/intersection/GuIntersectionBoxBox.cpp */; };
FFFFba00c9b07fbaba00c9b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00c9b07fbaba00c9b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; };
FFFFba00ca187fbaba00ca18 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00ca187fbaba00ca18 /* src/intersection/GuIntersectionEdgeEdge.cpp */; };
FFFFba00ca807fbaba00ca80 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00ca807fbaba00ca80 /* src/intersection/GuIntersectionRayBox.cpp */; };
FFFFba00cae87fbaba00cae8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00cae87fbaba00cae8 /* src/intersection/GuIntersectionRayCapsule.cpp */; };
FFFFba00cb507fbaba00cb50 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00cb507fbaba00cb50 /* src/intersection/GuIntersectionRaySphere.cpp */; };
FFFFba00cbb87fbaba00cbb8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00cbb87fbaba00cbb8 /* src/intersection/GuIntersectionSphereBox.cpp */; };
FFFFba00cc207fbaba00cc20 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00cc207fbaba00cc20 /* src/intersection/GuIntersectionTriangleBox.cpp */; };
FFFFba00cc887fbaba00cc88 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00cc887fbaba00cc88 /* src/mesh/GuBV32.cpp */; };
FFFFba00ccf07fbaba00ccf0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00ccf07fbaba00ccf0 /* src/mesh/GuBV32Build.cpp */; };
FFFFba00cd587fbaba00cd58 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00cd587fbaba00cd58 /* src/mesh/GuBV4.cpp */; };
FFFFba00cdc07fbaba00cdc0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00cdc07fbaba00cdc0 /* src/mesh/GuBV4Build.cpp */; };
FFFFba00ce287fbaba00ce28 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00ce287fbaba00ce28 /* src/mesh/GuBV4_AABBSweep.cpp */; };
FFFFba00ce907fbaba00ce90 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00ce907fbaba00ce90 /* src/mesh/GuBV4_BoxOverlap.cpp */; };
FFFFba00cef87fbaba00cef8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00cef87fbaba00cef8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; };
FFFFba00cf607fbaba00cf60 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00cf607fbaba00cf60 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; };
FFFFba00cfc87fbaba00cfc8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00cfc87fbaba00cfc8 /* src/mesh/GuBV4_OBBSweep.cpp */; };
FFFFba00d0307fbaba00d030 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00d0307fbaba00d030 /* src/mesh/GuBV4_Raycast.cpp */; };
FFFFba00d0987fbaba00d098 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00d0987fbaba00d098 /* src/mesh/GuBV4_SphereOverlap.cpp */; };
FFFFba00d1007fbaba00d100 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00d1007fbaba00d100 /* src/mesh/GuBV4_SphereSweep.cpp */; };
FFFFba00d1687fbaba00d168 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00d1687fbaba00d168 /* src/mesh/GuMeshQuery.cpp */; };
FFFFba00d1d07fbaba00d1d0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00d1d07fbaba00d1d0 /* src/mesh/GuMidphaseBV4.cpp */; };
FFFFba00d2387fbaba00d238 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00d2387fbaba00d238 /* src/mesh/GuMidphaseRTree.cpp */; };
FFFFba00d2a07fbaba00d2a0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00d2a07fbaba00d2a0 /* src/mesh/GuOverlapTestsMesh.cpp */; };
FFFFba00d3087fbaba00d308 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00d3087fbaba00d308 /* src/mesh/GuRTree.cpp */; };
FFFFba00d3707fbaba00d370 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00d3707fbaba00d370 /* src/mesh/GuRTreeQueries.cpp */; };
FFFFba00d3d87fbaba00d3d8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00d3d87fbaba00d3d8 /* src/mesh/GuSweepsMesh.cpp */; };
FFFFba00d4407fbaba00d440 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00d4407fbaba00d440 /* src/mesh/GuTriangleMesh.cpp */; };
FFFFba00d4a87fbaba00d4a8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00d4a87fbaba00d4a8 /* src/mesh/GuTriangleMeshBV4.cpp */; };
FFFFba00d5107fbaba00d510 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00d5107fbaba00d510 /* src/mesh/GuTriangleMeshRTree.cpp */; };
FFFFba00d5787fbaba00d578 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00d5787fbaba00d578 /* src/hf/GuHeightField.cpp */; };
FFFFba00d5e07fbaba00d5e0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00d5e07fbaba00d5e0 /* src/hf/GuHeightFieldUtil.cpp */; };
FFFFba00d6487fbaba00d648 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00d6487fbaba00d648 /* src/hf/GuOverlapTestsHF.cpp */; };
FFFFba00d6b07fbaba00d6b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00d6b07fbaba00d6b0 /* src/hf/GuSweepsHF.cpp */; };
FFFFba00d7187fbaba00d718 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00d7187fbaba00d718 /* src/pcm/GuPCMContactBoxBox.cpp */; };
FFFFba00d7807fbaba00d780 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00d7807fbaba00d780 /* src/pcm/GuPCMContactBoxConvex.cpp */; };
FFFFba00d7e87fbaba00d7e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00d7e87fbaba00d7e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; };
FFFFba00d8507fbaba00d850 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00d8507fbaba00d850 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; };
FFFFba00d8b87fbaba00d8b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00d8b87fbaba00d8b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; };
FFFFba00d9207fbaba00d920 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00d9207fbaba00d920 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; };
FFFFba00d9887fbaba00d988 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00d9887fbaba00d988 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; };
FFFFba00d9f07fbaba00d9f0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00d9f07fbaba00d9f0 /* src/pcm/GuPCMContactConvexCommon.cpp */; };
FFFFba00da587fbaba00da58 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00da587fbaba00da58 /* src/pcm/GuPCMContactConvexConvex.cpp */; };
FFFFba00dac07fbaba00dac0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00dac07fbaba00dac0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; };
FFFFba00db287fbaba00db28 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00db287fbaba00db28 /* src/pcm/GuPCMContactConvexMesh.cpp */; };
FFFFba00db907fbaba00db90 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00db907fbaba00db90 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; };
FFFFba00dbf87fbaba00dbf8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00dbf87fbaba00dbf8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; };
FFFFba00dc607fbaba00dc60 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00dc607fbaba00dc60 /* src/pcm/GuPCMContactPlaneBox.cpp */; };
FFFFba00dcc87fbaba00dcc8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00dcc87fbaba00dcc8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; };
FFFFba00dd307fbaba00dd30 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00dd307fbaba00dd30 /* src/pcm/GuPCMContactPlaneConvex.cpp */; };
FFFFba00dd987fbaba00dd98 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00dd987fbaba00dd98 /* src/pcm/GuPCMContactSphereBox.cpp */; };
FFFFba00de007fbaba00de00 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00de007fbaba00de00 /* src/pcm/GuPCMContactSphereCapsule.cpp */; };
FFFFba00de687fbaba00de68 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00de687fbaba00de68 /* src/pcm/GuPCMContactSphereConvex.cpp */; };
FFFFba00ded07fbaba00ded0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00ded07fbaba00ded0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; };
FFFFba00df387fbaba00df38 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00df387fbaba00df38 /* src/pcm/GuPCMContactSphereMesh.cpp */; };
FFFFba00dfa07fbaba00dfa0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00dfa07fbaba00dfa0 /* src/pcm/GuPCMContactSpherePlane.cpp */; };
FFFFba00e0087fbaba00e008 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00e0087fbaba00e008 /* src/pcm/GuPCMContactSphereSphere.cpp */; };
FFFFba00e0707fbaba00e070 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00e0707fbaba00e070 /* src/pcm/GuPCMShapeConvex.cpp */; };
FFFFba00e0d87fbaba00e0d8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00e0d87fbaba00e0d8 /* src/pcm/GuPCMTriangleContactGen.cpp */; };
FFFFba00e1407fbaba00e140 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00e1407fbaba00e140 /* src/pcm/GuPersistentContactManifold.cpp */; };
FFFFba00e1a87fbaba00e1a8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00e1a87fbaba00e1a8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; };
FFFFba00e2107fbaba00e210 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDba00e2107fbaba00e210 /* src/ccd/GuCCDSweepPrimitives.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFDb9b6f2d07fbab9b6f2d0 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFDba0146007fbaba014600 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; };
FFFDba0146687fbaba014668 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; };
FFFDba0146d07fbaba0146d0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; };
FFFDba0147387fbaba014738 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; };
FFFDba0147a07fbaba0147a0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; };
FFFDba0148087fbaba014808 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; };
FFFDba0148707fbaba014870 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; };
FFFDba0148d87fbaba0148d8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFDba0149407fbaba014940 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; };
FFFDba0149a87fbaba0149a8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; };
FFFDba014a107fbaba014a10 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; };
FFFDba014a787fbaba014a78 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; };
FFFDba014ae07fbaba014ae0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; };
FFFDba014b487fbaba014b48 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; };
FFFDba014bb07fbaba014bb0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; };
FFFDba014c187fbaba014c18 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; };
FFFDba014c807fbaba014c80 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; };
FFFDba014ce87fbaba014ce8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; };
FFFDba014d507fbaba014d50 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; };
FFFDba014db87fbaba014db8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; };
FFFDba014e207fbaba014e20 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; };
FFFDba014e887fbaba014e88 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; };
FFFDba014ef07fbaba014ef0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; };
FFFDba014f587fbaba014f58 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; };
FFFDba014fc07fbaba014fc0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; };
FFFDba0150287fbaba015028 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; };
FFFDba0150907fbaba015090 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; };
FFFDba0150f87fbaba0150f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; };
FFFDba0151607fbaba015160 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
FFFDba0151c87fbaba0151c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; };
FFFDba0152307fbaba015230 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; };
FFFDba0152987fbaba015298 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
FFFDba0153007fbaba015300 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; };
FFFDb899f2007fbab899f200 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb899f2687fbab899f268 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb899f2d07fbab899f2d0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb899f3387fbab899f338 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb899f3a07fbab899f3a0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb899f4087fbab899f408 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb899f4707fbab899f470 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb899f4d87fbab899f4d8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb899f5407fbab899f540 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; };
FFFDb899f5a87fbab899f5a8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; };
FFFDb899f6107fbab899f610 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; };
FFFDb899f6787fbab899f678 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; };
FFFDb899f6e07fbab899f6e0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; };
FFFDb899f7487fbab899f748 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; };
FFFDb899f7b07fbab899f7b0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; };
FFFDb899f8187fbab899f818 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; };
FFFDb899f8807fbab899f880 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; };
FFFDb899f8e87fbab899f8e8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; };
FFFDb899f9507fbab899f950 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; };
FFFDb899f9b87fbab899f9b8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; };
FFFDb899fa207fbab899fa20 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; };
FFFDb899fa887fbab899fa88 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; };
FFFDb899faf07fbab899faf0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; };
FFFDb899fb587fbab899fb58 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; };
FFFDb899fbc07fbab899fbc0 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; };
FFFDb899fc287fbab899fc28 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFDb899fc907fbab899fc90 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; };
FFFDb899fcf87fbab899fcf8 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; };
FFFDb899fd607fbab899fd60 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; };
FFFDb899fdc87fbab899fdc8 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; };
FFFDb899fe307fbab899fe30 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; };
FFFDb899fe987fbab899fe98 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; };
FFFDb899ff007fbab899ff00 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; };
FFFDb899ff687fbab899ff68 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; };
FFFDb899ffd07fbab899ffd0 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; };
FFFDba0076007fbaba007600 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; };
FFFDba0076687fbaba007668 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; };
FFFDba0076d07fbaba0076d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; };
FFFDba0077387fbaba007738 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; };
FFFDba0077a07fbaba0077a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; };
FFFDba0078087fbaba007808 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; };
FFFDba0078707fbaba007870 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; };
FFFDba0078d87fbaba0078d8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; };
FFFDba0079407fbaba007940 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; };
FFFDba0079a87fbaba0079a8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; };
FFFDba007a107fbaba007a10 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; };
FFFDba007a787fbaba007a78 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; };
FFFDba007ae07fbaba007ae0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; };
FFFDba007b487fbaba007b48 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; };
FFFDba007bb07fbaba007bb0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; };
FFFDba007c187fbaba007c18 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; };
FFFDba007c807fbaba007c80 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; };
FFFDba007ce87fbaba007ce8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; };
FFFDba007d507fbaba007d50 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; };
FFFDba007db87fbaba007db8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; };
FFFDba007e207fbaba007e20 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; };
FFFDba007e887fbaba007e88 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; };
FFFDba007ef07fbaba007ef0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; };
FFFDba007f587fbaba007f58 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; };
FFFDba007fc07fbaba007fc0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; };
FFFDba0080287fbaba008028 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; };
FFFDba0080907fbaba008090 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; };
FFFDba0080f87fbaba0080f8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; };
FFFDba0081607fbaba008160 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; };
FFFDba0081c87fbaba0081c8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; };
FFFDba0082307fbaba008230 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; };
FFFDba0082987fbaba008298 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; };
FFFDba0083007fbaba008300 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; };
FFFDba0083687fbaba008368 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; };
FFFDba0083d07fbaba0083d0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; };
FFFDba0084387fbaba008438 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; };
FFFDba0084a07fbaba0084a0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; };
FFFDba0085087fbaba008508 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; };
FFFDba0085707fbaba008570 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; };
FFFDba0085d87fbaba0085d8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; };
FFFDba0086407fbaba008640 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; };
FFFDba0086a87fbaba0086a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; };
FFFDba0087107fbaba008710 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; };
FFFDba0087787fbaba008778 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; };
FFFDba0087e07fbaba0087e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; };
FFFDba0088487fbaba008848 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; };
FFFDba0088b07fbaba0088b0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; };
FFFDba0089187fbaba008918 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; };
FFFDba0089807fbaba008980 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; };
FFFDba0089e87fbaba0089e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; };
FFFDba008a507fbaba008a50 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; };
FFFDba008ab87fbaba008ab8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; };
FFFDba008b207fbaba008b20 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_FeatureBased.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_FeatureBased.h"; sourceTree = SOURCE_ROOT; };
FFFDba008b887fbaba008b88 /* src/sweep/GuSweepBoxTriangle_SAT.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_SAT.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_SAT.h"; sourceTree = SOURCE_ROOT; };
FFFDba008bf07fbaba008bf0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; };
FFFDba008c587fbaba008c58 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; };
FFFDba008cc07fbaba008cc0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; };
FFFDba008d287fbaba008d28 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; };
FFFDba008d907fbaba008d90 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; };
FFFDba008df87fbaba008df8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; };
FFFDba008e607fbaba008e60 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; };
FFFDba008ec87fbaba008ec8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; };
FFFDba008f307fbaba008f30 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; };
FFFDba008f987fbaba008f98 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; };
FFFDba0090007fbaba009000 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; };
FFFDba0090687fbaba009068 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; };
FFFDba0090d07fbaba0090d0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; };
FFFDba0091387fbaba009138 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; };
FFFDba0091a07fbaba0091a0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; };
FFFDba0092087fbaba009208 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; };
FFFDba0092707fbaba009270 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; };
FFFDba0092d87fbaba0092d8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; };
FFFDba0093407fbaba009340 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; };
FFFDba0093a87fbaba0093a8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; };
FFFDba0094107fbaba009410 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; };
FFFDba0094787fbaba009478 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; };
FFFDba0094e07fbaba0094e0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; };
FFFDba0095487fbaba009548 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; };
FFFDba0095b07fbaba0095b0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; };
FFFDba0096187fbaba009618 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; };
FFFDba0096807fbaba009680 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; };
FFFDba0096e87fbaba0096e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; };
FFFDba0097507fbaba009750 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; };
FFFDba0097b87fbaba0097b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; };
FFFDba0098207fbaba009820 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; };
FFFDba0098887fbaba009888 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; };
FFFDba0098f07fbaba0098f0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; };
FFFDba0099587fbaba009958 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; };
FFFDba0099c07fbaba0099c0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; };
FFFDba009a287fbaba009a28 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; };
FFFDba009a907fbaba009a90 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; };
FFFDba009af87fbaba009af8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; };
FFFDba009b607fbaba009b60 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; };
FFFDba009bc87fbaba009bc8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; };
FFFDba009c307fbaba009c30 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; };
FFFDba009c987fbaba009c98 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; };
FFFDba009d007fbaba009d00 /* src/mesh/GuBV4_AABBAABBSweepTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_AABBAABBSweepTest.h"; path = "../../GeomUtils/src/mesh/GuBV4_AABBAABBSweepTest.h"; sourceTree = SOURCE_ROOT; };
FFFDba009d687fbaba009d68 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxBoxOverlapTest.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxBoxOverlapTest.h"; sourceTree = SOURCE_ROOT; };
FFFDba009dd07fbaba009dd0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxOverlap_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxOverlap_Internal.h"; sourceTree = SOURCE_ROOT; };
FFFDba009e387fbaba009e38 /* src/mesh/GuBV4_BoxSweep_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxSweep_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxSweep_Internal.h"; sourceTree = SOURCE_ROOT; };
FFFDba009ea07fbaba009ea0 /* src/mesh/GuBV4_BoxSweep_Params.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxSweep_Params.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxSweep_Params.h"; sourceTree = SOURCE_ROOT; };
FFFDba009f087fbaba009f08 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweep_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweep_Internal.h"; sourceTree = SOURCE_ROOT; };
FFFDba009f707fbaba009f70 /* src/mesh/GuBV4_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Common.h"; path = "../../GeomUtils/src/mesh/GuBV4_Common.h"; sourceTree = SOURCE_ROOT; };
FFFDba009fd87fbaba009fd8 /* src/mesh/GuBV4_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_Internal.h"; sourceTree = SOURCE_ROOT; };
FFFDba00a0407fbaba00a040 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h"; sourceTree = SOURCE_ROOT; };
FFFDba00a0a87fbaba00a0a8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h"; sourceTree = SOURCE_ROOT; };
FFFDba00a1107fbaba00a110 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h"; sourceTree = SOURCE_ROOT; };
FFFDba00a1787fbaba00a178 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h"; sourceTree = SOURCE_ROOT; };
FFFDba00a1e07fbaba00a1e0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h"; sourceTree = SOURCE_ROOT; };
FFFDba00a2487fbaba00a248 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h"; sourceTree = SOURCE_ROOT; };
FFFDba00a2b07fbaba00a2b0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h"; sourceTree = SOURCE_ROOT; };
FFFDba00a3187fbaba00a318 /* src/mesh/GuBV4_Slabs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs.h"; sourceTree = SOURCE_ROOT; };
FFFDba00a3807fbaba00a380 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_KajiyaNoOrder.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_KajiyaNoOrder.h"; sourceTree = SOURCE_ROOT; };
FFFDba00a3e87fbaba00a3e8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_KajiyaOrdered.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_KajiyaOrdered.h"; sourceTree = SOURCE_ROOT; };
FFFDba00a4507fbaba00a450 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_SwizzledNoOrder.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_SwizzledNoOrder.h"; sourceTree = SOURCE_ROOT; };
FFFDba00a4b87fbaba00a4b8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_SwizzledOrdered.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_SwizzledOrdered.h"; sourceTree = SOURCE_ROOT; };
FFFDba00a5207fbaba00a520 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; };
FFFDba00a5887fbaba00a588 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; };
FFFDba00a5f07fbaba00a5f0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; };
FFFDba00a6587fbaba00a658 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; };
FFFDba00a6c07fbaba00a6c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; };
FFFDba00a7287fbaba00a728 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; };
FFFDba00a7907fbaba00a790 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; };
FFFDba00a7f87fbaba00a7f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; };
FFFDba00a8607fbaba00a860 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
FFFDba00a8c87fbaba00a8c8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; };
FFFDba00a9307fbaba00a930 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; };
FFFDba00a9987fbaba00a998 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; };
FFFDba00aa007fbaba00aa00 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; };
FFFDba00aa687fbaba00aa68 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; };
FFFDba00aad07fbaba00aad0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; };
FFFDba00ab387fbaba00ab38 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; };
FFFDba00aba07fbaba00aba0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; };
FFFDba00ac087fbaba00ac08 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; };
FFFDba00ac707fbaba00ac70 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; };
FFFDba00acd87fbaba00acd8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; };
FFFDba00ad407fbaba00ad40 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; };
FFFDba00ada87fbaba00ada8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; };
FFFDba00ae107fbaba00ae10 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; };
FFFDba00ae787fbaba00ae78 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; };
FFFDba00aee07fbaba00aee0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00af487fbaba00af48 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00afb07fbaba00afb0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00b0187fbaba00b018 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00b0807fbaba00b080 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00b0e87fbaba00b0e8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00b1507fbaba00b150 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00b1b87fbaba00b1b8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00b2207fbaba00b220 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00b2887fbaba00b288 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00b2f07fbaba00b2f0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00b3587fbaba00b358 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00b3c07fbaba00b3c0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00b4287fbaba00b428 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00b4907fbaba00b490 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00b4f87fbaba00b4f8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00b5607fbaba00b560 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00b5c87fbaba00b5c8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00b6307fbaba00b630 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00b6987fbaba00b698 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00b7007fbaba00b700 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00b7687fbaba00b768 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00b7d07fbaba00b7d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00b8387fbaba00b838 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00b8a07fbaba00b8a0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00b9087fbaba00b908 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00b9707fbaba00b970 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00b9d87fbaba00b9d8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00ba407fbaba00ba40 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00baa87fbaba00baa8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00bb107fbaba00bb10 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00bb787fbaba00bb78 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00bbe07fbaba00bbe0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00bc487fbaba00bc48 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00bcb07fbaba00bcb0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00bd187fbaba00bd18 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00bd807fbaba00bd80 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00bde87fbaba00bde8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00be507fbaba00be50 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00beb87fbaba00beb8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00bf207fbaba00bf20 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00bf887fbaba00bf88 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00bff07fbaba00bff0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00c0587fbaba00c058 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00c0c07fbaba00c0c0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00c1287fbaba00c128 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00c1907fbaba00c190 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00c1f87fbaba00c1f8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00c2607fbaba00c260 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00c2c87fbaba00c2c8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00c3307fbaba00c330 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00c3987fbaba00c398 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00c4007fbaba00c400 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00c4687fbaba00c468 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_FeatureBased.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_FeatureBased.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00c4d07fbaba00c4d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_SAT.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_SAT.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00c5387fbaba00c538 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00c5a07fbaba00c5a0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00c6087fbaba00c608 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00c6707fbaba00c670 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00c6d87fbaba00c6d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00c7407fbaba00c740 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00c7a87fbaba00c7a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00c8107fbaba00c810 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00c8787fbaba00c878 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00c8e07fbaba00c8e0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00c9487fbaba00c948 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00c9b07fbaba00c9b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00ca187fbaba00ca18 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00ca807fbaba00ca80 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00cae87fbaba00cae8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00cb507fbaba00cb50 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00cbb87fbaba00cbb8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00cc207fbaba00cc20 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00cc887fbaba00cc88 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00ccf07fbaba00ccf0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00cd587fbaba00cd58 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00cdc07fbaba00cdc0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00ce287fbaba00ce28 /* src/mesh/GuBV4_AABBSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_AABBSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_AABBSweep.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00ce907fbaba00ce90 /* src/mesh/GuBV4_BoxOverlap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxOverlap.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_BoxOverlap.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00cef87fbaba00cef8 /* src/mesh/GuBV4_CapsuleSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweep.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00cf607fbaba00cf60 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweepAA.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweepAA.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00cfc87fbaba00cfc8 /* src/mesh/GuBV4_OBBSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_OBBSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_OBBSweep.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00d0307fbaba00d030 /* src/mesh/GuBV4_Raycast.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Raycast.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_Raycast.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00d0987fbaba00d098 /* src/mesh/GuBV4_SphereOverlap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_SphereOverlap.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_SphereOverlap.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00d1007fbaba00d100 /* src/mesh/GuBV4_SphereSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_SphereSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_SphereSweep.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00d1687fbaba00d168 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00d1d07fbaba00d1d0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00d2387fbaba00d238 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00d2a07fbaba00d2a0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00d3087fbaba00d308 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00d3707fbaba00d370 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00d3d87fbaba00d3d8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00d4407fbaba00d440 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00d4a87fbaba00d4a8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00d5107fbaba00d510 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00d5787fbaba00d578 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00d5e07fbaba00d5e0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00d6487fbaba00d648 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00d6b07fbaba00d6b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00d7187fbaba00d718 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00d7807fbaba00d780 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00d7e87fbaba00d7e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00d8507fbaba00d850 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00d8b87fbaba00d8b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00d9207fbaba00d920 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00d9887fbaba00d988 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00d9f07fbaba00d9f0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00da587fbaba00da58 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00dac07fbaba00dac0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00db287fbaba00db28 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00db907fbaba00db90 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00dbf87fbaba00dbf8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00dc607fbaba00dc60 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00dcc87fbaba00dcc8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00dd307fbaba00dd30 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00dd987fbaba00dd98 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00de007fbaba00de00 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00de687fbaba00de68 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00ded07fbaba00ded0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00df387fbaba00df38 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00dfa07fbaba00dfa0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00e0087fbaba00e008 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00e0707fbaba00e070 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00e0d87fbaba00e0d8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00e1407fbaba00e140 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00e1a87fbaba00e1a8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba00e2107fbaba00e210 /* src/ccd/GuCCDSweepPrimitives.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepPrimitives.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepPrimitives.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
FFF2b9b6f2d07fbab9b6f2d0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFFba0079a87fbaba0079a8,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFCb9b6f2d07fbab9b6f2d0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF8b9b6f2d07fbab9b6f2d0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFFb899f2007fbab899f200,
FFFFb899f2687fbab899f268,
FFFFb899f2d07fbab899f2d0,
FFFFb899f3387fbab899f338,
FFFFb899f3a07fbab899f3a0,
FFFFb899f4087fbab899f408,
FFFFb899f4707fbab899f470,
FFFFb899f4d87fbab899f4d8,
FFFFba00aee07fbaba00aee0,
FFFFba00af487fbaba00af48,
FFFFba00afb07fbaba00afb0,
FFFFba00b0187fbaba00b018,
FFFFba00b0807fbaba00b080,
FFFFba00b0e87fbaba00b0e8,
FFFFba00b1507fbaba00b150,
FFFFba00b1b87fbaba00b1b8,
FFFFba00b2207fbaba00b220,
FFFFba00b2887fbaba00b288,
FFFFba00b2f07fbaba00b2f0,
FFFFba00b3587fbaba00b358,
FFFFba00b3c07fbaba00b3c0,
FFFFba00b4287fbaba00b428,
FFFFba00b4907fbaba00b490,
FFFFba00b4f87fbaba00b4f8,
FFFFba00b5607fbaba00b560,
FFFFba00b5c87fbaba00b5c8,
FFFFba00b6307fbaba00b630,
FFFFba00b6987fbaba00b698,
FFFFba00b7007fbaba00b700,
FFFFba00b7687fbaba00b768,
FFFFba00b7d07fbaba00b7d0,
FFFFba00b8387fbaba00b838,
FFFFba00b8a07fbaba00b8a0,
FFFFba00b9087fbaba00b908,
FFFFba00b9707fbaba00b970,
FFFFba00b9d87fbaba00b9d8,
FFFFba00ba407fbaba00ba40,
FFFFba00baa87fbaba00baa8,
FFFFba00bb107fbaba00bb10,
FFFFba00bb787fbaba00bb78,
FFFFba00bbe07fbaba00bbe0,
FFFFba00bc487fbaba00bc48,
FFFFba00bcb07fbaba00bcb0,
FFFFba00bd187fbaba00bd18,
FFFFba00bd807fbaba00bd80,
FFFFba00bde87fbaba00bde8,
FFFFba00be507fbaba00be50,
FFFFba00beb87fbaba00beb8,
FFFFba00bf207fbaba00bf20,
FFFFba00bf887fbaba00bf88,
FFFFba00bff07fbaba00bff0,
FFFFba00c0587fbaba00c058,
FFFFba00c0c07fbaba00c0c0,
FFFFba00c1287fbaba00c128,
FFFFba00c1907fbaba00c190,
FFFFba00c1f87fbaba00c1f8,
FFFFba00c2607fbaba00c260,
FFFFba00c2c87fbaba00c2c8,
FFFFba00c3307fbaba00c330,
FFFFba00c3987fbaba00c398,
FFFFba00c4007fbaba00c400,
FFFFba00c4687fbaba00c468,
FFFFba00c4d07fbaba00c4d0,
FFFFba00c5387fbaba00c538,
FFFFba00c5a07fbaba00c5a0,
FFFFba00c6087fbaba00c608,
FFFFba00c6707fbaba00c670,
FFFFba00c6d87fbaba00c6d8,
FFFFba00c7407fbaba00c740,
FFFFba00c7a87fbaba00c7a8,
FFFFba00c8107fbaba00c810,
FFFFba00c8787fbaba00c878,
FFFFba00c8e07fbaba00c8e0,
FFFFba00c9487fbaba00c948,
FFFFba00c9b07fbaba00c9b0,
FFFFba00ca187fbaba00ca18,
FFFFba00ca807fbaba00ca80,
FFFFba00cae87fbaba00cae8,
FFFFba00cb507fbaba00cb50,
FFFFba00cbb87fbaba00cbb8,
FFFFba00cc207fbaba00cc20,
FFFFba00cc887fbaba00cc88,
FFFFba00ccf07fbaba00ccf0,
FFFFba00cd587fbaba00cd58,
FFFFba00cdc07fbaba00cdc0,
FFFFba00ce287fbaba00ce28,
FFFFba00ce907fbaba00ce90,
FFFFba00cef87fbaba00cef8,
FFFFba00cf607fbaba00cf60,
FFFFba00cfc87fbaba00cfc8,
FFFFba00d0307fbaba00d030,
FFFFba00d0987fbaba00d098,
FFFFba00d1007fbaba00d100,
FFFFba00d1687fbaba00d168,
FFFFba00d1d07fbaba00d1d0,
FFFFba00d2387fbaba00d238,
FFFFba00d2a07fbaba00d2a0,
FFFFba00d3087fbaba00d308,
FFFFba00d3707fbaba00d370,
FFFFba00d3d87fbaba00d3d8,
FFFFba00d4407fbaba00d440,
FFFFba00d4a87fbaba00d4a8,
FFFFba00d5107fbaba00d510,
FFFFba00d5787fbaba00d578,
FFFFba00d5e07fbaba00d5e0,
FFFFba00d6487fbaba00d648,
FFFFba00d6b07fbaba00d6b0,
FFFFba00d7187fbaba00d718,
FFFFba00d7807fbaba00d780,
FFFFba00d7e87fbaba00d7e8,
FFFFba00d8507fbaba00d850,
FFFFba00d8b87fbaba00d8b8,
FFFFba00d9207fbaba00d920,
FFFFba00d9887fbaba00d988,
FFFFba00d9f07fbaba00d9f0,
FFFFba00da587fbaba00da58,
FFFFba00dac07fbaba00dac0,
FFFFba00db287fbaba00db28,
FFFFba00db907fbaba00db90,
FFFFba00dbf87fbaba00dbf8,
FFFFba00dc607fbaba00dc60,
FFFFba00dcc87fbaba00dcc8,
FFFFba00dd307fbaba00dd30,
FFFFba00dd987fbaba00dd98,
FFFFba00de007fbaba00de00,
FFFFba00de687fbaba00de68,
FFFFba00ded07fbaba00ded0,
FFFFba00df387fbaba00df38,
FFFFba00dfa07fbaba00dfa0,
FFFFba00e0087fbaba00e008,
FFFFba00e0707fbaba00e070,
FFFFba00e0d87fbaba00e0d8,
FFFFba00e1407fbaba00e140,
FFFFba00e1a87fbaba00e1a8,
FFFFba00e2107fbaba00e210,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
FFF4b9dcf4e07fbab9dcf4e0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFAb9b5ed307fbab9b5ed30 /* PxFoundation */;
targetProxy = FFF5b9b5ed307fbab9b5ed30 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PxFoundation */
FFFFb8996f187fbab8996f18 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb8996f187fbab8996f18 /* src/PsAllocator.cpp */; };
FFFFb8996f807fbab8996f80 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb8996f807fbab8996f80 /* src/PsAssert.cpp */; };
FFFFb8996fe87fbab8996fe8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb8996fe87fbab8996fe8 /* src/PsFoundation.cpp */; };
FFFFb89970507fbab8997050 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb89970507fbab8997050 /* src/PsMathUtils.cpp */; };
FFFFb89970b87fbab89970b8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb89970b87fbab89970b8 /* src/PsString.cpp */; };
FFFFb89971207fbab8997120 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb89971207fbab8997120 /* src/PsTempAllocator.cpp */; };
FFFFb89971887fbab8997188 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb89971887fbab8997188 /* src/PsUtilities.cpp */; };
FFFFb89971f07fbab89971f0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb89971f07fbab89971f0 /* src/unix/PsUnixAtomic.cpp */; };
FFFFb89972587fbab8997258 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb89972587fbab8997258 /* src/unix/PsUnixCpu.cpp */; };
FFFFb89972c07fbab89972c0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb89972c07fbab89972c0 /* src/unix/PsUnixFPU.cpp */; };
FFFFb89973287fbab8997328 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb89973287fbab8997328 /* src/unix/PsUnixMutex.cpp */; };
FFFFb89973907fbab8997390 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb89973907fbab8997390 /* src/unix/PsUnixPrintString.cpp */; };
FFFFb89973f87fbab89973f8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb89973f87fbab89973f8 /* src/unix/PsUnixSList.cpp */; };
FFFFb89974607fbab8997460 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb89974607fbab8997460 /* src/unix/PsUnixSocket.cpp */; };
FFFFb89974c87fbab89974c8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb89974c87fbab89974c8 /* src/unix/PsUnixSync.cpp */; };
FFFFb89975307fbab8997530 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb89975307fbab8997530 /* src/unix/PsUnixThread.cpp */; };
FFFFb89975987fbab8997598 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb89975987fbab8997598 /* src/unix/PsUnixTime.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFDb9b5ed307fbab9b5ed30 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFDb898b6007fbab898b600 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; };
FFFDb898b6687fbab898b668 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; };
FFFDb898b6d07fbab898b6d0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; };
FFFDb898b7387fbab898b738 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; };
FFFDb898b7a07fbab898b7a0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; };
FFFDb898b8087fbab898b808 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; };
FFFDb898b8707fbab898b870 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; };
FFFDb898b8d87fbab898b8d8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; };
FFFDb898b9407fbab898b940 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; };
FFFDb898b9a87fbab898b9a8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; };
FFFDb898ba107fbab898ba10 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; };
FFFDb898ba787fbab898ba78 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; };
FFFDb898bae07fbab898bae0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; };
FFFDb898bb487fbab898bb48 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; };
FFFDb898bbb07fbab898bbb0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; };
FFFDb898bc187fbab898bc18 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; };
FFFDb898bc807fbab898bc80 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; };
FFFDb898bce87fbab898bce8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; };
FFFDb898bd507fbab898bd50 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; };
FFFDb898bdb87fbab898bdb8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; };
FFFDb898be207fbab898be20 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; };
FFFDb898be887fbab898be88 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; };
FFFDb898bef07fbab898bef0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; };
FFFDb898bf587fbab898bf58 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; };
FFFDb898bfc07fbab898bfc0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; };
FFFDb898c0287fbab898c028 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; };
FFFDb898c0907fbab898c090 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; };
FFFDb898c0f87fbab898c0f8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; };
FFFDb898c1607fbab898c160 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; };
FFFDb8995c007fbab8995c00 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; };
FFFDb8995c687fbab8995c68 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; };
FFFDb8995cd07fbab8995cd0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; };
FFFDb8995d387fbab8995d38 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; };
FFFDb8995da07fbab8995da0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; };
FFFDb8995e087fbab8995e08 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; };
FFFDb8995e707fbab8995e70 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; };
FFFDb8995ed87fbab8995ed8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; };
FFFDb8995f407fbab8995f40 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; };
FFFDb8995fa87fbab8995fa8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; };
FFFDb89960107fbab8996010 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; };
FFFDb89960787fbab8996078 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; };
FFFDb89960e07fbab89960e0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; };
FFFDb89961487fbab8996148 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; };
FFFDb89961b07fbab89961b0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; };
FFFDb89962187fbab8996218 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; };
FFFDb89962807fbab8996280 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; };
FFFDb89962e87fbab89962e8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; };
FFFDb89963507fbab8996350 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; };
FFFDb89963b87fbab89963b8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; };
FFFDb89964207fbab8996420 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; };
FFFDb89964887fbab8996488 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; };
FFFDb89964f07fbab89964f0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; };
FFFDb89965587fbab8996558 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; };
FFFDb89965c07fbab89965c0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; };
FFFDb89966287fbab8996628 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; };
FFFDb89966907fbab8996690 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; };
FFFDb89966f87fbab89966f8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; };
FFFDb89967607fbab8996760 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; };
FFFDb89967c87fbab89967c8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; };
FFFDb89968307fbab8996830 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; };
FFFDb89968987fbab8996898 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; };
FFFDb89969007fbab8996900 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; };
FFFDb89969687fbab8996968 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; };
FFFDb89969d07fbab89969d0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; };
FFFDb8996a387fbab8996a38 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; };
FFFDb8996aa07fbab8996aa0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; };
FFFDb8996b087fbab8996b08 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; };
FFFDb8996b707fbab8996b70 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; };
FFFDb8996bd87fbab8996bd8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; };
FFFDb8996c407fbab8996c40 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; };
FFFDb8996ca87fbab8996ca8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; };
FFFDb8996d107fbab8996d10 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; };
FFFDb8996d787fbab8996d78 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; };
FFFDb8996de07fbab8996de0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; };
FFFDb8996e487fbab8996e48 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; };
FFFDb8996eb07fbab8996eb0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; };
FFFDb8996f187fbab8996f18 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb8996f807fbab8996f80 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb8996fe87fbab8996fe8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb89970507fbab8997050 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb89970b87fbab89970b8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb89971207fbab8997120 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb89971887fbab8997188 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb89971f07fbab89971f0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb89972587fbab8997258 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb89972c07fbab89972c0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb89973287fbab8997328 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb89973907fbab8997390 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb89973f87fbab89973f8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb89974607fbab8997460 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb89974c87fbab89974c8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb89975307fbab8997530 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb89975987fbab8997598 /* src/unix/PsUnixTime.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixTime.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixTime.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
FFF2b9b5ed307fbab9b5ed30 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFCb9b5ed307fbab9b5ed30 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF8b9b5ed307fbab9b5ed30 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFFb8996f187fbab8996f18,
FFFFb8996f807fbab8996f80,
FFFFb8996fe87fbab8996fe8,
FFFFb89970507fbab8997050,
FFFFb89970b87fbab89970b8,
FFFFb89971207fbab8997120,
FFFFb89971887fbab8997188,
FFFFb89971f07fbab89971f0,
FFFFb89972587fbab8997258,
FFFFb89972c07fbab89972c0,
FFFFb89973287fbab8997328,
FFFFb89973907fbab8997390,
FFFFb89973f87fbab89973f8,
FFFFb89974607fbab8997460,
FFFFb89974c87fbab89974c8,
FFFFb89975307fbab8997530,
FFFFb89975987fbab8997598,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PxPvdSDK */
FFFFba0237a87fbaba0237a8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0237a87fbaba0237a8 /* src/PxProfileEventImpl.cpp */; };
FFFFba0238107fbaba023810 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0238107fbaba023810 /* src/PxPvd.cpp */; };
FFFFba0238787fbaba023878 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0238787fbaba023878 /* src/PxPvdDataStream.cpp */; };
FFFFba0238e07fbaba0238e0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0238e07fbaba0238e0 /* src/PxPvdDefaultFileTransport.cpp */; };
FFFFba0239487fbaba023948 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0239487fbaba023948 /* src/PxPvdDefaultSocketTransport.cpp */; };
FFFFba0239b07fbaba0239b0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba0239b07fbaba0239b0 /* src/PxPvdImpl.cpp */; };
FFFFba023a187fbaba023a18 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba023a187fbaba023a18 /* src/PxPvdMemClient.cpp */; };
FFFFba023a807fbaba023a80 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba023a807fbaba023a80 /* src/PxPvdObjectModelMetaData.cpp */; };
FFFFba023ae87fbaba023ae8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba023ae87fbaba023ae8 /* src/PxPvdObjectRegistrar.cpp */; };
FFFFba023b507fbaba023b50 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba023b507fbaba023b50 /* src/PxPvdProfileZoneClient.cpp */; };
FFFFba023bb87fbaba023bb8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba023bb87fbaba023bb8 /* src/PxPvdUserRenderer.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFDb98414907fbab9841490 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFDb9843e807fbab9843e80 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; };
FFFDb9843ee87fbab9843ee8 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; };
FFFDba0234007fbaba023400 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; };
FFFDba0234687fbaba023468 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; };
FFFDba0234d07fbaba0234d0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; };
FFFDba0235387fbaba023538 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; };
FFFDba0235a07fbaba0235a0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; };
FFFDba0236087fbaba023608 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; };
FFFDba0236707fbaba023670 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; };
FFFDba0236d87fbaba0236d8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFDba0237407fbaba023740 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; };
FFFDba0237a87fbaba0237a8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba0238107fbaba023810 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba0238787fbaba023878 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba0238e07fbaba0238e0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba0239487fbaba023948 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba0239b07fbaba0239b0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba023a187fbaba023a18 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba023a807fbaba023a80 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba023ae87fbaba023ae8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba023b507fbaba023b50 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba023bb87fbaba023bb8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba023c207fbaba023c20 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; };
FFFDba023c887fbaba023c88 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; };
FFFDba023cf07fbaba023cf0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; };
FFFDba023d587fbaba023d58 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; };
FFFDba023dc07fbaba023dc0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFDba023e287fbaba023e28 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; };
FFFDba023e907fbaba023e90 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFDba023ef87fbaba023ef8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; };
FFFDba023f607fbaba023f60 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; };
FFFDba023fc87fbaba023fc8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; };
FFFDba0240307fbaba024030 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; };
FFFDba0240987fbaba024098 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; };
FFFDba0241007fbaba024100 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; };
FFFDba0241687fbaba024168 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; };
FFFDba0241d07fbaba0241d0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; };
FFFDba0242387fbaba024238 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; };
FFFDba0242a07fbaba0242a0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; };
FFFDba0243087fbaba024308 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; };
FFFDba0243707fbaba024370 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; };
FFFDba0243d87fbaba0243d8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; };
FFFDba0244407fbaba024440 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; };
FFFDba0244a87fbaba0244a8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFDba0245107fbaba024510 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFDba0245787fbaba024578 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; };
FFFDba0245e07fbaba0245e0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; };
FFFDba0246487fbaba024648 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; };
FFFDba0246b07fbaba0246b0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; };
FFFDba0247187fbaba024718 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; };
FFFDba0247807fbaba024780 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; };
FFFDba0247e87fbaba0247e8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; };
FFFDba0248507fbaba024850 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; };
FFFDba0248b87fbaba0248b8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; };
FFFDba0249207fbaba024920 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; };
FFFDba0249887fbaba024988 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; };
FFFDba0249f07fbaba0249f0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; };
FFFDba024a587fbaba024a58 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; };
FFFDba024ac07fbaba024ac0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; };
FFFDba024b287fbaba024b28 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; };
FFFDba024b907fbaba024b90 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; };
FFFDba024bf87fbaba024bf8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; };
FFFDba024c607fbaba024c60 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; };
FFFDba024cc87fbaba024cc8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; };
FFFDba024d307fbaba024d30 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; };
FFFDba024d987fbaba024d98 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; };
FFFDba024e007fbaba024e00 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; };
FFFDba024e687fbaba024e68 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; };
FFFDba024ed07fbaba024ed0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; };
FFFDba024f387fbaba024f38 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; };
FFFDba024fa07fbaba024fa0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; };
FFFDba0250087fbaba025008 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; };
FFFDba0250707fbaba025070 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; };
FFFDba0250d87fbaba0250d8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; };
FFFDba0251407fbaba025140 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; };
FFFDba0251a87fbaba0251a8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; };
FFFDba0252107fbaba025210 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; };
FFFDba0252787fbaba025278 /* src/PxPvdUserRenderTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderTypes.h"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
FFF2b98414907fbab9841490 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFCb98414907fbab9841490 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF8b98414907fbab9841490 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFFba0237a87fbaba0237a8,
FFFFba0238107fbaba023810,
FFFFba0238787fbaba023878,
FFFFba0238e07fbaba0238e0,
FFFFba0239487fbaba023948,
FFFFba0239b07fbaba0239b0,
FFFFba023a187fbaba023a18,
FFFFba023a807fbaba023a80,
FFFFba023ae87fbaba023ae8,
FFFFba023b507fbaba023b50,
FFFFba023bb87fbaba023bb8,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
FFF4b980eee07fbab980eee0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFAb9b5ed307fbab9b5ed30 /* PxFoundation */;
targetProxy = FFF5b9b5ed307fbab9b5ed30 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevel */
FFFFb985dcf07fbab985dcf0 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFDb985dcf07fbab985dcf0 /* px_globals.cpp */; };
FFFFb98613307fbab9861330 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb98613307fbab9861330 /* PxsCCD.cpp */; };
FFFFb98613987fbab9861398 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb98613987fbab9861398 /* PxsContactManager.cpp */; };
FFFFb98614007fbab9861400 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb98614007fbab9861400 /* PxsContext.cpp */; };
FFFFb98614687fbab9861468 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb98614687fbab9861468 /* PxsDefaultMemoryManager.cpp */; };
FFFFb98614d07fbab98614d0 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb98614d07fbab98614d0 /* PxsIslandSim.cpp */; };
FFFFb98615387fbab9861538 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb98615387fbab9861538 /* PxsMaterialCombiner.cpp */; };
FFFFb98615a07fbab98615a0 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb98615a07fbab98615a0 /* PxsNphaseImplementationContext.cpp */; };
FFFFb98616087fbab9861608 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb98616087fbab9861608 /* PxsSimpleIslandManager.cpp */; };
FFFFba0268007fbaba026800 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDba0268007fbaba026800 /* collision/PxcContact.cpp */; };
FFFFba0268687fbaba026868 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDba0268687fbaba026868 /* pipeline/PxcContactCache.cpp */; };
FFFFba0268d07fbaba0268d0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDba0268d07fbaba0268d0 /* pipeline/PxcContactMethodImpl.cpp */; };
FFFFba0269387fbaba026938 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDba0269387fbaba026938 /* pipeline/PxcMaterialHeightField.cpp */; };
FFFFba0269a07fbaba0269a0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDba0269a07fbaba0269a0 /* pipeline/PxcMaterialMesh.cpp */; };
FFFFba026a087fbaba026a08 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDba026a087fbaba026a08 /* pipeline/PxcMaterialMethodImpl.cpp */; };
FFFFba026a707fbaba026a70 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDba026a707fbaba026a70 /* pipeline/PxcMaterialShape.cpp */; };
FFFFba026ad87fbaba026ad8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDba026ad87fbaba026ad8 /* pipeline/PxcNpBatch.cpp */; };
FFFFba026b407fbaba026b40 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDba026b407fbaba026b40 /* pipeline/PxcNpCacheStreamPair.cpp */; };
FFFFba026ba87fbaba026ba8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDba026ba87fbaba026ba8 /* pipeline/PxcNpContactPrepShared.cpp */; };
FFFFba026c107fbaba026c10 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDba026c107fbaba026c10 /* pipeline/PxcNpMemBlockPool.cpp */; };
FFFFba026c787fbaba026c78 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDba026c787fbaba026c78 /* pipeline/PxcNpThreadContext.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFDb98574907fbab9857490 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFDb985dcf07fbab985dcf0 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb98602207fbab9860220 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; };
FFFDb98602887fbab9860288 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; };
FFFDb98602f07fbab98602f0 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; };
FFFDb98603587fbab9860358 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; };
FFFDb98603c07fbab98603c0 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; };
FFFDb98604287fbab9860428 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; };
FFFDb98604907fbab9860490 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; };
FFFDb98604f87fbab98604f8 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; };
FFFDb98605607fbab9860560 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; };
FFFDb98613307fbab9861330 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb98613987fbab9861398 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb98614007fbab9861400 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb98614687fbab9861468 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb98614d07fbab98614d0 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb98615387fbab9861538 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb98615a07fbab98615a0 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb98616087fbab9861608 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba02b8007fbaba02b800 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; };
FFFDba02b8687fbaba02b868 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; };
FFFDba02b8d07fbaba02b8d0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; };
FFFDba02b9387fbaba02b938 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; };
FFFDba02b9a07fbaba02b9a0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; };
FFFDba02ba087fbaba02ba08 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; };
FFFDba02ba707fbaba02ba70 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; };
FFFDba02bad87fbaba02bad8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; };
FFFDba02bb407fbaba02bb40 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; };
FFFDba02bba87fbaba02bba8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; };
FFFDba02bc107fbaba02bc10 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; };
FFFDba02bc787fbaba02bc78 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; };
FFFDba02bce07fbaba02bce0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; };
FFFDba02bd487fbaba02bd48 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; };
FFFDba02bdb07fbaba02bdb0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; };
FFFDba02be187fbaba02be18 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; };
FFFDba02be807fbaba02be80 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; };
FFFDba02bee87fbaba02bee8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; };
FFFDba02bf507fbaba02bf50 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; };
FFFDba02bfb87fbaba02bfb8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; };
FFFDba0268007fbaba026800 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba0268687fbaba026868 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba0268d07fbaba0268d0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba0269387fbaba026938 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba0269a07fbaba0269a0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba026a087fbaba026a08 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba026a707fbaba026a70 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba026ad87fbaba026ad8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba026b407fbaba026b40 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba026ba87fbaba026ba8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba026c107fbaba026c10 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba026c787fbaba026c78 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba02aa007fbaba02aa00 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; };
FFFDba02aa687fbaba02aa68 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; };
FFFDba02aad07fbaba02aad0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; };
FFFDba02ab387fbaba02ab38 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; };
FFFDba02aba07fbaba02aba0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; };
FFFDba02ac087fbaba02ac08 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; };
FFFDba02ac707fbaba02ac70 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; };
FFFDba02acd87fbaba02acd8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; };
FFFDba02ad407fbaba02ad40 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; };
FFFDba02ada87fbaba02ada8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; };
FFFDba02ae107fbaba02ae10 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; };
FFFDba02ae787fbaba02ae78 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; };
FFFDba02aee07fbaba02aee0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; };
FFFDba02af487fbaba02af48 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; };
FFFDba02afb07fbaba02afb0 /* utils/PxcThreadCoherentCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcThreadCoherentCache.h"; path = "../../LowLevel/common/include/utils/PxcThreadCoherentCache.h"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
FFF2b98574907fbab9857490 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFCb98574907fbab9857490 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF8b98574907fbab9857490 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFFb985dcf07fbab985dcf0,
FFFFb98613307fbab9861330,
FFFFb98613987fbab9861398,
FFFFb98614007fbab9861400,
FFFFb98614687fbab9861468,
FFFFb98614d07fbab98614d0,
FFFFb98615387fbab9861538,
FFFFb98615a07fbab98615a0,
FFFFb98616087fbab9861608,
FFFFba0268007fbaba026800,
FFFFba0268687fbaba026868,
FFFFba0268d07fbaba0268d0,
FFFFba0269387fbaba026938,
FFFFba0269a07fbaba0269a0,
FFFFba026a087fbaba026a08,
FFFFba026a707fbaba026a70,
FFFFba026ad87fbaba026ad8,
FFFFba026b407fbaba026b40,
FFFFba026ba87fbaba026ba8,
FFFFba026c107fbaba026c10,
FFFFba026c787fbaba026c78,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevelAABB */
FFFFba81fe707fbaba81fe70 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba81fe707fbaba81fe70 /* BpBroadPhase.cpp */; };
FFFFba81fed87fbaba81fed8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba81fed87fbaba81fed8 /* BpBroadPhaseMBP.cpp */; };
FFFFba81ff407fbaba81ff40 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba81ff407fbaba81ff40 /* BpBroadPhaseSap.cpp */; };
FFFFba81ffa87fbaba81ffa8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba81ffa87fbaba81ffa8 /* BpBroadPhaseSapAux.cpp */; };
FFFFba8200107fbaba820010 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8200107fbaba820010 /* BpMBPTasks.cpp */; };
FFFFba8200787fbaba820078 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8200787fbaba820078 /* BpSAPTasks.cpp */; };
FFFFba8200e07fbaba8200e0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8200e07fbaba8200e0 /* BpSimpleAABBManager.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFDbb0160707fbabb016070 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFDb9e0a1307fbab9e0a130 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; };
FFFDb9e0a1987fbab9e0a198 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; };
FFFDb9e0a2007fbab9e0a200 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; };
FFFDb9e0a2687fbab9e0a268 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; };
FFFDba81fc007fbaba81fc00 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; };
FFFDba81fc687fbaba81fc68 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; };
FFFDba81fcd07fbaba81fcd0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; };
FFFDba81fd387fbaba81fd38 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; };
FFFDba81fda07fbaba81fda0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; };
FFFDba81fe087fbaba81fe08 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; };
FFFDba81fe707fbaba81fe70 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba81fed87fbaba81fed8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba81ff407fbaba81ff40 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba81ffa87fbaba81ffa8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8200107fbaba820010 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8200787fbaba820078 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8200e07fbaba8200e0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
FFF2bb0160707fbabb016070 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFCbb0160707fbabb016070 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF8bb0160707fbabb016070 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFFba81fe707fbaba81fe70,
FFFFba81fed87fbaba81fed8,
FFFFba81ff407fbaba81ff40,
FFFFba81ffa87fbaba81ffa8,
FFFFba8200107fbaba820010,
FFFFba8200787fbaba820078,
FFFFba8200e07fbaba8200e0,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevelDynamics */
FFFFb900fc007fbab900fc00 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb900fc007fbab900fc00 /* DyArticulation.cpp */; };
FFFFb900fc687fbab900fc68 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb900fc687fbab900fc68 /* DyArticulationContactPrep.cpp */; };
FFFFb900fcd07fbab900fcd0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb900fcd07fbab900fcd0 /* DyArticulationContactPrepPF.cpp */; };
FFFFb900fd387fbab900fd38 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb900fd387fbab900fd38 /* DyArticulationHelper.cpp */; };
FFFFb900fda07fbab900fda0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb900fda07fbab900fda0 /* DyArticulationSIMD.cpp */; };
FFFFb900fe087fbab900fe08 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb900fe087fbab900fe08 /* DyArticulationScalar.cpp */; };
FFFFb900fe707fbab900fe70 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb900fe707fbab900fe70 /* DyConstraintPartition.cpp */; };
FFFFb900fed87fbab900fed8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb900fed87fbab900fed8 /* DyConstraintSetup.cpp */; };
FFFFb900ff407fbab900ff40 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb900ff407fbab900ff40 /* DyConstraintSetupBlock.cpp */; };
FFFFb900ffa87fbab900ffa8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb900ffa87fbab900ffa8 /* DyContactPrep.cpp */; };
FFFFb90100107fbab9010010 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb90100107fbab9010010 /* DyContactPrep4.cpp */; };
FFFFb90100787fbab9010078 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb90100787fbab9010078 /* DyContactPrep4PF.cpp */; };
FFFFb90100e07fbab90100e0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb90100e07fbab90100e0 /* DyContactPrepPF.cpp */; };
FFFFb90101487fbab9010148 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb90101487fbab9010148 /* DyDynamics.cpp */; };
FFFFb90101b07fbab90101b0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb90101b07fbab90101b0 /* DyFrictionCorrelation.cpp */; };
FFFFb90102187fbab9010218 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb90102187fbab9010218 /* DyRigidBodyToSolverBody.cpp */; };
FFFFb90102807fbab9010280 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb90102807fbab9010280 /* DySolverConstraints.cpp */; };
FFFFb90102e87fbab90102e8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb90102e87fbab90102e8 /* DySolverConstraintsBlock.cpp */; };
FFFFb90103507fbab9010350 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb90103507fbab9010350 /* DySolverControl.cpp */; };
FFFFb90103b87fbab90103b8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb90103b87fbab90103b8 /* DySolverControlPF.cpp */; };
FFFFb90104207fbab9010420 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb90104207fbab9010420 /* DySolverPFConstraints.cpp */; };
FFFFb90104887fbab9010488 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb90104887fbab9010488 /* DySolverPFConstraintsBlock.cpp */; };
FFFFb90104f07fbab90104f0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb90104f07fbab90104f0 /* DyThreadContext.cpp */; };
FFFFb90105587fbab9010558 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb90105587fbab9010558 /* DyThresholdTable.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFDb872ced07fbab872ced0 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFDb900fc007fbab900fc00 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb900fc687fbab900fc68 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb900fcd07fbab900fcd0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb900fd387fbab900fd38 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb900fda07fbab900fda0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb900fe087fbab900fe08 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb900fe707fbab900fe70 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb900fed87fbab900fed8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb900ff407fbab900ff40 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb900ffa87fbab900ffa8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90100107fbab9010010 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90100787fbab9010078 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90100e07fbab90100e0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90101487fbab9010148 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90101b07fbab90101b0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90102187fbab9010218 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90102807fbab9010280 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90102e87fbab90102e8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90103507fbab9010350 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90103b87fbab90103b8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90104207fbab9010420 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90104887fbab9010488 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90104f07fbab90104f0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb90105587fbab9010558 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb87363907fbab8736390 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; };
FFFDb87363f87fbab87363f8 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; };
FFFDb87364607fbab8736460 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; };
FFFDb87364c87fbab87364c8 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; };
FFFDb87365307fbab8736530 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; };
FFFDb87365987fbab8736598 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; };
FFFDb9011c007fbab9011c00 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; };
FFFDb9011c687fbab9011c68 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; };
FFFDb9011cd07fbab9011cd0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; };
FFFDb9011d387fbab9011d38 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; };
FFFDb9011da07fbab9011da0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; };
FFFDb9011e087fbab9011e08 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; };
FFFDb9011e707fbab9011e70 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; };
FFFDb9011ed87fbab9011ed8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; };
FFFDb9011f407fbab9011f40 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; };
FFFDb9011fa87fbab9011fa8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; };
FFFDb90120107fbab9012010 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; };
FFFDb90120787fbab9012078 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; };
FFFDb90120e07fbab90120e0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; };
FFFDb90121487fbab9012148 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; };
FFFDb90121b07fbab90121b0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; };
FFFDb90122187fbab9012218 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFDb90122807fbab9012280 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; };
FFFDb90122e87fbab90122e8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; };
FFFDb90123507fbab9012350 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; };
FFFDb90123b87fbab90123b8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; };
FFFDb90124207fbab9012420 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; };
FFFDb90124887fbab9012488 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; };
FFFDb90124f07fbab90124f0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; };
FFFDb90125587fbab9012558 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; };
FFFDb90125c07fbab90125c0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; };
FFFDb90126287fbab9012628 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; };
FFFDb90126907fbab9012690 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; };
FFFDb90126f87fbab90126f8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; };
FFFDb90127607fbab9012760 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; };
FFFDb90127c87fbab90127c8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; };
FFFDb90128307fbab9012830 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; };
FFFDb90128987fbab9012898 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; };
FFFDb90129007fbab9012900 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; };
FFFDb90129687fbab9012968 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; };
FFFDb90129d07fbab90129d0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; };
FFFDb9012a387fbab9012a38 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; };
FFFDb9012aa07fbab9012aa0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
FFF2b872ced07fbab872ced0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFCb872ced07fbab872ced0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF8b872ced07fbab872ced0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFFb900fc007fbab900fc00,
FFFFb900fc687fbab900fc68,
FFFFb900fcd07fbab900fcd0,
FFFFb900fd387fbab900fd38,
FFFFb900fda07fbab900fda0,
FFFFb900fe087fbab900fe08,
FFFFb900fe707fbab900fe70,
FFFFb900fed87fbab900fed8,
FFFFb900ff407fbab900ff40,
FFFFb900ffa87fbab900ffa8,
FFFFb90100107fbab9010010,
FFFFb90100787fbab9010078,
FFFFb90100e07fbab90100e0,
FFFFb90101487fbab9010148,
FFFFb90101b07fbab90101b0,
FFFFb90102187fbab9010218,
FFFFb90102807fbab9010280,
FFFFb90102e87fbab90102e8,
FFFFb90103507fbab9010350,
FFFFb90103b87fbab90103b8,
FFFFb90104207fbab9010420,
FFFFb90104887fbab9010488,
FFFFb90104f07fbab90104f0,
FFFFb90105587fbab9010558,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevelCloth */
FFFFb901c2907fbab901c290 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb901c2907fbab901c290 /* Allocator.cpp */; };
FFFFb901c2f87fbab901c2f8 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb901c2f87fbab901c2f8 /* Factory.cpp */; };
FFFFb901c3607fbab901c360 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb901c3607fbab901c360 /* PhaseConfig.cpp */; };
FFFFb901c3c87fbab901c3c8 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb901c3c87fbab901c3c8 /* SwCloth.cpp */; };
FFFFb901c4307fbab901c430 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb901c4307fbab901c430 /* SwClothData.cpp */; };
FFFFb901c4987fbab901c498 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb901c4987fbab901c498 /* SwCollision.cpp */; };
FFFFb901c5007fbab901c500 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb901c5007fbab901c500 /* SwFabric.cpp */; };
FFFFb901c5687fbab901c568 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb901c5687fbab901c568 /* SwFactory.cpp */; };
FFFFb901c5d07fbab901c5d0 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb901c5d07fbab901c5d0 /* SwInterCollision.cpp */; };
FFFFb901c6387fbab901c638 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb901c6387fbab901c638 /* SwSelfCollision.cpp */; };
FFFFb901c6a07fbab901c6a0 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb901c6a07fbab901c6a0 /* SwSolver.cpp */; };
FFFFb901c7087fbab901c708 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb901c7087fbab901c708 /* SwSolverKernel.cpp */; };
FFFFb901c7707fbab901c770 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb901c7707fbab901c770 /* TripletScheduler.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFDb87530507fbab8753050 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFDb87565007fbab8756500 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; };
FFFDb87565687fbab8756568 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; };
FFFDb87565d07fbab87565d0 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; };
FFFDb87566387fbab8756638 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; };
FFFDb87566a07fbab87566a0 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; };
FFFDb87567087fbab8756708 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; };
FFFDb87567707fbab8756770 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; };
FFFDb901b8007fbab901b800 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; };
FFFDb901b8687fbab901b868 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; };
FFFDb901b8d07fbab901b8d0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; };
FFFDb901b9387fbab901b938 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; };
FFFDb901b9a07fbab901b9a0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; };
FFFDb901ba087fbab901ba08 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; };
FFFDb901ba707fbab901ba70 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; };
FFFDb901bad87fbab901bad8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; };
FFFDb901bb407fbab901bb40 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; };
FFFDb901bba87fbab901bba8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; };
FFFDb901bc107fbab901bc10 /* Simd4f.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4f.h"; path = "../../LowLevelCloth/src/Simd4f.h"; sourceTree = SOURCE_ROOT; };
FFFDb901bc787fbab901bc78 /* Simd4i.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4i.h"; path = "../../LowLevelCloth/src/Simd4i.h"; sourceTree = SOURCE_ROOT; };
FFFDb901bce07fbab901bce0 /* SimdTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SimdTypes.h"; path = "../../LowLevelCloth/src/SimdTypes.h"; sourceTree = SOURCE_ROOT; };
FFFDb901bd487fbab901bd48 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; };
FFFDb901bdb07fbab901bdb0 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; };
FFFDb901be187fbab901be18 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; };
FFFDb901be807fbab901be80 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; };
FFFDb901bee87fbab901bee8 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; };
FFFDb901bf507fbab901bf50 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; };
FFFDb901bfb87fbab901bfb8 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; };
FFFDb901c0207fbab901c020 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; };
FFFDb901c0887fbab901c088 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; };
FFFDb901c0f07fbab901c0f0 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; };
FFFDb901c1587fbab901c158 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; };
FFFDb901c1c07fbab901c1c0 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; };
FFFDb901c2287fbab901c228 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; };
FFFDb901c2907fbab901c290 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb901c2f87fbab901c2f8 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb901c3607fbab901c360 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb901c3c87fbab901c3c8 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb901c4307fbab901c430 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb901c4987fbab901c498 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb901c5007fbab901c500 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb901c5687fbab901c568 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb901c5d07fbab901c5d0 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb901c6387fbab901c638 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb901c6a07fbab901c6a0 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb901c7087fbab901c708 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; };
FFFDb901c7707fbab901c770 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
FFF2b87530507fbab8753050 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFCb87530507fbab8753050 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF8b87530507fbab8753050 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFFb901c2907fbab901c290,
FFFFb901c2f87fbab901c2f8,
FFFFb901c3607fbab901c360,
FFFFb901c3c87fbab901c3c8,
FFFFb901c4307fbab901c430,
FFFFb901c4987fbab901c498,
FFFFb901c5007fbab901c500,
FFFFb901c5687fbab901c568,
FFFFb901c5d07fbab901c5d0,
FFFFb901c6387fbab901c638,
FFFFb901c6a07fbab901c6a0,
FFFFb901c7087fbab901c708,
FFFFb901c7707fbab901c770,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevelParticles */
FFFFba8313587fbaba831358 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8313587fbaba831358 /* PtBatcher.cpp */; };
FFFFba8313c07fbaba8313c0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8313c07fbaba8313c0 /* PtBodyTransformVault.cpp */; };
FFFFba8314287fbaba831428 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8314287fbaba831428 /* PtCollision.cpp */; };
FFFFba8314907fbaba831490 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8314907fbaba831490 /* PtCollisionBox.cpp */; };
FFFFba8314f87fbaba8314f8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8314f87fbaba8314f8 /* PtCollisionCapsule.cpp */; };
FFFFba8315607fbaba831560 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8315607fbaba831560 /* PtCollisionConvex.cpp */; };
FFFFba8315c87fbaba8315c8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8315c87fbaba8315c8 /* PtCollisionMesh.cpp */; };
FFFFba8316307fbaba831630 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8316307fbaba831630 /* PtCollisionPlane.cpp */; };
FFFFba8316987fbaba831698 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8316987fbaba831698 /* PtCollisionSphere.cpp */; };
FFFFba8317007fbaba831700 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8317007fbaba831700 /* PtContextCpu.cpp */; };
FFFFba8317687fbaba831768 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8317687fbaba831768 /* PtDynamics.cpp */; };
FFFFba8317d07fbaba8317d0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8317d07fbaba8317d0 /* PtParticleData.cpp */; };
FFFFba8318387fbaba831838 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8318387fbaba831838 /* PtParticleShapeCpu.cpp */; };
FFFFba8318a07fbaba8318a0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8318a07fbaba8318a0 /* PtParticleSystemSimCpu.cpp */; };
FFFFba8319087fbaba831908 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8319087fbaba831908 /* PtSpatialHash.cpp */; };
FFFFba8319707fbaba831970 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDba8319707fbaba831970 /* PtSpatialLocalHash.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFDbb01a9407fbabb01a940 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFDba825e007fbaba825e00 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; };
FFFDba825e687fbaba825e68 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; };
FFFDba825ed07fbaba825ed0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; };
FFFDba825f387fbaba825f38 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; };
FFFDba825fa07fbaba825fa0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; };
FFFDba8260087fbaba826008 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; };
FFFDba8260707fbaba826070 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; };
FFFDba8260d87fbaba8260d8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; };
FFFDba8261407fbaba826140 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; };
FFFDba8261a87fbaba8261a8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; };
FFFDba830a007fbaba830a00 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; };
FFFDba830a687fbaba830a68 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; };
FFFDba830ad07fbaba830ad0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; };
FFFDba830b387fbaba830b38 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; };
FFFDba830ba07fbaba830ba0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; };
FFFDba830c087fbaba830c08 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; };
FFFDba830c707fbaba830c70 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; };
FFFDba830cd87fbaba830cd8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; };
FFFDba830d407fbaba830d40 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; };
FFFDba830da87fbaba830da8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; };
FFFDba830e107fbaba830e10 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; };
FFFDba830e787fbaba830e78 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; };
FFFDba830ee07fbaba830ee0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; };
FFFDba830f487fbaba830f48 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; };
FFFDba830fb07fbaba830fb0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; };
FFFDba8310187fbaba831018 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; };
FFFDba8310807fbaba831080 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; };
FFFDba8310e87fbaba8310e8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; };
FFFDba8311507fbaba831150 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; };
FFFDba8311b87fbaba8311b8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; };
FFFDba8312207fbaba831220 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; };
FFFDba8312887fbaba831288 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; };
FFFDba8312f07fbaba8312f0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; };
FFFDba8313587fbaba831358 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8313c07fbaba8313c0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8314287fbaba831428 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8314907fbaba831490 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8314f87fbaba8314f8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8315607fbaba831560 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8315c87fbaba8315c8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8316307fbaba831630 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8316987fbaba831698 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8317007fbaba831700 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8317687fbaba831768 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8317d07fbaba8317d0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8318387fbaba831838 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8318a07fbaba8318a0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8319087fbaba831908 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; };
FFFDba8319707fbaba831970 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
FFF2bb01a9407fbabb01a940 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFCbb01a9407fbabb01a940 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF8bb01a9407fbabb01a940 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFFba8313587fbaba831358,
FFFFba8313c07fbaba8313c0,
FFFFba8314287fbaba831428,
FFFFba8314907fbaba831490,
FFFFba8314f87fbaba8314f8,
FFFFba8315607fbaba831560,
FFFFba8315c87fbaba8315c8,
FFFFba8316307fbaba831630,
FFFFba8316987fbaba831698,
FFFFba8317007fbaba831700,
FFFFba8317687fbaba831768,
FFFFba8317d07fbaba8317d0,
FFFFba8318387fbaba831838,
FFFFba8318a07fbaba8318a0,
FFFFba8319087fbaba831908,
FFFFba8319707fbaba831970,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PxTask */
FFFFbb3e3e707fbabb3e3e70 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDbb3e3e707fbabb3e3e70 /* src/TaskManager.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFDbb3e5dc07fbabb3e5dc0 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFDbb3e6fd07fbabb3e6fd0 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
FFFDbb3e70387fbabb3e7038 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
FFFDbb3e70a07fbabb3e70a0 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; };
FFFDbb3e71087fbabb3e7108 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; };
FFFDbb3e71707fbabb3e7170 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; };
FFFDbb3e71d87fbabb3e71d8 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; };
FFFDbb3e3e707fbabb3e3e70 /* src/TaskManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/TaskManager.cpp"; path = "../../../../PxShared/src/task/src/TaskManager.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
FFF2bb3e5dc07fbabb3e5dc0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFCbb3e5dc07fbabb3e5dc0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF8bb3e5dc07fbabb3e5dc0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFFbb3e3e707fbabb3e3e70,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PsFastXml */
FFFFb876d3f07fbab876d3f0 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb876d3f07fbab876d3f0 /* PsFastXml.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFDb876cb807fbab876cb80 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFDb876d2f07fbab876d2f0 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; };
FFFDb876d3f07fbab876d3f0 /* PsFastXml.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.cpp"; path = "../../../../PxShared/src/fastxml/src/PsFastXml.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
FFF2b876cb807fbab876cb80 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFCb876cb807fbab876cb80 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF8b876cb807fbab876cb80 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFFb876d3f07fbab876d3f0,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXContainerItemProxy section */
FFF5b87703d07fbab87703d0 /* PBXContainerItemProxy */ = {
containerPortal = FFF9b847cbf07fbab847cbf0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFAb87703d07fbab87703d0 /* PhysX */;
remoteInfo = "PhysX";
};
FFF5b8767c907fbab8767c90 /* PBXContainerItemProxy */ = {
containerPortal = FFF9b847cbf07fbab847cbf0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFAb8767c907fbab8767c90 /* PhysXCharacterKinematic */;
remoteInfo = "PhysXCharacterKinematic";
};
FFF5b87675207fbab8767520 /* PBXContainerItemProxy */ = {
containerPortal = FFF9b847cbf07fbab847cbf0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFAb87675207fbab8767520 /* PhysXVehicle */;
remoteInfo = "PhysXVehicle";
};
FFF5b8784f507fbab8784f50 /* PBXContainerItemProxy */ = {
containerPortal = FFF9b847cbf07fbab847cbf0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFAb8784f507fbab8784f50 /* PhysXExtensions */;
remoteInfo = "PhysXExtensions";
};
FFF5b87961a07fbab87961a0 /* PBXContainerItemProxy */ = {
containerPortal = FFF9b847cbf07fbab847cbf0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFAb87961a07fbab87961a0 /* SceneQuery */;
remoteInfo = "SceneQuery";
};
FFF5b879a6d07fbab879a6d0 /* PBXContainerItemProxy */ = {
containerPortal = FFF9b847cbf07fbab847cbf0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFAb879a6d07fbab879a6d0 /* SimulationController */;
remoteInfo = "SimulationController";
};
FFF5bb0fb7e07fbabb0fb7e0 /* PBXContainerItemProxy */ = {
containerPortal = FFF9b847cbf07fbab847cbf0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFAbb0fb7e07fbabb0fb7e0 /* PhysXCooking */;
remoteInfo = "PhysXCooking";
};
FFF5b9b6f2d07fbab9b6f2d0 /* PBXContainerItemProxy */ = {
containerPortal = FFF9b847cbf07fbab847cbf0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFAb9b6f2d07fbab9b6f2d0 /* PhysXCommon */;
remoteInfo = "PhysXCommon";
};
FFF5b9b5ed307fbab9b5ed30 /* PBXContainerItemProxy */ = {
containerPortal = FFF9b847cbf07fbab847cbf0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFAb9b5ed307fbab9b5ed30 /* PxFoundation */;
remoteInfo = "PxFoundation";
};
FFF5b98414907fbab9841490 /* PBXContainerItemProxy */ = {
containerPortal = FFF9b847cbf07fbab847cbf0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFAb98414907fbab9841490 /* PxPvdSDK */;
remoteInfo = "PxPvdSDK";
};
FFF5b98574907fbab9857490 /* PBXContainerItemProxy */ = {
containerPortal = FFF9b847cbf07fbab847cbf0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFAb98574907fbab9857490 /* LowLevel */;
remoteInfo = "LowLevel";
};
FFF5bb0160707fbabb016070 /* PBXContainerItemProxy */ = {
containerPortal = FFF9b847cbf07fbab847cbf0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFAbb0160707fbabb016070 /* LowLevelAABB */;
remoteInfo = "LowLevelAABB";
};
FFF5b872ced07fbab872ced0 /* PBXContainerItemProxy */ = {
containerPortal = FFF9b847cbf07fbab847cbf0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFAb872ced07fbab872ced0 /* LowLevelDynamics */;
remoteInfo = "LowLevelDynamics";
};
FFF5b87530507fbab8753050 /* PBXContainerItemProxy */ = {
containerPortal = FFF9b847cbf07fbab847cbf0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFAb87530507fbab8753050 /* LowLevelCloth */;
remoteInfo = "LowLevelCloth";
};
FFF5bb01a9407fbabb01a940 /* PBXContainerItemProxy */ = {
containerPortal = FFF9b847cbf07fbab847cbf0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFAbb01a9407fbabb01a940 /* LowLevelParticles */;
remoteInfo = "LowLevelParticles";
};
FFF5bb3e5dc07fbabb3e5dc0 /* PBXContainerItemProxy */ = {
containerPortal = FFF9b847cbf07fbab847cbf0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFAbb3e5dc07fbabb3e5dc0 /* PxTask */;
remoteInfo = "PxTask";
};
FFF5b876cb807fbab876cb80 /* PBXContainerItemProxy */ = {
containerPortal = FFF9b847cbf07fbab847cbf0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFAb876cb807fbab876cb80 /* PsFastXml */;
remoteInfo = "PsFastXml";
};
/* End PBXContainerItemProxy section */
/* Begin PBXGroup section */
FFFBb847cc587fbab847cc58 /* PhysX */ = {
isa = PBXGroup;
children = (
FFF0b847cbf07fbab847cbf0 /* Source */,
FFEEb847cbf07fbab847cbf0 /* Products */,
);
name = "PhysX";
sourceTree = "<group>";
};
FFF0b847cbf07fbab847cbf0 /* Source */ = {
isa = PBXGroup;
children = (
FFFBb87703d07fbab87703d0,
FFFBb8767c907fbab8767c90,
FFFBb87675207fbab8767520,
FFFBb8784f507fbab8784f50,
FFFBb87961a07fbab87961a0,
FFFBb879a6d07fbab879a6d0,
FFFBbb0fb7e07fbabb0fb7e0,
FFFBb9b6f2d07fbab9b6f2d0,
FFFBb9b5ed307fbab9b5ed30,
FFFBb98414907fbab9841490,
FFFBb98574907fbab9857490,
FFFBbb0160707fbabb016070,
FFFBb872ced07fbab872ced0,
FFFBb87530507fbab8753050,
FFFBbb01a9407fbabb01a940,
FFFBbb3e5dc07fbabb3e5dc0,
FFFBb876cb807fbab876cb80,
);
name = Source;
sourceTree = "<group>";
};
FFEEb847cbf07fbab847cbf0 /* Products */ = {
isa = PBXGroup;
children = (
FFFDb87703d07fbab87703d0,
FFFDb8767c907fbab8767c90,
FFFDb87675207fbab8767520,
FFFDb8784f507fbab8784f50,
FFFDb87961a07fbab87961a0,
FFFDb879a6d07fbab879a6d0,
FFFDbb0fb7e07fbabb0fb7e0,
FFFDb9b6f2d07fbab9b6f2d0,
FFFDb9b5ed307fbab9b5ed30,
FFFDb98414907fbab9841490,
FFFDb98574907fbab9857490,
FFFDbb0160707fbabb016070,
FFFDb872ced07fbab872ced0,
FFFDb87530507fbab8753050,
FFFDbb01a9407fbabb01a940,
FFFDbb3e5dc07fbabb3e5dc0,
FFFDb876cb807fbab876cb80,
);
name = Products;
sourceTree = "<group>";
};
FFFBb87703d07fbab87703d0 /* PhysX */ = {
isa = PBXGroup;
children = (
FFFBb877a1b07fbab877a1b0 /* src */,
FFFBb877a1d87fbab877a1d8 /* include */,
FFFBb877a2007fbab877a200 /* metadata */,
);
name = "PhysX";
sourceTree = "<group>";
};
FFFBb877a1b07fbab877a1b0 /* src */ = {
isa = PBXGroup;
children = (
FFFDb902a4007fbab902a400 /* NpActor.h */,
FFFDb902a4687fbab902a468 /* NpActorTemplate.h */,
FFFDb902a4d07fbab902a4d0 /* NpAggregate.h */,
FFFDb902a5387fbab902a538 /* NpArticulation.h */,
FFFDb902a5a07fbab902a5a0 /* NpArticulationJoint.h */,
FFFDb902a6087fbab902a608 /* NpArticulationLink.h */,
FFFDb902a6707fbab902a670 /* NpBatchQuery.h */,
FFFDb902a6d87fbab902a6d8 /* NpCast.h */,
FFFDb902a7407fbab902a740 /* NpConnector.h */,
FFFDb902a7a87fbab902a7a8 /* NpConstraint.h */,
FFFDb902a8107fbab902a810 /* NpFactory.h */,
FFFDb902a8787fbab902a878 /* NpMaterial.h */,
FFFDb902a8e07fbab902a8e0 /* NpMaterialManager.h */,
FFFDb902a9487fbab902a948 /* NpPhysics.h */,
FFFDb902a9b07fbab902a9b0 /* NpPhysicsInsertionCallback.h */,
FFFDb902aa187fbab902aa18 /* NpPtrTableStorageManager.h */,
FFFDb902aa807fbab902aa80 /* NpPvdSceneQueryCollector.h */,
FFFDb902aae87fbab902aae8 /* NpQueryShared.h */,
FFFDb902ab507fbab902ab50 /* NpReadCheck.h */,
FFFDb902abb87fbab902abb8 /* NpRigidActorTemplate.h */,
FFFDb902ac207fbab902ac20 /* NpRigidActorTemplateInternal.h */,
FFFDb902ac887fbab902ac88 /* NpRigidBodyTemplate.h */,
FFFDb902acf07fbab902acf0 /* NpRigidDynamic.h */,
FFFDb902ad587fbab902ad58 /* NpRigidStatic.h */,
FFFDb902adc07fbab902adc0 /* NpScene.h */,
FFFDb902ae287fbab902ae28 /* NpSceneQueries.h */,
FFFDb902ae907fbab902ae90 /* NpShape.h */,
FFFDb902aef87fbab902aef8 /* NpShapeManager.h */,
FFFDb902af607fbab902af60 /* NpSpatialIndex.h */,
FFFDb902afc87fbab902afc8 /* NpVolumeCache.h */,
FFFDb902b0307fbab902b030 /* NpWriteCheck.h */,
FFFDb902b0987fbab902b098 /* PvdMetaDataBindingData.h */,
FFFDb902b1007fbab902b100 /* PvdMetaDataPvdBinding.h */,
FFFDb902b1687fbab902b168 /* PvdPhysicsClient.h */,
FFFDb902b1d07fbab902b1d0 /* PvdTypeNames.h */,
FFFDb902b2387fbab902b238 /* NpActor.cpp */,
FFFDb902b2a07fbab902b2a0 /* NpAggregate.cpp */,
FFFDb902b3087fbab902b308 /* NpArticulation.cpp */,
FFFDb902b3707fbab902b370 /* NpArticulationJoint.cpp */,
FFFDb902b3d87fbab902b3d8 /* NpArticulationLink.cpp */,
FFFDb902b4407fbab902b440 /* NpBatchQuery.cpp */,
FFFDb902b4a87fbab902b4a8 /* NpConstraint.cpp */,
FFFDb902b5107fbab902b510 /* NpFactory.cpp */,
FFFDb902b5787fbab902b578 /* NpMaterial.cpp */,
FFFDb902b5e07fbab902b5e0 /* NpMetaData.cpp */,
FFFDb902b6487fbab902b648 /* NpPhysics.cpp */,
FFFDb902b6b07fbab902b6b0 /* NpPvdSceneQueryCollector.cpp */,
FFFDb902b7187fbab902b718 /* NpReadCheck.cpp */,
FFFDb902b7807fbab902b780 /* NpRigidDynamic.cpp */,
FFFDb902b7e87fbab902b7e8 /* NpRigidStatic.cpp */,
FFFDb902b8507fbab902b850 /* NpScene.cpp */,
FFFDb902b8b87fbab902b8b8 /* NpSceneQueries.cpp */,
FFFDb902b9207fbab902b920 /* NpSerializerAdapter.cpp */,
FFFDb902b9887fbab902b988 /* NpShape.cpp */,
FFFDb902b9f07fbab902b9f0 /* NpShapeManager.cpp */,
FFFDb902ba587fbab902ba58 /* NpSpatialIndex.cpp */,
FFFDb902bac07fbab902bac0 /* NpVolumeCache.cpp */,
FFFDb902bb287fbab902bb28 /* NpWriteCheck.cpp */,
FFFDb902bb907fbab902bb90 /* PvdMetaDataPvdBinding.cpp */,
FFFDb902bbf87fbab902bbf8 /* PvdPhysicsClient.cpp */,
FFFDb902bc607fbab902bc60 /* particles/NpParticleBaseTemplate.h */,
FFFDb902bcc87fbab902bcc8 /* particles/NpParticleFluid.h */,
FFFDb902bd307fbab902bd30 /* particles/NpParticleFluidReadData.h */,
FFFDb902bd987fbab902bd98 /* particles/NpParticleSystem.h */,
FFFDb902be007fbab902be00 /* particles/NpParticleFluid.cpp */,
FFFDb902be687fbab902be68 /* particles/NpParticleSystem.cpp */,
FFFDb902bed07fbab902bed0 /* buffering/ScbActor.h */,
FFFDb902bf387fbab902bf38 /* buffering/ScbAggregate.h */,
FFFDb902bfa07fbab902bfa0 /* buffering/ScbArticulation.h */,
FFFDb902c0087fbab902c008 /* buffering/ScbArticulationJoint.h */,
FFFDb902c0707fbab902c070 /* buffering/ScbBase.h */,
FFFDb902c0d87fbab902c0d8 /* buffering/ScbBody.h */,
FFFDb902c1407fbab902c140 /* buffering/ScbCloth.h */,
FFFDb902c1a87fbab902c1a8 /* buffering/ScbConstraint.h */,
FFFDb902c2107fbab902c210 /* buffering/ScbDefs.h */,
FFFDb902c2787fbab902c278 /* buffering/ScbNpDeps.h */,
FFFDb902c2e07fbab902c2e0 /* buffering/ScbParticleSystem.h */,
FFFDb902c3487fbab902c348 /* buffering/ScbRigidObject.h */,
FFFDb902c3b07fbab902c3b0 /* buffering/ScbRigidStatic.h */,
FFFDb902c4187fbab902c418 /* buffering/ScbScene.h */,
FFFDb902c4807fbab902c480 /* buffering/ScbSceneBuffer.h */,
FFFDb902c4e87fbab902c4e8 /* buffering/ScbScenePvdClient.h */,
FFFDb902c5507fbab902c550 /* buffering/ScbShape.h */,
FFFDb902c5b87fbab902c5b8 /* buffering/ScbType.h */,
FFFDb902c6207fbab902c620 /* buffering/ScbActor.cpp */,
FFFDb902c6887fbab902c688 /* buffering/ScbAggregate.cpp */,
FFFDb902c6f07fbab902c6f0 /* buffering/ScbBase.cpp */,
FFFDb902c7587fbab902c758 /* buffering/ScbCloth.cpp */,
FFFDb902c7c07fbab902c7c0 /* buffering/ScbMetaData.cpp */,
FFFDb902c8287fbab902c828 /* buffering/ScbParticleSystem.cpp */,
FFFDb902c8907fbab902c890 /* buffering/ScbScene.cpp */,
FFFDb902c8f87fbab902c8f8 /* buffering/ScbScenePvdClient.cpp */,
FFFDb902c9607fbab902c960 /* buffering/ScbShape.cpp */,
FFFDb902c9c87fbab902c9c8 /* cloth/NpCloth.h */,
FFFDb902ca307fbab902ca30 /* cloth/NpClothFabric.h */,
FFFDb902ca987fbab902ca98 /* cloth/NpClothParticleData.h */,
FFFDb902cb007fbab902cb00 /* cloth/NpCloth.cpp */,
FFFDb902cb687fbab902cb68 /* cloth/NpClothFabric.cpp */,
FFFDb902cbd07fbab902cbd0 /* cloth/NpClothParticleData.cpp */,
FFFDb902cc387fbab902cc38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFBb877a1d87fbab877a1d8 /* include */ = {
isa = PBXGroup;
children = (
FFFDb902ce007fbab902ce00 /* PxActor.h */,
FFFDb902ce687fbab902ce68 /* PxAggregate.h */,
FFFDb902ced07fbab902ced0 /* PxArticulation.h */,
FFFDb902cf387fbab902cf38 /* PxArticulationJoint.h */,
FFFDb902cfa07fbab902cfa0 /* PxArticulationLink.h */,
FFFDb902d0087fbab902d008 /* PxBatchQuery.h */,
FFFDb902d0707fbab902d070 /* PxBatchQueryDesc.h */,
FFFDb902d0d87fbab902d0d8 /* PxBroadPhase.h */,
FFFDb902d1407fbab902d140 /* PxClient.h */,
FFFDb902d1a87fbab902d1a8 /* PxConstraint.h */,
FFFDb902d2107fbab902d210 /* PxConstraintDesc.h */,
FFFDb902d2787fbab902d278 /* PxContact.h */,
FFFDb902d2e07fbab902d2e0 /* PxContactModifyCallback.h */,
FFFDb902d3487fbab902d348 /* PxDeletionListener.h */,
FFFDb902d3b07fbab902d3b0 /* PxFiltering.h */,
FFFDb902d4187fbab902d418 /* PxForceMode.h */,
FFFDb902d4807fbab902d480 /* PxImmediateMode.h */,
FFFDb902d4e87fbab902d4e8 /* PxLockedData.h */,
FFFDb902d5507fbab902d550 /* PxMaterial.h */,
FFFDb902d5b87fbab902d5b8 /* PxPhysXConfig.h */,
FFFDb902d6207fbab902d620 /* PxPhysics.h */,
FFFDb902d6887fbab902d688 /* PxPhysicsAPI.h */,
FFFDb902d6f07fbab902d6f0 /* PxPhysicsSerialization.h */,
FFFDb902d7587fbab902d758 /* PxPhysicsVersion.h */,
FFFDb902d7c07fbab902d7c0 /* PxPruningStructure.h */,
FFFDb902d8287fbab902d828 /* PxQueryFiltering.h */,
FFFDb902d8907fbab902d890 /* PxQueryReport.h */,
FFFDb902d8f87fbab902d8f8 /* PxRigidActor.h */,
FFFDb902d9607fbab902d960 /* PxRigidBody.h */,
FFFDb902d9c87fbab902d9c8 /* PxRigidDynamic.h */,
FFFDb902da307fbab902da30 /* PxRigidStatic.h */,
FFFDb902da987fbab902da98 /* PxScene.h */,
FFFDb902db007fbab902db00 /* PxSceneDesc.h */,
FFFDb902db687fbab902db68 /* PxSceneLock.h */,
FFFDb902dbd07fbab902dbd0 /* PxShape.h */,
FFFDb902dc387fbab902dc38 /* PxSimulationEventCallback.h */,
FFFDb902dca07fbab902dca0 /* PxSimulationStatistics.h */,
FFFDb902dd087fbab902dd08 /* PxSpatialIndex.h */,
FFFDb902dd707fbab902dd70 /* PxVisualizationParameter.h */,
FFFDb902ddd87fbab902ddd8 /* PxVolumeCache.h */,
FFFDb902de407fbab902de40 /* particles/PxParticleBase.h */,
FFFDb902dea87fbab902dea8 /* particles/PxParticleBaseFlag.h */,
FFFDb902df107fbab902df10 /* particles/PxParticleCreationData.h */,
FFFDb902df787fbab902df78 /* particles/PxParticleFlag.h */,
FFFDb902dfe07fbab902dfe0 /* particles/PxParticleFluid.h */,
FFFDb902e0487fbab902e048 /* particles/PxParticleFluidReadData.h */,
FFFDb902e0b07fbab902e0b0 /* particles/PxParticleReadData.h */,
FFFDb902e1187fbab902e118 /* particles/PxParticleSystem.h */,
FFFDb902e1807fbab902e180 /* pvd/PxPvdSceneClient.h */,
FFFDb902e1e87fbab902e1e8 /* cloth/PxCloth.h */,
FFFDb902e2507fbab902e250 /* cloth/PxClothCollisionData.h */,
FFFDb902e2b87fbab902e2b8 /* cloth/PxClothFabric.h */,
FFFDb902e3207fbab902e320 /* cloth/PxClothParticleData.h */,
FFFDb902e3887fbab902e388 /* cloth/PxClothTypes.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFBb877a2007fbab877a200 /* metadata */ = {
isa = PBXGroup;
children = (
FFFDb90250007fbab9025000 /* core/include/PvdMetaDataDefineProperties.h */,
FFFDb90250687fbab9025068 /* core/include/PvdMetaDataExtensions.h */,
FFFDb90250d07fbab90250d0 /* core/include/PvdMetaDataPropertyVisitor.h */,
FFFDb90251387fbab9025138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */,
FFFDb90251a07fbab90251a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */,
FFFDb90252087fbab9025208 /* core/include/PxMetaDataCompare.h */,
FFFDb90252707fbab9025270 /* core/include/PxMetaDataCppPrefix.h */,
FFFDb90252d87fbab90252d8 /* core/include/PxMetaDataObjects.h */,
FFFDb90253407fbab9025340 /* core/include/RepXMetaDataPropertyVisitor.h */,
FFFDb90253a87fbab90253a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */,
FFFDb90254107fbab9025410 /* core/src/PxMetaDataObjects.cpp */,
);
name = "metadata";
sourceTree = SOURCE_ROOT;
};
FFFBb8767c907fbab8767c90 /* PhysXCharacterKinematic */ = {
isa = PBXGroup;
children = (
FFFBb87795f07fbab87795f0 /* include */,
FFFBb87796187fbab8779618 /* src */,
);
name = "PhysXCharacterKinematic";
sourceTree = "<group>";
};
FFFBb87795f07fbab87795f0 /* include */ = {
isa = PBXGroup;
children = (
FFFDb87796407fbab8779640 /* PxBoxController.h */,
FFFDb87796a87fbab87796a8 /* PxCapsuleController.h */,
FFFDb87797107fbab8779710 /* PxCharacter.h */,
FFFDb87797787fbab8779778 /* PxController.h */,
FFFDb87797e07fbab87797e0 /* PxControllerBehavior.h */,
FFFDb87798487fbab8779848 /* PxControllerManager.h */,
FFFDb87798b07fbab87798b0 /* PxControllerObstacles.h */,
FFFDb87799187fbab8779918 /* PxExtended.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFBb87796187fbab8779618 /* src */ = {
isa = PBXGroup;
children = (
FFFDb902e4007fbab902e400 /* CctBoxController.h */,
FFFDb902e4687fbab902e468 /* CctCapsuleController.h */,
FFFDb902e4d07fbab902e4d0 /* CctCharacterController.h */,
FFFDb902e5387fbab902e538 /* CctCharacterControllerManager.h */,
FFFDb902e5a07fbab902e5a0 /* CctController.h */,
FFFDb902e6087fbab902e608 /* CctInternalStructs.h */,
FFFDb902e6707fbab902e670 /* CctObstacleContext.h */,
FFFDb902e6d87fbab902e6d8 /* CctSweptBox.h */,
FFFDb902e7407fbab902e740 /* CctSweptCapsule.h */,
FFFDb902e7a87fbab902e7a8 /* CctSweptVolume.h */,
FFFDb902e8107fbab902e810 /* CctUtils.h */,
FFFDb902e8787fbab902e878 /* CctBoxController.cpp */,
FFFDb902e8e07fbab902e8e0 /* CctCapsuleController.cpp */,
FFFDb902e9487fbab902e948 /* CctCharacterController.cpp */,
FFFDb902e9b07fbab902e9b0 /* CctCharacterControllerCallbacks.cpp */,
FFFDb902ea187fbab902ea18 /* CctCharacterControllerManager.cpp */,
FFFDb902ea807fbab902ea80 /* CctController.cpp */,
FFFDb902eae87fbab902eae8 /* CctObstacleContext.cpp */,
FFFDb902eb507fbab902eb50 /* CctSweptBox.cpp */,
FFFDb902ebb87fbab902ebb8 /* CctSweptCapsule.cpp */,
FFFDb902ec207fbab902ec20 /* CctSweptVolume.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFBb87675207fbab8767520 /* PhysXVehicle */ = {
isa = PBXGroup;
children = (
FFFBb87833d07fbab87833d0 /* include */,
FFFBb87833f87fbab87833f8 /* src */,
FFFBb87834207fbab8783420 /* metadata */,
);
name = "PhysXVehicle";
sourceTree = "<group>";
};
FFFBb87833d07fbab87833d0 /* include */ = {
isa = PBXGroup;
children = (
FFFDb9030a007fbab9030a00 /* PxVehicleComponents.h */,
FFFDb9030a687fbab9030a68 /* PxVehicleDrive.h */,
FFFDb9030ad07fbab9030ad0 /* PxVehicleDrive4W.h */,
FFFDb9030b387fbab9030b38 /* PxVehicleDriveNW.h */,
FFFDb9030ba07fbab9030ba0 /* PxVehicleDriveTank.h */,
FFFDb9030c087fbab9030c08 /* PxVehicleNoDrive.h */,
FFFDb9030c707fbab9030c70 /* PxVehicleSDK.h */,
FFFDb9030cd87fbab9030cd8 /* PxVehicleShaders.h */,
FFFDb9030d407fbab9030d40 /* PxVehicleTireFriction.h */,
FFFDb9030da87fbab9030da8 /* PxVehicleUpdate.h */,
FFFDb9030e107fbab9030e10 /* PxVehicleUtil.h */,
FFFDb9030e787fbab9030e78 /* PxVehicleUtilControl.h */,
FFFDb9030ee07fbab9030ee0 /* PxVehicleUtilSetup.h */,
FFFDb9030f487fbab9030f48 /* PxVehicleUtilTelemetry.h */,
FFFDb9030fb07fbab9030fb0 /* PxVehicleWheels.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFBb87833f87fbab87833f8 /* src */ = {
isa = PBXGroup;
children = (
FFFDb90328007fbab9032800 /* PxVehicleDefaults.h */,
FFFDb90328687fbab9032868 /* PxVehicleLinearMath.h */,
FFFDb90328d07fbab90328d0 /* PxVehicleSerialization.h */,
FFFDb90329387fbab9032938 /* PxVehicleSuspLimitConstraintShader.h */,
FFFDb90329a07fbab90329a0 /* PxVehicleSuspWheelTire4.h */,
FFFDb9032a087fbab9032a08 /* PxVehicleComponents.cpp */,
FFFDb9032a707fbab9032a70 /* PxVehicleDrive.cpp */,
FFFDb9032ad87fbab9032ad8 /* PxVehicleDrive4W.cpp */,
FFFDb9032b407fbab9032b40 /* PxVehicleDriveNW.cpp */,
FFFDb9032ba87fbab9032ba8 /* PxVehicleDriveTank.cpp */,
FFFDb9032c107fbab9032c10 /* PxVehicleMetaData.cpp */,
FFFDb9032c787fbab9032c78 /* PxVehicleNoDrive.cpp */,
FFFDb9032ce07fbab9032ce0 /* PxVehicleSDK.cpp */,
FFFDb9032d487fbab9032d48 /* PxVehicleSerialization.cpp */,
FFFDb9032db07fbab9032db0 /* PxVehicleSuspWheelTire4.cpp */,
FFFDb9032e187fbab9032e18 /* PxVehicleTireFriction.cpp */,
FFFDb9032e807fbab9032e80 /* PxVehicleUpdate.cpp */,
FFFDb9032ee87fbab9032ee8 /* PxVehicleWheels.cpp */,
FFFDb9032f507fbab9032f50 /* VehicleUtilControl.cpp */,
FFFDb9032fb87fbab9032fb8 /* VehicleUtilSetup.cpp */,
FFFDb90330207fbab9033020 /* VehicleUtilTelemetry.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFBb87834207fbab8783420 /* metadata */ = {
isa = PBXGroup;
children = (
FFFDb87853907fbab8785390 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */,
FFFDb87853f87fbab87853f8 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */,
FFFDb87854607fbab8785460 /* include/PxVehicleMetaDataObjects.h */,
FFFDb87854c87fbab87854c8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */,
FFFDb87855307fbab8785530 /* src/PxVehicleMetaDataObjects.cpp */,
);
name = "metadata";
sourceTree = SOURCE_ROOT;
};
FFFBb8784f507fbab8784f50 /* PhysXExtensions */ = {
isa = PBXGroup;
children = (
FFFBb87876d07fbab87876d0 /* include */,
FFFBb87876f87fbab87876f8 /* src */,
FFFBb87877207fbab8787720 /* serialization */,
FFFBb87877487fbab8787748 /* metadata */,
);
name = "PhysXExtensions";
sourceTree = "<group>";
};
FFFBb87876d07fbab87876d0 /* include */ = {
isa = PBXGroup;
children = (
FFFDb90360007fbab9036000 /* PxBinaryConverter.h */,
FFFDb90360687fbab9036068 /* PxBroadPhaseExt.h */,
FFFDb90360d07fbab90360d0 /* PxClothFabricCooker.h */,
FFFDb90361387fbab9036138 /* PxClothMeshDesc.h */,
FFFDb90361a07fbab90361a0 /* PxClothMeshQuadifier.h */,
FFFDb90362087fbab9036208 /* PxClothTetherCooker.h */,
FFFDb90362707fbab9036270 /* PxCollectionExt.h */,
FFFDb90362d87fbab90362d8 /* PxConstraintExt.h */,
FFFDb90363407fbab9036340 /* PxConvexMeshExt.h */,
FFFDb90363a87fbab90363a8 /* PxD6Joint.h */,
FFFDb90364107fbab9036410 /* PxDefaultAllocator.h */,
FFFDb90364787fbab9036478 /* PxDefaultCpuDispatcher.h */,
FFFDb90364e07fbab90364e0 /* PxDefaultErrorCallback.h */,
FFFDb90365487fbab9036548 /* PxDefaultSimulationFilterShader.h */,
FFFDb90365b07fbab90365b0 /* PxDefaultStreams.h */,
FFFDb90366187fbab9036618 /* PxDistanceJoint.h */,
FFFDb90366807fbab9036680 /* PxExtensionsAPI.h */,
FFFDb90366e87fbab90366e8 /* PxFixedJoint.h */,
FFFDb90367507fbab9036750 /* PxJoint.h */,
FFFDb90367b87fbab90367b8 /* PxJointLimit.h */,
FFFDb90368207fbab9036820 /* PxMassProperties.h */,
FFFDb90368887fbab9036888 /* PxParticleExt.h */,
FFFDb90368f07fbab90368f0 /* PxPrismaticJoint.h */,
FFFDb90369587fbab9036958 /* PxRaycastCCD.h */,
FFFDb90369c07fbab90369c0 /* PxRepXSerializer.h */,
FFFDb9036a287fbab9036a28 /* PxRepXSimpleType.h */,
FFFDb9036a907fbab9036a90 /* PxRevoluteJoint.h */,
FFFDb9036af87fbab9036af8 /* PxRigidActorExt.h */,
FFFDb9036b607fbab9036b60 /* PxRigidBodyExt.h */,
FFFDb9036bc87fbab9036bc8 /* PxSceneQueryExt.h */,
FFFDb9036c307fbab9036c30 /* PxSerialization.h */,
FFFDb9036c987fbab9036c98 /* PxShapeExt.h */,
FFFDb9036d007fbab9036d00 /* PxSimpleFactory.h */,
FFFDb9036d687fbab9036d68 /* PxSmoothNormals.h */,
FFFDb9036dd07fbab9036dd0 /* PxSphericalJoint.h */,
FFFDb9036e387fbab9036e38 /* PxStringTableExt.h */,
FFFDb9036ea07fbab9036ea0 /* PxTriangleMeshExt.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFBb87876f87fbab87876f8 /* src */ = {
isa = PBXGroup;
children = (
FFFDb9034a007fbab9034a00 /* ExtConstraintHelper.h */,
FFFDb9034a687fbab9034a68 /* ExtCpuWorkerThread.h */,
FFFDb9034ad07fbab9034ad0 /* ExtD6Joint.h */,
FFFDb9034b387fbab9034b38 /* ExtDefaultCpuDispatcher.h */,
FFFDb9034ba07fbab9034ba0 /* ExtDistanceJoint.h */,
FFFDb9034c087fbab9034c08 /* ExtFixedJoint.h */,
FFFDb9034c707fbab9034c70 /* ExtInertiaTensor.h */,
FFFDb9034cd87fbab9034cd8 /* ExtJoint.h */,
FFFDb9034d407fbab9034d40 /* ExtJointMetaDataExtensions.h */,
FFFDb9034da87fbab9034da8 /* ExtPlatform.h */,
FFFDb9034e107fbab9034e10 /* ExtPrismaticJoint.h */,
FFFDb9034e787fbab9034e78 /* ExtPvd.h */,
FFFDb9034ee07fbab9034ee0 /* ExtRevoluteJoint.h */,
FFFDb9034f487fbab9034f48 /* ExtSerialization.h */,
FFFDb9034fb07fbab9034fb0 /* ExtSharedQueueEntryPool.h */,
FFFDb90350187fbab9035018 /* ExtSphericalJoint.h */,
FFFDb90350807fbab9035080 /* ExtTaskQueueHelper.h */,
FFFDb90350e87fbab90350e8 /* ExtBroadPhase.cpp */,
FFFDb90351507fbab9035150 /* ExtClothFabricCooker.cpp */,
FFFDb90351b87fbab90351b8 /* ExtClothGeodesicTetherCooker.cpp */,
FFFDb90352207fbab9035220 /* ExtClothMeshQuadifier.cpp */,
FFFDb90352887fbab9035288 /* ExtClothSimpleTetherCooker.cpp */,
FFFDb90352f07fbab90352f0 /* ExtCollection.cpp */,
FFFDb90353587fbab9035358 /* ExtConvexMeshExt.cpp */,
FFFDb90353c07fbab90353c0 /* ExtCpuWorkerThread.cpp */,
FFFDb90354287fbab9035428 /* ExtD6Joint.cpp */,
FFFDb90354907fbab9035490 /* ExtD6JointSolverPrep.cpp */,
FFFDb90354f87fbab90354f8 /* ExtDefaultCpuDispatcher.cpp */,
FFFDb90355607fbab9035560 /* ExtDefaultErrorCallback.cpp */,
FFFDb90355c87fbab90355c8 /* ExtDefaultSimulationFilterShader.cpp */,
FFFDb90356307fbab9035630 /* ExtDefaultStreams.cpp */,
FFFDb90356987fbab9035698 /* ExtDistanceJoint.cpp */,
FFFDb90357007fbab9035700 /* ExtDistanceJointSolverPrep.cpp */,
FFFDb90357687fbab9035768 /* ExtExtensions.cpp */,
FFFDb90357d07fbab90357d0 /* ExtFixedJoint.cpp */,
FFFDb90358387fbab9035838 /* ExtFixedJointSolverPrep.cpp */,
FFFDb90358a07fbab90358a0 /* ExtJoint.cpp */,
FFFDb90359087fbab9035908 /* ExtMetaData.cpp */,
FFFDb90359707fbab9035970 /* ExtParticleExt.cpp */,
FFFDb90359d87fbab90359d8 /* ExtPrismaticJoint.cpp */,
FFFDb9035a407fbab9035a40 /* ExtPrismaticJointSolverPrep.cpp */,
FFFDb9035aa87fbab9035aa8 /* ExtPvd.cpp */,
FFFDb9035b107fbab9035b10 /* ExtPxStringTable.cpp */,
FFFDb9035b787fbab9035b78 /* ExtRaycastCCD.cpp */,
FFFDb9035be07fbab9035be0 /* ExtRevoluteJoint.cpp */,
FFFDb9035c487fbab9035c48 /* ExtRevoluteJointSolverPrep.cpp */,
FFFDb9035cb07fbab9035cb0 /* ExtRigidBodyExt.cpp */,
FFFDb9035d187fbab9035d18 /* ExtSceneQueryExt.cpp */,
FFFDb9035d807fbab9035d80 /* ExtSimpleFactory.cpp */,
FFFDb9035de87fbab9035de8 /* ExtSmoothNormals.cpp */,
FFFDb9035e507fbab9035e50 /* ExtSphericalJoint.cpp */,
FFFDb9035eb87fbab9035eb8 /* ExtSphericalJointSolverPrep.cpp */,
FFFDb9035f207fbab9035f20 /* ExtTriangleMeshExt.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFBb87877207fbab8787720 /* serialization */ = {
isa = PBXGroup;
children = (
FFFDb90386007fbab9038600 /* SnSerialUtils.h */,
FFFDb90386687fbab9038668 /* SnSerializationRegistry.h */,
FFFDb90386d07fbab90386d0 /* SnSerialUtils.cpp */,
FFFDb90387387fbab9038738 /* SnSerialization.cpp */,
FFFDb90387a07fbab90387a0 /* SnSerializationRegistry.cpp */,
FFFDb90388087fbab9038808 /* Binary/SnConvX.h */,
FFFDb90388707fbab9038870 /* Binary/SnConvX_Align.h */,
FFFDb90388d87fbab90388d8 /* Binary/SnConvX_Common.h */,
FFFDb90389407fbab9038940 /* Binary/SnConvX_MetaData.h */,
FFFDb90389a87fbab90389a8 /* Binary/SnConvX_Output.h */,
FFFDb9038a107fbab9038a10 /* Binary/SnConvX_Union.h */,
FFFDb9038a787fbab9038a78 /* Binary/SnSerializationContext.h */,
FFFDb9038ae07fbab9038ae0 /* Binary/SnBinaryDeserialization.cpp */,
FFFDb9038b487fbab9038b48 /* Binary/SnBinarySerialization.cpp */,
FFFDb9038bb07fbab9038bb0 /* Binary/SnConvX.cpp */,
FFFDb9038c187fbab9038c18 /* Binary/SnConvX_Align.cpp */,
FFFDb9038c807fbab9038c80 /* Binary/SnConvX_Convert.cpp */,
FFFDb9038ce87fbab9038ce8 /* Binary/SnConvX_Error.cpp */,
FFFDb9038d507fbab9038d50 /* Binary/SnConvX_MetaData.cpp */,
FFFDb9038db87fbab9038db8 /* Binary/SnConvX_Output.cpp */,
FFFDb9038e207fbab9038e20 /* Binary/SnConvX_Union.cpp */,
FFFDb9038e887fbab9038e88 /* Binary/SnSerializationContext.cpp */,
FFFDb9038ef07fbab9038ef0 /* Xml/SnJointRepXSerializer.h */,
FFFDb9038f587fbab9038f58 /* Xml/SnPxStreamOperators.h */,
FFFDb9038fc07fbab9038fc0 /* Xml/SnRepX1_0Defaults.h */,
FFFDb90390287fbab9039028 /* Xml/SnRepX3_1Defaults.h */,
FFFDb90390907fbab9039090 /* Xml/SnRepX3_2Defaults.h */,
FFFDb90390f87fbab90390f8 /* Xml/SnRepXCollection.h */,
FFFDb90391607fbab9039160 /* Xml/SnRepXCoreSerializer.h */,
FFFDb90391c87fbab90391c8 /* Xml/SnRepXSerializerImpl.h */,
FFFDb90392307fbab9039230 /* Xml/SnRepXUpgrader.h */,
FFFDb90392987fbab9039298 /* Xml/SnSimpleXmlWriter.h */,
FFFDb90393007fbab9039300 /* Xml/SnXmlDeserializer.h */,
FFFDb90393687fbab9039368 /* Xml/SnXmlImpl.h */,
FFFDb90393d07fbab90393d0 /* Xml/SnXmlMemoryAllocator.h */,
FFFDb90394387fbab9039438 /* Xml/SnXmlMemoryPool.h */,
FFFDb90394a07fbab90394a0 /* Xml/SnXmlMemoryPoolStreams.h */,
FFFDb90395087fbab9039508 /* Xml/SnXmlReader.h */,
FFFDb90395707fbab9039570 /* Xml/SnXmlSerializer.h */,
FFFDb90395d87fbab90395d8 /* Xml/SnXmlSimpleXmlWriter.h */,
FFFDb90396407fbab9039640 /* Xml/SnXmlStringToType.h */,
FFFDb90396a87fbab90396a8 /* Xml/SnXmlVisitorReader.h */,
FFFDb90397107fbab9039710 /* Xml/SnXmlVisitorWriter.h */,
FFFDb90397787fbab9039778 /* Xml/SnXmlWriter.h */,
FFFDb90397e07fbab90397e0 /* Xml/SnJointRepXSerializer.cpp */,
FFFDb90398487fbab9039848 /* Xml/SnRepXCoreSerializer.cpp */,
FFFDb90398b07fbab90398b0 /* Xml/SnRepXUpgrader.cpp */,
FFFDb90399187fbab9039918 /* Xml/SnXmlSerialization.cpp */,
FFFDb90399807fbab9039980 /* File/SnFile.h */,
);
name = "serialization";
sourceTree = SOURCE_ROOT;
};
FFFBb87877487fbab8787748 /* metadata */ = {
isa = PBXGroup;
children = (
FFFDb90370007fbab9037000 /* core/include/PvdMetaDataDefineProperties.h */,
FFFDb90370687fbab9037068 /* core/include/PvdMetaDataExtensions.h */,
FFFDb90370d07fbab90370d0 /* core/include/PvdMetaDataPropertyVisitor.h */,
FFFDb90371387fbab9037138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */,
FFFDb90371a07fbab90371a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */,
FFFDb90372087fbab9037208 /* core/include/PxMetaDataCompare.h */,
FFFDb90372707fbab9037270 /* core/include/PxMetaDataCppPrefix.h */,
FFFDb90372d87fbab90372d8 /* core/include/PxMetaDataObjects.h */,
FFFDb90373407fbab9037340 /* core/include/RepXMetaDataPropertyVisitor.h */,
FFFDb90373a87fbab90373a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */,
FFFDb90374107fbab9037410 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */,
FFFDb90374787fbab9037478 /* extensions/include/PxExtensionMetaDataObjects.h */,
FFFDb90374e07fbab90374e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */,
);
name = "metadata";
sourceTree = SOURCE_ROOT;
};
FFFBb87961a07fbab87961a0 /* SceneQuery */ = {
isa = PBXGroup;
children = (
FFFBb8798b007fbab8798b00 /* src */,
FFFBb8798b287fbab8798b28 /* include */,
);
name = "SceneQuery";
sourceTree = "<group>";
};
FFFBb8798b007fbab8798b00 /* src */ = {
isa = PBXGroup;
children = (
FFFDb903d8007fbab903d800 /* SqAABBPruner.cpp */,
FFFDb903d8687fbab903d868 /* SqAABBTree.cpp */,
FFFDb903d8d07fbab903d8d0 /* SqAABBTreeBuild.cpp */,
FFFDb903d9387fbab903d938 /* SqAABBTreeUpdateMap.cpp */,
FFFDb903d9a07fbab903d9a0 /* SqBounds.cpp */,
FFFDb903da087fbab903da08 /* SqBucketPruner.cpp */,
FFFDb903da707fbab903da70 /* SqExtendedBucketPruner.cpp */,
FFFDb903dad87fbab903dad8 /* SqIncrementalAABBPrunerCore.cpp */,
FFFDb903db407fbab903db40 /* SqIncrementalAABBTree.cpp */,
FFFDb903dba87fbab903dba8 /* SqMetaData.cpp */,
FFFDb903dc107fbab903dc10 /* SqPruningPool.cpp */,
FFFDb903dc787fbab903dc78 /* SqPruningStructure.cpp */,
FFFDb903dce07fbab903dce0 /* SqSceneQueryManager.cpp */,
FFFDb903dd487fbab903dd48 /* SqAABBPruner.h */,
FFFDb903ddb07fbab903ddb0 /* SqAABBTree.h */,
FFFDb903de187fbab903de18 /* SqAABBTreeBuild.h */,
FFFDb903de807fbab903de80 /* SqAABBTreeQuery.h */,
FFFDb903dee87fbab903dee8 /* SqAABBTreeUpdateMap.h */,
FFFDb903df507fbab903df50 /* SqBounds.h */,
FFFDb903dfb87fbab903dfb8 /* SqBucketPruner.h */,
FFFDb903e0207fbab903e020 /* SqExtendedBucketPruner.h */,
FFFDb903e0887fbab903e088 /* SqIncrementalAABBPrunerCore.h */,
FFFDb903e0f07fbab903e0f0 /* SqIncrementalAABBTree.h */,
FFFDb903e1587fbab903e158 /* SqPrunerTestsSIMD.h */,
FFFDb903e1c07fbab903e1c0 /* SqPruningPool.h */,
FFFDb903e2287fbab903e228 /* SqTypedef.h */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFBb8798b287fbab8798b28 /* include */ = {
isa = PBXGroup;
children = (
FFFDb879a4a07fbab879a4a0 /* SqPruner.h */,
FFFDb879a5087fbab879a508 /* SqPrunerMergeData.h */,
FFFDb879a5707fbab879a570 /* SqPruningStructure.h */,
FFFDb879a5d87fbab879a5d8 /* SqSceneQueryManager.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFBb879a6d07fbab879a6d0 /* SimulationController */ = {
isa = PBXGroup;
children = (
FFFBb879f4207fbab879f420 /* include */,
FFFBb879f4487fbab879f448 /* src */,
);
name = "SimulationController";
sourceTree = "<group>";
};
FFFBb879f4207fbab879f420 /* include */ = {
isa = PBXGroup;
children = (
FFFDb90404007fbab9040400 /* ScActorCore.h */,
FFFDb90404687fbab9040468 /* ScArticulationCore.h */,
FFFDb90404d07fbab90404d0 /* ScArticulationJointCore.h */,
FFFDb90405387fbab9040538 /* ScBodyCore.h */,
FFFDb90405a07fbab90405a0 /* ScClothCore.h */,
FFFDb90406087fbab9040608 /* ScClothFabricCore.h */,
FFFDb90406707fbab9040670 /* ScConstraintCore.h */,
FFFDb90406d87fbab90406d8 /* ScIterators.h */,
FFFDb90407407fbab9040740 /* ScMaterialCore.h */,
FFFDb90407a87fbab90407a8 /* ScParticleSystemCore.h */,
FFFDb90408107fbab9040810 /* ScPhysics.h */,
FFFDb90408787fbab9040878 /* ScRigidCore.h */,
FFFDb90408e07fbab90408e0 /* ScScene.h */,
FFFDb90409487fbab9040948 /* ScShapeCore.h */,
FFFDb90409b07fbab90409b0 /* ScStaticCore.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFBb879f4487fbab879f448 /* src */ = {
isa = PBXGroup;
children = (
FFFDba8340007fbaba834000 /* ScActorElementPair.h */,
FFFDba8340687fbaba834068 /* ScActorInteraction.h */,
FFFDba8340d07fbaba8340d0 /* ScActorPair.h */,
FFFDba8341387fbaba834138 /* ScActorSim.h */,
FFFDba8341a07fbaba8341a0 /* ScArticulationJointSim.h */,
FFFDba8342087fbaba834208 /* ScArticulationSim.h */,
FFFDba8342707fbaba834270 /* ScBodySim.h */,
FFFDba8342d87fbaba8342d8 /* ScClient.h */,
FFFDba8343407fbaba834340 /* ScConstraintGroupNode.h */,
FFFDba8343a87fbaba8343a8 /* ScConstraintInteraction.h */,
FFFDba8344107fbaba834410 /* ScConstraintProjectionManager.h */,
FFFDba8344787fbaba834478 /* ScConstraintProjectionTree.h */,
FFFDba8344e07fbaba8344e0 /* ScConstraintSim.h */,
FFFDba8345487fbaba834548 /* ScContactReportBuffer.h */,
FFFDba8345b07fbaba8345b0 /* ScContactStream.h */,
FFFDba8346187fbaba834618 /* ScElementInteractionMarker.h */,
FFFDba8346807fbaba834680 /* ScElementSim.h */,
FFFDba8346e87fbaba8346e8 /* ScElementSimInteraction.h */,
FFFDba8347507fbaba834750 /* ScInteraction.h */,
FFFDba8347b87fbaba8347b8 /* ScInteractionFlags.h */,
FFFDba8348207fbaba834820 /* ScNPhaseCore.h */,
FFFDba8348887fbaba834888 /* ScObjectIDTracker.h */,
FFFDba8348f07fbaba8348f0 /* ScRbElementInteraction.h */,
FFFDba8349587fbaba834958 /* ScRigidSim.h */,
FFFDba8349c07fbaba8349c0 /* ScShapeInteraction.h */,
FFFDba834a287fbaba834a28 /* ScShapeIterator.h */,
FFFDba834a907fbaba834a90 /* ScShapeSim.h */,
FFFDba834af87fbaba834af8 /* ScSimStateData.h */,
FFFDba834b607fbaba834b60 /* ScSimStats.h */,
FFFDba834bc87fbaba834bc8 /* ScSimulationController.h */,
FFFDba834c307fbaba834c30 /* ScSqBoundsManager.h */,
FFFDba834c987fbaba834c98 /* ScStaticSim.h */,
FFFDba834d007fbaba834d00 /* ScTriggerInteraction.h */,
FFFDba834d687fbaba834d68 /* ScTriggerPairs.h */,
FFFDba834dd07fbaba834dd0 /* ScActorCore.cpp */,
FFFDba834e387fbaba834e38 /* ScActorSim.cpp */,
FFFDba834ea07fbaba834ea0 /* ScArticulationCore.cpp */,
FFFDba834f087fbaba834f08 /* ScArticulationJointCore.cpp */,
FFFDba834f707fbaba834f70 /* ScArticulationJointSim.cpp */,
FFFDba834fd87fbaba834fd8 /* ScArticulationSim.cpp */,
FFFDba8350407fbaba835040 /* ScBodyCore.cpp */,
FFFDba8350a87fbaba8350a8 /* ScBodyCoreKinematic.cpp */,
FFFDba8351107fbaba835110 /* ScBodySim.cpp */,
FFFDba8351787fbaba835178 /* ScConstraintCore.cpp */,
FFFDba8351e07fbaba8351e0 /* ScConstraintGroupNode.cpp */,
FFFDba8352487fbaba835248 /* ScConstraintInteraction.cpp */,
FFFDba8352b07fbaba8352b0 /* ScConstraintProjectionManager.cpp */,
FFFDba8353187fbaba835318 /* ScConstraintProjectionTree.cpp */,
FFFDba8353807fbaba835380 /* ScConstraintSim.cpp */,
FFFDba8353e87fbaba8353e8 /* ScElementInteractionMarker.cpp */,
FFFDba8354507fbaba835450 /* ScElementSim.cpp */,
FFFDba8354b87fbaba8354b8 /* ScInteraction.cpp */,
FFFDba8355207fbaba835520 /* ScIterators.cpp */,
FFFDba8355887fbaba835588 /* ScMaterialCore.cpp */,
FFFDba8355f07fbaba8355f0 /* ScMetaData.cpp */,
FFFDba8356587fbaba835658 /* ScNPhaseCore.cpp */,
FFFDba8356c07fbaba8356c0 /* ScPhysics.cpp */,
FFFDba8357287fbaba835728 /* ScRigidCore.cpp */,
FFFDba8357907fbaba835790 /* ScRigidSim.cpp */,
FFFDba8357f87fbaba8357f8 /* ScScene.cpp */,
FFFDba8358607fbaba835860 /* ScShapeCore.cpp */,
FFFDba8358c87fbaba8358c8 /* ScShapeInteraction.cpp */,
FFFDba8359307fbaba835930 /* ScShapeSim.cpp */,
FFFDba8359987fbaba835998 /* ScSimStats.cpp */,
FFFDba835a007fbaba835a00 /* ScSimulationController.cpp */,
FFFDba835a687fbaba835a68 /* ScSqBoundsManager.cpp */,
FFFDba835ad07fbaba835ad0 /* ScStaticCore.cpp */,
FFFDba835b387fbaba835b38 /* ScStaticSim.cpp */,
FFFDba835ba07fbaba835ba0 /* ScTriggerInteraction.cpp */,
FFFDba835c087fbaba835c08 /* particles/ScParticleBodyInteraction.h */,
FFFDba835c707fbaba835c70 /* particles/ScParticlePacketShape.h */,
FFFDba835cd87fbaba835cd8 /* particles/ScParticleSystemSim.h */,
FFFDba835d407fbaba835d40 /* particles/ScParticleBodyInteraction.cpp */,
FFFDba835da87fbaba835da8 /* particles/ScParticlePacketShape.cpp */,
FFFDba835e107fbaba835e10 /* particles/ScParticleSystemCore.cpp */,
FFFDba835e787fbaba835e78 /* particles/ScParticleSystemSim.cpp */,
FFFDba835ee07fbaba835ee0 /* cloth/ScClothShape.h */,
FFFDba835f487fbaba835f48 /* cloth/ScClothSim.h */,
FFFDba835fb07fbaba835fb0 /* cloth/ScClothCore.cpp */,
FFFDba8360187fbaba836018 /* cloth/ScClothFabricCore.cpp */,
FFFDba8360807fbaba836080 /* cloth/ScClothShape.cpp */,
FFFDba8360e87fbaba8360e8 /* cloth/ScClothSim.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFBbb0fb7e07fbabb0fb7e0 /* PhysXCooking */ = {
isa = PBXGroup;
children = (
FFFBbb1761407fbabb176140 /* include */,
FFFBbb1761687fbabb176168 /* src */,
);
name = "PhysXCooking";
sourceTree = "<group>";
};
FFFBbb1761407fbabb176140 /* include */ = {
isa = PBXGroup;
children = (
FFFDbb0393d07fbabb0393d0 /* PxBVH33MidphaseDesc.h */,
FFFDbb0394387fbabb039438 /* PxBVH34MidphaseDesc.h */,
FFFDbb0394a07fbabb0394a0 /* PxConvexMeshDesc.h */,
FFFDbb0395087fbabb039508 /* PxCooking.h */,
FFFDbb0395707fbabb039570 /* PxMidphaseDesc.h */,
FFFDbb0395d87fbabb0395d8 /* PxTriangleMeshDesc.h */,
FFFDbb0396407fbabb039640 /* Pxc.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFBbb1761687fbabb176168 /* src */ = {
isa = PBXGroup;
children = (
FFFDba839a007fbaba839a00 /* Adjacencies.cpp */,
FFFDba839a687fbaba839a68 /* Cooking.cpp */,
FFFDba839ad07fbaba839ad0 /* CookingUtils.cpp */,
FFFDba839b387fbaba839b38 /* EdgeList.cpp */,
FFFDba839ba07fbaba839ba0 /* MeshCleaner.cpp */,
FFFDba839c087fbaba839c08 /* Quantizer.cpp */,
FFFDba839c707fbaba839c70 /* Adjacencies.h */,
FFFDba839cd87fbaba839cd8 /* Cooking.h */,
FFFDba839d407fbaba839d40 /* CookingUtils.h */,
FFFDba839da87fbaba839da8 /* EdgeList.h */,
FFFDba839e107fbaba839e10 /* MeshCleaner.h */,
FFFDba839e787fbaba839e78 /* Quantizer.h */,
FFFDba839ee07fbaba839ee0 /* mesh/GrbTriangleMeshCooking.cpp */,
FFFDba839f487fbaba839f48 /* mesh/HeightFieldCooking.cpp */,
FFFDba839fb07fbaba839fb0 /* mesh/RTreeCooking.cpp */,
FFFDba83a0187fbaba83a018 /* mesh/TriangleMeshBuilder.cpp */,
FFFDba83a0807fbaba83a080 /* mesh/GrbTriangleMeshCooking.h */,
FFFDba83a0e87fbaba83a0e8 /* mesh/HeightFieldCooking.h */,
FFFDba83a1507fbaba83a150 /* mesh/QuickSelect.h */,
FFFDba83a1b87fbaba83a1b8 /* mesh/RTreeCooking.h */,
FFFDba83a2207fbaba83a220 /* mesh/TriangleMeshBuilder.h */,
FFFDba83a2887fbaba83a288 /* convex/BigConvexDataBuilder.cpp */,
FFFDba83a2f07fbaba83a2f0 /* convex/ConvexHullBuilder.cpp */,
FFFDba83a3587fbaba83a358 /* convex/ConvexHullLib.cpp */,
FFFDba83a3c07fbaba83a3c0 /* convex/ConvexHullUtils.cpp */,
FFFDba83a4287fbaba83a428 /* convex/ConvexMeshBuilder.cpp */,
FFFDba83a4907fbaba83a490 /* convex/ConvexPolygonsBuilder.cpp */,
FFFDba83a4f87fbaba83a4f8 /* convex/InflationConvexHullLib.cpp */,
FFFDba83a5607fbaba83a560 /* convex/QuickHullConvexHullLib.cpp */,
FFFDba83a5c87fbaba83a5c8 /* convex/VolumeIntegration.cpp */,
FFFDba83a6307fbaba83a630 /* convex/BigConvexDataBuilder.h */,
FFFDba83a6987fbaba83a698 /* convex/ConvexHullBuilder.h */,
FFFDba83a7007fbaba83a700 /* convex/ConvexHullLib.h */,
FFFDba83a7687fbaba83a768 /* convex/ConvexHullUtils.h */,
FFFDba83a7d07fbaba83a7d0 /* convex/ConvexMeshBuilder.h */,
FFFDba83a8387fbaba83a838 /* convex/ConvexPolygonsBuilder.h */,
FFFDba83a8a07fbaba83a8a0 /* convex/InflationConvexHullLib.h */,
FFFDba83a9087fbaba83a908 /* convex/QuickHullConvexHullLib.h */,
FFFDba83a9707fbaba83a970 /* convex/VolumeIntegration.h */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFBb9b6f2d07fbab9b6f2d0 /* PhysXCommon */ = {
isa = PBXGroup;
children = (
FFFBb9b71b507fbab9b71b50 /* include */,
FFFBb9b71b787fbab9b71b78 /* common */,
FFFBb9b71ba07fbab9b71ba0 /* geomutils */,
);
name = "PhysXCommon";
sourceTree = "<group>";
};
FFFBb9b71b507fbab9b71b50 /* include */ = {
isa = PBXGroup;
children = (
FFFDba0146007fbaba014600 /* common/PxBase.h */,
FFFDba0146687fbaba014668 /* common/PxCollection.h */,
FFFDba0146d07fbaba0146d0 /* common/PxCoreUtilityTypes.h */,
FFFDba0147387fbaba014738 /* common/PxMetaData.h */,
FFFDba0147a07fbaba0147a0 /* common/PxMetaDataFlags.h */,
FFFDba0148087fbaba014808 /* common/PxPhysXCommonConfig.h */,
FFFDba0148707fbaba014870 /* common/PxPhysicsInsertionCallback.h */,
FFFDba0148d87fbaba0148d8 /* common/PxRenderBuffer.h */,
FFFDba0149407fbaba014940 /* common/PxSerialFramework.h */,
FFFDba0149a87fbaba0149a8 /* common/PxSerializer.h */,
FFFDba014a107fbaba014a10 /* common/PxStringTable.h */,
FFFDba014a787fbaba014a78 /* common/PxTolerancesScale.h */,
FFFDba014ae07fbaba014ae0 /* common/PxTypeInfo.h */,
FFFDba014b487fbaba014b48 /* geometry/PxBoxGeometry.h */,
FFFDba014bb07fbaba014bb0 /* geometry/PxCapsuleGeometry.h */,
FFFDba014c187fbaba014c18 /* geometry/PxConvexMesh.h */,
FFFDba014c807fbaba014c80 /* geometry/PxConvexMeshGeometry.h */,
FFFDba014ce87fbaba014ce8 /* geometry/PxGeometry.h */,
FFFDba014d507fbaba014d50 /* geometry/PxGeometryHelpers.h */,
FFFDba014db87fbaba014db8 /* geometry/PxGeometryQuery.h */,
FFFDba014e207fbaba014e20 /* geometry/PxHeightField.h */,
FFFDba014e887fbaba014e88 /* geometry/PxHeightFieldDesc.h */,
FFFDba014ef07fbaba014ef0 /* geometry/PxHeightFieldFlag.h */,
FFFDba014f587fbaba014f58 /* geometry/PxHeightFieldGeometry.h */,
FFFDba014fc07fbaba014fc0 /* geometry/PxHeightFieldSample.h */,
FFFDba0150287fbaba015028 /* geometry/PxMeshQuery.h */,
FFFDba0150907fbaba015090 /* geometry/PxMeshScale.h */,
FFFDba0150f87fbaba0150f8 /* geometry/PxPlaneGeometry.h */,
FFFDba0151607fbaba015160 /* geometry/PxSimpleTriangleMesh.h */,
FFFDba0151c87fbaba0151c8 /* geometry/PxSphereGeometry.h */,
FFFDba0152307fbaba015230 /* geometry/PxTriangle.h */,
FFFDba0152987fbaba015298 /* geometry/PxTriangleMesh.h */,
FFFDba0153007fbaba015300 /* geometry/PxTriangleMeshGeometry.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFBb9b71b787fbab9b71b78 /* common */ = {
isa = PBXGroup;
children = (
FFFDb899f2007fbab899f200 /* src/CmBoxPruning.cpp */,
FFFDb899f2687fbab899f268 /* src/CmCollection.cpp */,
FFFDb899f2d07fbab899f2d0 /* src/CmMathUtils.cpp */,
FFFDb899f3387fbab899f338 /* src/CmPtrTable.cpp */,
FFFDb899f3a07fbab899f3a0 /* src/CmRadixSort.cpp */,
FFFDb899f4087fbab899f408 /* src/CmRadixSortBuffered.cpp */,
FFFDb899f4707fbab899f470 /* src/CmRenderOutput.cpp */,
FFFDb899f4d87fbab899f4d8 /* src/CmVisualization.cpp */,
FFFDb899f5407fbab899f540 /* src/CmBitMap.h */,
FFFDb899f5a87fbab899f5a8 /* src/CmBoxPruning.h */,
FFFDb899f6107fbab899f610 /* src/CmCollection.h */,
FFFDb899f6787fbab899f678 /* src/CmConeLimitHelper.h */,
FFFDb899f6e07fbab899f6e0 /* src/CmFlushPool.h */,
FFFDb899f7487fbab899f748 /* src/CmIDPool.h */,
FFFDb899f7b07fbab899f7b0 /* src/CmIO.h */,
FFFDb899f8187fbab899f818 /* src/CmMatrix34.h */,
FFFDb899f8807fbab899f880 /* src/CmPhysXCommon.h */,
FFFDb899f8e87fbab899f8e8 /* src/CmPool.h */,
FFFDb899f9507fbab899f950 /* src/CmPreallocatingPool.h */,
FFFDb899f9b87fbab899f9b8 /* src/CmPriorityQueue.h */,
FFFDb899fa207fbab899fa20 /* src/CmPtrTable.h */,
FFFDb899fa887fbab899fa88 /* src/CmQueue.h */,
FFFDb899faf07fbab899faf0 /* src/CmRadixSort.h */,
FFFDb899fb587fbab899fb58 /* src/CmRadixSortBuffered.h */,
FFFDb899fbc07fbab899fbc0 /* src/CmRefCountable.h */,
FFFDb899fc287fbab899fc28 /* src/CmRenderBuffer.h */,
FFFDb899fc907fbab899fc90 /* src/CmRenderOutput.h */,
FFFDb899fcf87fbab899fcf8 /* src/CmScaling.h */,
FFFDb899fd607fbab899fd60 /* src/CmSpatialVector.h */,
FFFDb899fdc87fbab899fdc8 /* src/CmTask.h */,
FFFDb899fe307fbab899fe30 /* src/CmTaskPool.h */,
FFFDb899fe987fbab899fe98 /* src/CmTmpMem.h */,
FFFDb899ff007fbab899ff00 /* src/CmTransformUtils.h */,
FFFDb899ff687fbab899ff68 /* src/CmUtils.h */,
FFFDb899ffd07fbab899ffd0 /* src/CmVisualization.h */,
);
name = "common";
sourceTree = SOURCE_ROOT;
};
FFFBb9b71ba07fbab9b71ba0 /* geomutils */ = {
isa = PBXGroup;
children = (
FFFDba0076007fbaba007600 /* headers/GuAxes.h */,
FFFDba0076687fbaba007668 /* headers/GuBox.h */,
FFFDba0076d07fbaba0076d0 /* headers/GuDistanceSegmentBox.h */,
FFFDba0077387fbaba007738 /* headers/GuDistanceSegmentSegment.h */,
FFFDba0077a07fbaba0077a0 /* headers/GuIntersectionBoxBox.h */,
FFFDba0078087fbaba007808 /* headers/GuIntersectionTriangleBox.h */,
FFFDba0078707fbaba007870 /* headers/GuRaycastTests.h */,
FFFDba0078d87fbaba0078d8 /* headers/GuSIMDHelpers.h */,
FFFDba0079407fbaba007940 /* headers/GuSegment.h */,
FFFDba0079a87fbaba0079a8 /* ../../Include/GeomUtils */,
FFFDba007a107fbaba007a10 /* src/GuBounds.h */,
FFFDba007a787fbaba007a78 /* src/GuCapsule.h */,
FFFDba007ae07fbaba007ae0 /* src/GuCenterExtents.h */,
FFFDba007b487fbaba007b48 /* src/GuGeometryUnion.h */,
FFFDba007bb07fbaba007bb0 /* src/GuInternal.h */,
FFFDba007c187fbaba007c18 /* src/GuMTD.h */,
FFFDba007c807fbaba007c80 /* src/GuMeshFactory.h */,
FFFDba007ce87fbaba007ce8 /* src/GuOverlapTests.h */,
FFFDba007d507fbaba007d50 /* src/GuSerialize.h */,
FFFDba007db87fbaba007db8 /* src/GuSphere.h */,
FFFDba007e207fbaba007e20 /* src/GuSweepMTD.h */,
FFFDba007e887fbaba007e88 /* src/GuSweepSharedTests.h */,
FFFDba007ef07fbaba007ef0 /* src/GuSweepTests.h */,
FFFDba007f587fbaba007f58 /* src/contact/GuContactMethodImpl.h */,
FFFDba007fc07fbaba007fc0 /* src/contact/GuContactPolygonPolygon.h */,
FFFDba0080287fbaba008028 /* src/contact/GuFeatureCode.h */,
FFFDba0080907fbaba008090 /* src/contact/GuLegacyTraceLineCallback.h */,
FFFDba0080f87fbaba0080f8 /* src/common/GuBarycentricCoordinates.h */,
FFFDba0081607fbaba008160 /* src/common/GuBoxConversion.h */,
FFFDba0081c87fbaba0081c8 /* src/common/GuEdgeCache.h */,
FFFDba0082307fbaba008230 /* src/common/GuEdgeListData.h */,
FFFDba0082987fbaba008298 /* src/common/GuSeparatingAxes.h */,
FFFDba0083007fbaba008300 /* src/convex/GuBigConvexData.h */,
FFFDba0083687fbaba008368 /* src/convex/GuBigConvexData2.h */,
FFFDba0083d07fbaba0083d0 /* src/convex/GuConvexEdgeFlags.h */,
FFFDba0084387fbaba008438 /* src/convex/GuConvexHelper.h */,
FFFDba0084a07fbaba0084a0 /* src/convex/GuConvexMesh.h */,
FFFDba0085087fbaba008508 /* src/convex/GuConvexMeshData.h */,
FFFDba0085707fbaba008570 /* src/convex/GuConvexSupportTable.h */,
FFFDba0085d87fbaba0085d8 /* src/convex/GuConvexUtilsInternal.h */,
FFFDba0086407fbaba008640 /* src/convex/GuCubeIndex.h */,
FFFDba0086a87fbaba0086a8 /* src/convex/GuHillClimbing.h */,
FFFDba0087107fbaba008710 /* src/convex/GuShapeConvex.h */,
FFFDba0087787fbaba008778 /* src/distance/GuDistancePointBox.h */,
FFFDba0087e07fbaba0087e0 /* src/distance/GuDistancePointSegment.h */,
FFFDba0088487fbaba008848 /* src/distance/GuDistancePointTriangle.h */,
FFFDba0088b07fbaba0088b0 /* src/distance/GuDistancePointTriangleSIMD.h */,
FFFDba0089187fbaba008918 /* src/distance/GuDistanceSegmentSegmentSIMD.h */,
FFFDba0089807fbaba008980 /* src/distance/GuDistanceSegmentTriangle.h */,
FFFDba0089e87fbaba0089e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */,
FFFDba008a507fbaba008a50 /* src/sweep/GuSweepBoxBox.h */,
FFFDba008ab87fbaba008ab8 /* src/sweep/GuSweepBoxSphere.h */,
FFFDba008b207fbaba008b20 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */,
FFFDba008b887fbaba008b88 /* src/sweep/GuSweepBoxTriangle_SAT.h */,
FFFDba008bf07fbaba008bf0 /* src/sweep/GuSweepCapsuleBox.h */,
FFFDba008c587fbaba008c58 /* src/sweep/GuSweepCapsuleCapsule.h */,
FFFDba008cc07fbaba008cc0 /* src/sweep/GuSweepCapsuleTriangle.h */,
FFFDba008d287fbaba008d28 /* src/sweep/GuSweepSphereCapsule.h */,
FFFDba008d907fbaba008d90 /* src/sweep/GuSweepSphereSphere.h */,
FFFDba008df87fbaba008df8 /* src/sweep/GuSweepSphereTriangle.h */,
FFFDba008e607fbaba008e60 /* src/sweep/GuSweepTriangleUtils.h */,
FFFDba008ec87fbaba008ec8 /* src/gjk/GuEPA.h */,
FFFDba008f307fbaba008f30 /* src/gjk/GuEPAFacet.h */,
FFFDba008f987fbaba008f98 /* src/gjk/GuGJK.h */,
FFFDba0090007fbaba009000 /* src/gjk/GuGJKPenetration.h */,
FFFDba0090687fbaba009068 /* src/gjk/GuGJKRaycast.h */,
FFFDba0090d07fbaba0090d0 /* src/gjk/GuGJKSimplex.h */,
FFFDba0091387fbaba009138 /* src/gjk/GuGJKTest.h */,
FFFDba0091a07fbaba0091a0 /* src/gjk/GuGJKType.h */,
FFFDba0092087fbaba009208 /* src/gjk/GuGJKUtil.h */,
FFFDba0092707fbaba009270 /* src/gjk/GuVecBox.h */,
FFFDba0092d87fbaba0092d8 /* src/gjk/GuVecCapsule.h */,
FFFDba0093407fbaba009340 /* src/gjk/GuVecConvex.h */,
FFFDba0093a87fbaba0093a8 /* src/gjk/GuVecConvexHull.h */,
FFFDba0094107fbaba009410 /* src/gjk/GuVecConvexHullNoScale.h */,
FFFDba0094787fbaba009478 /* src/gjk/GuVecPlane.h */,
FFFDba0094e07fbaba0094e0 /* src/gjk/GuVecShrunkBox.h */,
FFFDba0095487fbaba009548 /* src/gjk/GuVecShrunkConvexHull.h */,
FFFDba0095b07fbaba0095b0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */,
FFFDba0096187fbaba009618 /* src/gjk/GuVecSphere.h */,
FFFDba0096807fbaba009680 /* src/gjk/GuVecTriangle.h */,
FFFDba0096e87fbaba0096e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */,
FFFDba0097507fbaba009750 /* src/intersection/GuIntersectionEdgeEdge.h */,
FFFDba0097b87fbaba0097b8 /* src/intersection/GuIntersectionRay.h */,
FFFDba0098207fbaba009820 /* src/intersection/GuIntersectionRayBox.h */,
FFFDba0098887fbaba009888 /* src/intersection/GuIntersectionRayBoxSIMD.h */,
FFFDba0098f07fbaba0098f0 /* src/intersection/GuIntersectionRayCapsule.h */,
FFFDba0099587fbaba009958 /* src/intersection/GuIntersectionRayPlane.h */,
FFFDba0099c07fbaba0099c0 /* src/intersection/GuIntersectionRaySphere.h */,
FFFDba009a287fbaba009a28 /* src/intersection/GuIntersectionRayTriangle.h */,
FFFDba009a907fbaba009a90 /* src/intersection/GuIntersectionSphereBox.h */,
FFFDba009af87fbaba009af8 /* src/mesh/GuBV32.h */,
FFFDba009b607fbaba009b60 /* src/mesh/GuBV32Build.h */,
FFFDba009bc87fbaba009bc8 /* src/mesh/GuBV4.h */,
FFFDba009c307fbaba009c30 /* src/mesh/GuBV4Build.h */,
FFFDba009c987fbaba009c98 /* src/mesh/GuBV4Settings.h */,
FFFDba009d007fbaba009d00 /* src/mesh/GuBV4_AABBAABBSweepTest.h */,
FFFDba009d687fbaba009d68 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */,
FFFDba009dd07fbaba009dd0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */,
FFFDba009e387fbaba009e38 /* src/mesh/GuBV4_BoxSweep_Internal.h */,
FFFDba009ea07fbaba009ea0 /* src/mesh/GuBV4_BoxSweep_Params.h */,
FFFDba009f087fbaba009f08 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */,
FFFDba009f707fbaba009f70 /* src/mesh/GuBV4_Common.h */,
FFFDba009fd87fbaba009fd8 /* src/mesh/GuBV4_Internal.h */,
FFFDba00a0407fbaba00a040 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */,
FFFDba00a0a87fbaba00a0a8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */,
FFFDba00a1107fbaba00a110 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */,
FFFDba00a1787fbaba00a178 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */,
FFFDba00a1e07fbaba00a1e0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */,
FFFDba00a2487fbaba00a248 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */,
FFFDba00a2b07fbaba00a2b0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */,
FFFDba00a3187fbaba00a318 /* src/mesh/GuBV4_Slabs.h */,
FFFDba00a3807fbaba00a380 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */,
FFFDba00a3e87fbaba00a3e8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */,
FFFDba00a4507fbaba00a450 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */,
FFFDba00a4b87fbaba00a4b8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */,
FFFDba00a5207fbaba00a520 /* src/mesh/GuBVConstants.h */,
FFFDba00a5887fbaba00a588 /* src/mesh/GuMeshData.h */,
FFFDba00a5f07fbaba00a5f0 /* src/mesh/GuMidphaseInterface.h */,
FFFDba00a6587fbaba00a658 /* src/mesh/GuRTree.h */,
FFFDba00a6c07fbaba00a6c0 /* src/mesh/GuSweepConvexTri.h */,
FFFDba00a7287fbaba00a728 /* src/mesh/GuSweepMesh.h */,
FFFDba00a7907fbaba00a790 /* src/mesh/GuTriangle32.h */,
FFFDba00a7f87fbaba00a7f8 /* src/mesh/GuTriangleCache.h */,
FFFDba00a8607fbaba00a860 /* src/mesh/GuTriangleMesh.h */,
FFFDba00a8c87fbaba00a8c8 /* src/mesh/GuTriangleMeshBV4.h */,
FFFDba00a9307fbaba00a930 /* src/mesh/GuTriangleMeshRTree.h */,
FFFDba00a9987fbaba00a998 /* src/mesh/GuTriangleVertexPointers.h */,
FFFDba00aa007fbaba00aa00 /* src/hf/GuEntityReport.h */,
FFFDba00aa687fbaba00aa68 /* src/hf/GuHeightField.h */,
FFFDba00aad07fbaba00aad0 /* src/hf/GuHeightFieldData.h */,
FFFDba00ab387fbaba00ab38 /* src/hf/GuHeightFieldUtil.h */,
FFFDba00aba07fbaba00aba0 /* src/pcm/GuPCMContactConvexCommon.h */,
FFFDba00ac087fbaba00ac08 /* src/pcm/GuPCMContactGen.h */,
FFFDba00ac707fbaba00ac70 /* src/pcm/GuPCMContactGenUtil.h */,
FFFDba00acd87fbaba00acd8 /* src/pcm/GuPCMContactMeshCallback.h */,
FFFDba00ad407fbaba00ad40 /* src/pcm/GuPCMShapeConvex.h */,
FFFDba00ada87fbaba00ada8 /* src/pcm/GuPCMTriangleContactGen.h */,
FFFDba00ae107fbaba00ae10 /* src/pcm/GuPersistentContactManifold.h */,
FFFDba00ae787fbaba00ae78 /* src/ccd/GuCCDSweepConvexMesh.h */,
FFFDba00aee07fbaba00aee0 /* src/GuBounds.cpp */,
FFFDba00af487fbaba00af48 /* src/GuBox.cpp */,
FFFDba00afb07fbaba00afb0 /* src/GuCCTSweepTests.cpp */,
FFFDba00b0187fbaba00b018 /* src/GuCapsule.cpp */,
FFFDba00b0807fbaba00b080 /* src/GuGeometryQuery.cpp */,
FFFDba00b0e87fbaba00b0e8 /* src/GuGeometryUnion.cpp */,
FFFDba00b1507fbaba00b150 /* src/GuInternal.cpp */,
FFFDba00b1b87fbaba00b1b8 /* src/GuMTD.cpp */,
FFFDba00b2207fbaba00b220 /* src/GuMeshFactory.cpp */,
FFFDba00b2887fbaba00b288 /* src/GuMetaData.cpp */,
FFFDba00b2f07fbaba00b2f0 /* src/GuOverlapTests.cpp */,
FFFDba00b3587fbaba00b358 /* src/GuRaycastTests.cpp */,
FFFDba00b3c07fbaba00b3c0 /* src/GuSerialize.cpp */,
FFFDba00b4287fbaba00b428 /* src/GuSweepMTD.cpp */,
FFFDba00b4907fbaba00b490 /* src/GuSweepSharedTests.cpp */,
FFFDba00b4f87fbaba00b4f8 /* src/GuSweepTests.cpp */,
FFFDba00b5607fbaba00b560 /* src/contact/GuContactBoxBox.cpp */,
FFFDba00b5c87fbaba00b5c8 /* src/contact/GuContactCapsuleBox.cpp */,
FFFDba00b6307fbaba00b630 /* src/contact/GuContactCapsuleCapsule.cpp */,
FFFDba00b6987fbaba00b698 /* src/contact/GuContactCapsuleConvex.cpp */,
FFFDba00b7007fbaba00b700 /* src/contact/GuContactCapsuleMesh.cpp */,
FFFDba00b7687fbaba00b768 /* src/contact/GuContactConvexConvex.cpp */,
FFFDba00b7d07fbaba00b7d0 /* src/contact/GuContactConvexMesh.cpp */,
FFFDba00b8387fbaba00b838 /* src/contact/GuContactPlaneBox.cpp */,
FFFDba00b8a07fbaba00b8a0 /* src/contact/GuContactPlaneCapsule.cpp */,
FFFDba00b9087fbaba00b908 /* src/contact/GuContactPlaneConvex.cpp */,
FFFDba00b9707fbaba00b970 /* src/contact/GuContactPolygonPolygon.cpp */,
FFFDba00b9d87fbaba00b9d8 /* src/contact/GuContactSphereBox.cpp */,
FFFDba00ba407fbaba00ba40 /* src/contact/GuContactSphereCapsule.cpp */,
FFFDba00baa87fbaba00baa8 /* src/contact/GuContactSphereMesh.cpp */,
FFFDba00bb107fbaba00bb10 /* src/contact/GuContactSpherePlane.cpp */,
FFFDba00bb787fbaba00bb78 /* src/contact/GuContactSphereSphere.cpp */,
FFFDba00bbe07fbaba00bbe0 /* src/contact/GuFeatureCode.cpp */,
FFFDba00bc487fbaba00bc48 /* src/contact/GuLegacyContactBoxHeightField.cpp */,
FFFDba00bcb07fbaba00bcb0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */,
FFFDba00bd187fbaba00bd18 /* src/contact/GuLegacyContactConvexHeightField.cpp */,
FFFDba00bd807fbaba00bd80 /* src/contact/GuLegacyContactSphereHeightField.cpp */,
FFFDba00bde87fbaba00bde8 /* src/common/GuBarycentricCoordinates.cpp */,
FFFDba00be507fbaba00be50 /* src/common/GuSeparatingAxes.cpp */,
FFFDba00beb87fbaba00beb8 /* src/convex/GuBigConvexData.cpp */,
FFFDba00bf207fbaba00bf20 /* src/convex/GuConvexHelper.cpp */,
FFFDba00bf887fbaba00bf88 /* src/convex/GuConvexMesh.cpp */,
FFFDba00bff07fbaba00bff0 /* src/convex/GuConvexSupportTable.cpp */,
FFFDba00c0587fbaba00c058 /* src/convex/GuConvexUtilsInternal.cpp */,
FFFDba00c0c07fbaba00c0c0 /* src/convex/GuHillClimbing.cpp */,
FFFDba00c1287fbaba00c128 /* src/convex/GuShapeConvex.cpp */,
FFFDba00c1907fbaba00c190 /* src/distance/GuDistancePointBox.cpp */,
FFFDba00c1f87fbaba00c1f8 /* src/distance/GuDistancePointTriangle.cpp */,
FFFDba00c2607fbaba00c260 /* src/distance/GuDistanceSegmentBox.cpp */,
FFFDba00c2c87fbaba00c2c8 /* src/distance/GuDistanceSegmentSegment.cpp */,
FFFDba00c3307fbaba00c330 /* src/distance/GuDistanceSegmentTriangle.cpp */,
FFFDba00c3987fbaba00c398 /* src/sweep/GuSweepBoxBox.cpp */,
FFFDba00c4007fbaba00c400 /* src/sweep/GuSweepBoxSphere.cpp */,
FFFDba00c4687fbaba00c468 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */,
FFFDba00c4d07fbaba00c4d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */,
FFFDba00c5387fbaba00c538 /* src/sweep/GuSweepCapsuleBox.cpp */,
FFFDba00c5a07fbaba00c5a0 /* src/sweep/GuSweepCapsuleCapsule.cpp */,
FFFDba00c6087fbaba00c608 /* src/sweep/GuSweepCapsuleTriangle.cpp */,
FFFDba00c6707fbaba00c670 /* src/sweep/GuSweepSphereCapsule.cpp */,
FFFDba00c6d87fbaba00c6d8 /* src/sweep/GuSweepSphereSphere.cpp */,
FFFDba00c7407fbaba00c740 /* src/sweep/GuSweepSphereTriangle.cpp */,
FFFDba00c7a87fbaba00c7a8 /* src/sweep/GuSweepTriangleUtils.cpp */,
FFFDba00c8107fbaba00c810 /* src/gjk/GuEPA.cpp */,
FFFDba00c8787fbaba00c878 /* src/gjk/GuGJKSimplex.cpp */,
FFFDba00c8e07fbaba00c8e0 /* src/gjk/GuGJKTest.cpp */,
FFFDba00c9487fbaba00c948 /* src/intersection/GuIntersectionBoxBox.cpp */,
FFFDba00c9b07fbaba00c9b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */,
FFFDba00ca187fbaba00ca18 /* src/intersection/GuIntersectionEdgeEdge.cpp */,
FFFDba00ca807fbaba00ca80 /* src/intersection/GuIntersectionRayBox.cpp */,
FFFDba00cae87fbaba00cae8 /* src/intersection/GuIntersectionRayCapsule.cpp */,
FFFDba00cb507fbaba00cb50 /* src/intersection/GuIntersectionRaySphere.cpp */,
FFFDba00cbb87fbaba00cbb8 /* src/intersection/GuIntersectionSphereBox.cpp */,
FFFDba00cc207fbaba00cc20 /* src/intersection/GuIntersectionTriangleBox.cpp */,
FFFDba00cc887fbaba00cc88 /* src/mesh/GuBV32.cpp */,
FFFDba00ccf07fbaba00ccf0 /* src/mesh/GuBV32Build.cpp */,
FFFDba00cd587fbaba00cd58 /* src/mesh/GuBV4.cpp */,
FFFDba00cdc07fbaba00cdc0 /* src/mesh/GuBV4Build.cpp */,
FFFDba00ce287fbaba00ce28 /* src/mesh/GuBV4_AABBSweep.cpp */,
FFFDba00ce907fbaba00ce90 /* src/mesh/GuBV4_BoxOverlap.cpp */,
FFFDba00cef87fbaba00cef8 /* src/mesh/GuBV4_CapsuleSweep.cpp */,
FFFDba00cf607fbaba00cf60 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */,
FFFDba00cfc87fbaba00cfc8 /* src/mesh/GuBV4_OBBSweep.cpp */,
FFFDba00d0307fbaba00d030 /* src/mesh/GuBV4_Raycast.cpp */,
FFFDba00d0987fbaba00d098 /* src/mesh/GuBV4_SphereOverlap.cpp */,
FFFDba00d1007fbaba00d100 /* src/mesh/GuBV4_SphereSweep.cpp */,
FFFDba00d1687fbaba00d168 /* src/mesh/GuMeshQuery.cpp */,
FFFDba00d1d07fbaba00d1d0 /* src/mesh/GuMidphaseBV4.cpp */,
FFFDba00d2387fbaba00d238 /* src/mesh/GuMidphaseRTree.cpp */,
FFFDba00d2a07fbaba00d2a0 /* src/mesh/GuOverlapTestsMesh.cpp */,
FFFDba00d3087fbaba00d308 /* src/mesh/GuRTree.cpp */,
FFFDba00d3707fbaba00d370 /* src/mesh/GuRTreeQueries.cpp */,
FFFDba00d3d87fbaba00d3d8 /* src/mesh/GuSweepsMesh.cpp */,
FFFDba00d4407fbaba00d440 /* src/mesh/GuTriangleMesh.cpp */,
FFFDba00d4a87fbaba00d4a8 /* src/mesh/GuTriangleMeshBV4.cpp */,
FFFDba00d5107fbaba00d510 /* src/mesh/GuTriangleMeshRTree.cpp */,
FFFDba00d5787fbaba00d578 /* src/hf/GuHeightField.cpp */,
FFFDba00d5e07fbaba00d5e0 /* src/hf/GuHeightFieldUtil.cpp */,
FFFDba00d6487fbaba00d648 /* src/hf/GuOverlapTestsHF.cpp */,
FFFDba00d6b07fbaba00d6b0 /* src/hf/GuSweepsHF.cpp */,
FFFDba00d7187fbaba00d718 /* src/pcm/GuPCMContactBoxBox.cpp */,
FFFDba00d7807fbaba00d780 /* src/pcm/GuPCMContactBoxConvex.cpp */,
FFFDba00d7e87fbaba00d7e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */,
FFFDba00d8507fbaba00d850 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */,
FFFDba00d8b87fbaba00d8b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */,
FFFDba00d9207fbaba00d920 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */,
FFFDba00d9887fbaba00d988 /* src/pcm/GuPCMContactCapsuleMesh.cpp */,
FFFDba00d9f07fbaba00d9f0 /* src/pcm/GuPCMContactConvexCommon.cpp */,
FFFDba00da587fbaba00da58 /* src/pcm/GuPCMContactConvexConvex.cpp */,
FFFDba00dac07fbaba00dac0 /* src/pcm/GuPCMContactConvexHeightField.cpp */,
FFFDba00db287fbaba00db28 /* src/pcm/GuPCMContactConvexMesh.cpp */,
FFFDba00db907fbaba00db90 /* src/pcm/GuPCMContactGenBoxConvex.cpp */,
FFFDba00dbf87fbaba00dbf8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */,
FFFDba00dc607fbaba00dc60 /* src/pcm/GuPCMContactPlaneBox.cpp */,
FFFDba00dcc87fbaba00dcc8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */,
FFFDba00dd307fbaba00dd30 /* src/pcm/GuPCMContactPlaneConvex.cpp */,
FFFDba00dd987fbaba00dd98 /* src/pcm/GuPCMContactSphereBox.cpp */,
FFFDba00de007fbaba00de00 /* src/pcm/GuPCMContactSphereCapsule.cpp */,
FFFDba00de687fbaba00de68 /* src/pcm/GuPCMContactSphereConvex.cpp */,
FFFDba00ded07fbaba00ded0 /* src/pcm/GuPCMContactSphereHeightField.cpp */,
FFFDba00df387fbaba00df38 /* src/pcm/GuPCMContactSphereMesh.cpp */,
FFFDba00dfa07fbaba00dfa0 /* src/pcm/GuPCMContactSpherePlane.cpp */,
FFFDba00e0087fbaba00e008 /* src/pcm/GuPCMContactSphereSphere.cpp */,
FFFDba00e0707fbaba00e070 /* src/pcm/GuPCMShapeConvex.cpp */,
FFFDba00e0d87fbaba00e0d8 /* src/pcm/GuPCMTriangleContactGen.cpp */,
FFFDba00e1407fbaba00e140 /* src/pcm/GuPersistentContactManifold.cpp */,
FFFDba00e1a87fbaba00e1a8 /* src/ccd/GuCCDSweepConvexMesh.cpp */,
FFFDba00e2107fbaba00e210 /* src/ccd/GuCCDSweepPrimitives.cpp */,
);
name = "geomutils";
sourceTree = SOURCE_ROOT;
};
FFFBb9b5ed307fbab9b5ed30 /* PxFoundation */ = {
isa = PBXGroup;
children = (
FFFBb9b5f3c07fbab9b5f3c0 /* include */,
FFFBb9b5f3e87fbab9b5f3e8 /* src */,
);
name = "PxFoundation";
sourceTree = "<group>";
};
FFFBb9b5f3c07fbab9b5f3c0 /* include */ = {
isa = PBXGroup;
children = (
FFFDb898b6007fbab898b600 /* Px.h */,
FFFDb898b6687fbab898b668 /* PxAllocatorCallback.h */,
FFFDb898b6d07fbab898b6d0 /* PxAssert.h */,
FFFDb898b7387fbab898b738 /* PxBitAndData.h */,
FFFDb898b7a07fbab898b7a0 /* PxBounds3.h */,
FFFDb898b8087fbab898b808 /* PxErrorCallback.h */,
FFFDb898b8707fbab898b870 /* PxErrors.h */,
FFFDb898b8d87fbab898b8d8 /* PxFlags.h */,
FFFDb898b9407fbab898b940 /* PxFoundation.h */,
FFFDb898b9a87fbab898b9a8 /* PxFoundationVersion.h */,
FFFDb898ba107fbab898ba10 /* PxIO.h */,
FFFDb898ba787fbab898ba78 /* PxIntrinsics.h */,
FFFDb898bae07fbab898bae0 /* PxMat33.h */,
FFFDb898bb487fbab898bb48 /* PxMat44.h */,
FFFDb898bbb07fbab898bbb0 /* PxMath.h */,
FFFDb898bc187fbab898bc18 /* PxMathUtils.h */,
FFFDb898bc807fbab898bc80 /* PxMemory.h */,
FFFDb898bce87fbab898bce8 /* PxPlane.h */,
FFFDb898bd507fbab898bd50 /* PxPreprocessor.h */,
FFFDb898bdb87fbab898bdb8 /* PxProfiler.h */,
FFFDb898be207fbab898be20 /* PxQuat.h */,
FFFDb898be887fbab898be88 /* PxSimpleTypes.h */,
FFFDb898bef07fbab898bef0 /* PxStrideIterator.h */,
FFFDb898bf587fbab898bf58 /* PxTransform.h */,
FFFDb898bfc07fbab898bfc0 /* PxUnionCast.h */,
FFFDb898c0287fbab898c028 /* PxVec2.h */,
FFFDb898c0907fbab898c090 /* PxVec3.h */,
FFFDb898c0f87fbab898c0f8 /* PxVec4.h */,
FFFDb898c1607fbab898c160 /* unix/PxUnixIntrinsics.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFBb9b5f3e87fbab9b5f3e8 /* src */ = {
isa = PBXGroup;
children = (
FFFDb8995c007fbab8995c00 /* include/Ps.h */,
FFFDb8995c687fbab8995c68 /* include/PsAlignedMalloc.h */,
FFFDb8995cd07fbab8995cd0 /* include/PsAlloca.h */,
FFFDb8995d387fbab8995d38 /* include/PsAllocator.h */,
FFFDb8995da07fbab8995da0 /* include/PsAoS.h */,
FFFDb8995e087fbab8995e08 /* include/PsArray.h */,
FFFDb8995e707fbab8995e70 /* include/PsAtomic.h */,
FFFDb8995ed87fbab8995ed8 /* include/PsBasicTemplates.h */,
FFFDb8995f407fbab8995f40 /* include/PsBitUtils.h */,
FFFDb8995fa87fbab8995fa8 /* include/PsBroadcast.h */,
FFFDb89960107fbab8996010 /* include/PsCpu.h */,
FFFDb89960787fbab8996078 /* include/PsFPU.h */,
FFFDb89960e07fbab89960e0 /* include/PsFoundation.h */,
FFFDb89961487fbab8996148 /* include/PsHash.h */,
FFFDb89961b07fbab89961b0 /* include/PsHashInternals.h */,
FFFDb89962187fbab8996218 /* include/PsHashMap.h */,
FFFDb89962807fbab8996280 /* include/PsHashSet.h */,
FFFDb89962e87fbab89962e8 /* include/PsInlineAllocator.h */,
FFFDb89963507fbab8996350 /* include/PsInlineAoS.h */,
FFFDb89963b87fbab89963b8 /* include/PsInlineArray.h */,
FFFDb89964207fbab8996420 /* include/PsIntrinsics.h */,
FFFDb89964887fbab8996488 /* include/PsMathUtils.h */,
FFFDb89964f07fbab89964f0 /* include/PsMutex.h */,
FFFDb89965587fbab8996558 /* include/PsPool.h */,
FFFDb89965c07fbab89965c0 /* include/PsSList.h */,
FFFDb89966287fbab8996628 /* include/PsSocket.h */,
FFFDb89966907fbab8996690 /* include/PsSort.h */,
FFFDb89966f87fbab89966f8 /* include/PsSortInternals.h */,
FFFDb89967607fbab8996760 /* include/PsString.h */,
FFFDb89967c87fbab89967c8 /* include/PsSync.h */,
FFFDb89968307fbab8996830 /* include/PsTempAllocator.h */,
FFFDb89968987fbab8996898 /* include/PsThread.h */,
FFFDb89969007fbab8996900 /* include/PsTime.h */,
FFFDb89969687fbab8996968 /* include/PsUserAllocated.h */,
FFFDb89969d07fbab89969d0 /* include/PsUtilities.h */,
FFFDb8996a387fbab8996a38 /* include/PsVecMath.h */,
FFFDb8996aa07fbab8996aa0 /* include/PsVecMathAoSScalar.h */,
FFFDb8996b087fbab8996b08 /* include/PsVecMathAoSScalarInline.h */,
FFFDb8996b707fbab8996b70 /* include/PsVecMathSSE.h */,
FFFDb8996bd87fbab8996bd8 /* include/PsVecMathUtilities.h */,
FFFDb8996c407fbab8996c40 /* include/PsVecQuat.h */,
FFFDb8996ca87fbab8996ca8 /* include/PsVecTransform.h */,
FFFDb8996d107fbab8996d10 /* include/unix/PsUnixAoS.h */,
FFFDb8996d787fbab8996d78 /* include/unix/PsUnixFPU.h */,
FFFDb8996de07fbab8996de0 /* include/unix/PsUnixInlineAoS.h */,
FFFDb8996e487fbab8996e48 /* include/unix/PsUnixIntrinsics.h */,
FFFDb8996eb07fbab8996eb0 /* include/unix/PsUnixTrigConstants.h */,
FFFDb8996f187fbab8996f18 /* src/PsAllocator.cpp */,
FFFDb8996f807fbab8996f80 /* src/PsAssert.cpp */,
FFFDb8996fe87fbab8996fe8 /* src/PsFoundation.cpp */,
FFFDb89970507fbab8997050 /* src/PsMathUtils.cpp */,
FFFDb89970b87fbab89970b8 /* src/PsString.cpp */,
FFFDb89971207fbab8997120 /* src/PsTempAllocator.cpp */,
FFFDb89971887fbab8997188 /* src/PsUtilities.cpp */,
FFFDb89971f07fbab89971f0 /* src/unix/PsUnixAtomic.cpp */,
FFFDb89972587fbab8997258 /* src/unix/PsUnixCpu.cpp */,
FFFDb89972c07fbab89972c0 /* src/unix/PsUnixFPU.cpp */,
FFFDb89973287fbab8997328 /* src/unix/PsUnixMutex.cpp */,
FFFDb89973907fbab8997390 /* src/unix/PsUnixPrintString.cpp */,
FFFDb89973f87fbab89973f8 /* src/unix/PsUnixSList.cpp */,
FFFDb89974607fbab8997460 /* src/unix/PsUnixSocket.cpp */,
FFFDb89974c87fbab89974c8 /* src/unix/PsUnixSync.cpp */,
FFFDb89975307fbab8997530 /* src/unix/PsUnixThread.cpp */,
FFFDb89975987fbab8997598 /* src/unix/PsUnixTime.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFBb98414907fbab9841490 /* PxPvdSDK */ = {
isa = PBXGroup;
children = (
FFFBb98438207fbab9843820 /* include */,
FFFBb98438487fbab9843848 /* src */,
);
name = "PxPvdSDK";
sourceTree = "<group>";
};
FFFBb98438207fbab9843820 /* include */ = {
isa = PBXGroup;
children = (
FFFDb9843e807fbab9843e80 /* PxPvd.h */,
FFFDb9843ee87fbab9843ee8 /* PxPvdTransport.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFBb98438487fbab9843848 /* src */ = {
isa = PBXGroup;
children = (
FFFDba0234007fbaba023400 /* include/PsPvd.h */,
FFFDba0234687fbaba023468 /* include/PxProfileAllocatorWrapper.h */,
FFFDba0234d07fbaba0234d0 /* include/PxPvdClient.h */,
FFFDba0235387fbaba023538 /* include/PxPvdDataStream.h */,
FFFDba0235a07fbaba0235a0 /* include/PxPvdDataStreamHelpers.h */,
FFFDba0236087fbaba023608 /* include/PxPvdErrorCodes.h */,
FFFDba0236707fbaba023670 /* include/PxPvdObjectModelBaseTypes.h */,
FFFDba0236d87fbaba0236d8 /* include/PxPvdRenderBuffer.h */,
FFFDba0237407fbaba023740 /* include/PxPvdUserRenderer.h */,
FFFDba0237a87fbaba0237a8 /* src/PxProfileEventImpl.cpp */,
FFFDba0238107fbaba023810 /* src/PxPvd.cpp */,
FFFDba0238787fbaba023878 /* src/PxPvdDataStream.cpp */,
FFFDba0238e07fbaba0238e0 /* src/PxPvdDefaultFileTransport.cpp */,
FFFDba0239487fbaba023948 /* src/PxPvdDefaultSocketTransport.cpp */,
FFFDba0239b07fbaba0239b0 /* src/PxPvdImpl.cpp */,
FFFDba023a187fbaba023a18 /* src/PxPvdMemClient.cpp */,
FFFDba023a807fbaba023a80 /* src/PxPvdObjectModelMetaData.cpp */,
FFFDba023ae87fbaba023ae8 /* src/PxPvdObjectRegistrar.cpp */,
FFFDba023b507fbaba023b50 /* src/PxPvdProfileZoneClient.cpp */,
FFFDba023bb87fbaba023bb8 /* src/PxPvdUserRenderer.cpp */,
FFFDba023c207fbaba023c20 /* src/PxProfileBase.h */,
FFFDba023c887fbaba023c88 /* src/PxProfileCompileTimeEventFilter.h */,
FFFDba023cf07fbaba023cf0 /* src/PxProfileContextProvider.h */,
FFFDba023d587fbaba023d58 /* src/PxProfileContextProviderImpl.h */,
FFFDba023dc07fbaba023dc0 /* src/PxProfileDataBuffer.h */,
FFFDba023e287fbaba023e28 /* src/PxProfileDataParsing.h */,
FFFDba023e907fbaba023e90 /* src/PxProfileEventBuffer.h */,
FFFDba023ef87fbaba023ef8 /* src/PxProfileEventBufferAtomic.h */,
FFFDba023f607fbaba023f60 /* src/PxProfileEventBufferClient.h */,
FFFDba023fc87fbaba023fc8 /* src/PxProfileEventBufferClientManager.h */,
FFFDba0240307fbaba024030 /* src/PxProfileEventFilter.h */,
FFFDba0240987fbaba024098 /* src/PxProfileEventHandler.h */,
FFFDba0241007fbaba024100 /* src/PxProfileEventId.h */,
FFFDba0241687fbaba024168 /* src/PxProfileEventMutex.h */,
FFFDba0241d07fbaba0241d0 /* src/PxProfileEventNames.h */,
FFFDba0242387fbaba024238 /* src/PxProfileEventParser.h */,
FFFDba0242a07fbaba0242a0 /* src/PxProfileEventSender.h */,
FFFDba0243087fbaba024308 /* src/PxProfileEventSerialization.h */,
FFFDba0243707fbaba024370 /* src/PxProfileEventSystem.h */,
FFFDba0243d87fbaba0243d8 /* src/PxProfileEvents.h */,
FFFDba0244407fbaba024440 /* src/PxProfileMemory.h */,
FFFDba0244a87fbaba0244a8 /* src/PxProfileMemoryBuffer.h */,
FFFDba0245107fbaba024510 /* src/PxProfileMemoryEventBuffer.h */,
FFFDba0245787fbaba024578 /* src/PxProfileMemoryEventParser.h */,
FFFDba0245e07fbaba0245e0 /* src/PxProfileMemoryEventRecorder.h */,
FFFDba0246487fbaba024648 /* src/PxProfileMemoryEventReflexiveWriter.h */,
FFFDba0246b07fbaba0246b0 /* src/PxProfileMemoryEventSummarizer.h */,
FFFDba0247187fbaba024718 /* src/PxProfileMemoryEventTypes.h */,
FFFDba0247807fbaba024780 /* src/PxProfileMemoryEvents.h */,
FFFDba0247e87fbaba0247e8 /* src/PxProfileScopedEvent.h */,
FFFDba0248507fbaba024850 /* src/PxProfileScopedMutexLock.h */,
FFFDba0248b87fbaba0248b8 /* src/PxProfileZone.h */,
FFFDba0249207fbaba024920 /* src/PxProfileZoneImpl.h */,
FFFDba0249887fbaba024988 /* src/PxProfileZoneManager.h */,
FFFDba0249f07fbaba0249f0 /* src/PxProfileZoneManagerImpl.h */,
FFFDba024a587fbaba024a58 /* src/PxPvdBits.h */,
FFFDba024ac07fbaba024ac0 /* src/PxPvdByteStreams.h */,
FFFDba024b287fbaba024b28 /* src/PxPvdCommStreamEventSink.h */,
FFFDba024b907fbaba024b90 /* src/PxPvdCommStreamEvents.h */,
FFFDba024bf87fbaba024bf8 /* src/PxPvdCommStreamSDKEventTypes.h */,
FFFDba024c607fbaba024c60 /* src/PxPvdCommStreamTypes.h */,
FFFDba024cc87fbaba024cc8 /* src/PxPvdDefaultFileTransport.h */,
FFFDba024d307fbaba024d30 /* src/PxPvdDefaultSocketTransport.h */,
FFFDba024d987fbaba024d98 /* src/PxPvdFoundation.h */,
FFFDba024e007fbaba024e00 /* src/PxPvdImpl.h */,
FFFDba024e687fbaba024e68 /* src/PxPvdInternalByteStreams.h */,
FFFDba024ed07fbaba024ed0 /* src/PxPvdMarshalling.h */,
FFFDba024f387fbaba024f38 /* src/PxPvdMemClient.h */,
FFFDba024fa07fbaba024fa0 /* src/PxPvdObjectModel.h */,
FFFDba0250087fbaba025008 /* src/PxPvdObjectModelInternalTypeDefs.h */,
FFFDba0250707fbaba025070 /* src/PxPvdObjectModelInternalTypes.h */,
FFFDba0250d87fbaba0250d8 /* src/PxPvdObjectModelMetaData.h */,
FFFDba0251407fbaba025140 /* src/PxPvdObjectRegistrar.h */,
FFFDba0251a87fbaba0251a8 /* src/PxPvdProfileZoneClient.h */,
FFFDba0252107fbaba025210 /* src/PxPvdUserRenderImpl.h */,
FFFDba0252787fbaba025278 /* src/PxPvdUserRenderTypes.h */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFBb98574907fbab9857490 /* LowLevel */ = {
isa = PBXGroup;
children = (
FFFBb985eef07fbab985eef0 /* API Source */,
FFFBb985ef187fbab985ef18 /* API Includes */,
FFFBb985ef407fbab985ef40 /* Software Source */,
FFFBb985ef687fbab985ef68 /* Software Includes */,
FFFBb985ef907fbab985ef90 /* Common Source */,
FFFBb985efb87fbab985efb8 /* Common Includes */,
);
name = "LowLevel";
sourceTree = "<group>";
};
FFFBb985eef07fbab985eef0 /* API Source */ = {
isa = PBXGroup;
children = (
FFFDb985dcf07fbab985dcf0 /* px_globals.cpp */,
);
name = "API Source";
sourceTree = SOURCE_ROOT;
};
FFFBb985ef187fbab985ef18 /* API Includes */ = {
isa = PBXGroup;
children = (
FFFDb98602207fbab9860220 /* PxsMaterialCore.h */,
FFFDb98602887fbab9860288 /* PxsMaterialManager.h */,
FFFDb98602f07fbab98602f0 /* PxvConfig.h */,
FFFDb98603587fbab9860358 /* PxvContext.h */,
FFFDb98603c07fbab98603c0 /* PxvDynamics.h */,
FFFDb98604287fbab9860428 /* PxvGeometry.h */,
FFFDb98604907fbab9860490 /* PxvGlobals.h */,
FFFDb98604f87fbab98604f8 /* PxvManager.h */,
FFFDb98605607fbab9860560 /* PxvSimStats.h */,
);
name = "API Includes";
sourceTree = SOURCE_ROOT;
};
FFFBb985ef407fbab985ef40 /* Software Source */ = {
isa = PBXGroup;
children = (
FFFDb98613307fbab9861330 /* PxsCCD.cpp */,
FFFDb98613987fbab9861398 /* PxsContactManager.cpp */,
FFFDb98614007fbab9861400 /* PxsContext.cpp */,
FFFDb98614687fbab9861468 /* PxsDefaultMemoryManager.cpp */,
FFFDb98614d07fbab98614d0 /* PxsIslandSim.cpp */,
FFFDb98615387fbab9861538 /* PxsMaterialCombiner.cpp */,
FFFDb98615a07fbab98615a0 /* PxsNphaseImplementationContext.cpp */,
FFFDb98616087fbab9861608 /* PxsSimpleIslandManager.cpp */,
);
name = "Software Source";
sourceTree = SOURCE_ROOT;
};
FFFBb985ef687fbab985ef68 /* Software Includes */ = {
isa = PBXGroup;
children = (
FFFDba02b8007fbaba02b800 /* PxsBodySim.h */,
FFFDba02b8687fbaba02b868 /* PxsCCD.h */,
FFFDba02b8d07fbaba02b8d0 /* PxsContactManager.h */,
FFFDba02b9387fbaba02b938 /* PxsContactManagerState.h */,
FFFDba02b9a07fbaba02b9a0 /* PxsContext.h */,
FFFDba02ba087fbaba02ba08 /* PxsDefaultMemoryManager.h */,
FFFDba02ba707fbaba02ba70 /* PxsHeapMemoryAllocator.h */,
FFFDba02bad87fbaba02bad8 /* PxsIncrementalConstraintPartitioning.h */,
FFFDba02bb407fbaba02bb40 /* PxsIslandManagerTypes.h */,
FFFDba02bba87fbaba02bba8 /* PxsIslandSim.h */,
FFFDba02bc107fbaba02bc10 /* PxsKernelWrangler.h */,
FFFDba02bc787fbaba02bc78 /* PxsMaterialCombiner.h */,
FFFDba02bce07fbaba02bce0 /* PxsMemoryManager.h */,
FFFDba02bd487fbaba02bd48 /* PxsNphaseImplementationContext.h */,
FFFDba02bdb07fbaba02bdb0 /* PxsRigidBody.h */,
FFFDba02be187fbaba02be18 /* PxsShapeSim.h */,
FFFDba02be807fbaba02be80 /* PxsSimpleIslandManager.h */,
FFFDba02bee87fbaba02bee8 /* PxsSimulationController.h */,
FFFDba02bf507fbaba02bf50 /* PxsTransformCache.h */,
FFFDba02bfb87fbaba02bfb8 /* PxvNphaseImplementationContext.h */,
);
name = "Software Includes";
sourceTree = SOURCE_ROOT;
};
FFFBb985ef907fbab985ef90 /* Common Source */ = {
isa = PBXGroup;
children = (
FFFDba0268007fbaba026800 /* collision/PxcContact.cpp */,
FFFDba0268687fbaba026868 /* pipeline/PxcContactCache.cpp */,
FFFDba0268d07fbaba0268d0 /* pipeline/PxcContactMethodImpl.cpp */,
FFFDba0269387fbaba026938 /* pipeline/PxcMaterialHeightField.cpp */,
FFFDba0269a07fbaba0269a0 /* pipeline/PxcMaterialMesh.cpp */,
FFFDba026a087fbaba026a08 /* pipeline/PxcMaterialMethodImpl.cpp */,
FFFDba026a707fbaba026a70 /* pipeline/PxcMaterialShape.cpp */,
FFFDba026ad87fbaba026ad8 /* pipeline/PxcNpBatch.cpp */,
FFFDba026b407fbaba026b40 /* pipeline/PxcNpCacheStreamPair.cpp */,
FFFDba026ba87fbaba026ba8 /* pipeline/PxcNpContactPrepShared.cpp */,
FFFDba026c107fbaba026c10 /* pipeline/PxcNpMemBlockPool.cpp */,
FFFDba026c787fbaba026c78 /* pipeline/PxcNpThreadContext.cpp */,
);
name = "Common Source";
sourceTree = SOURCE_ROOT;
};
FFFBb985efb87fbab985efb8 /* Common Includes */ = {
isa = PBXGroup;
children = (
FFFDba02aa007fbaba02aa00 /* collision/PxcContactMethodImpl.h */,
FFFDba02aa687fbaba02aa68 /* pipeline/PxcCCDStateStreamPair.h */,
FFFDba02aad07fbaba02aad0 /* pipeline/PxcConstraintBlockStream.h */,
FFFDba02ab387fbaba02ab38 /* pipeline/PxcContactCache.h */,
FFFDba02aba07fbaba02aba0 /* pipeline/PxcMaterialMethodImpl.h */,
FFFDba02ac087fbaba02ac08 /* pipeline/PxcNpBatch.h */,
FFFDba02ac707fbaba02ac70 /* pipeline/PxcNpCache.h */,
FFFDba02acd87fbaba02acd8 /* pipeline/PxcNpCacheStreamPair.h */,
FFFDba02ad407fbaba02ad40 /* pipeline/PxcNpContactPrepShared.h */,
FFFDba02ada87fbaba02ada8 /* pipeline/PxcNpMemBlockPool.h */,
FFFDba02ae107fbaba02ae10 /* pipeline/PxcNpThreadContext.h */,
FFFDba02ae787fbaba02ae78 /* pipeline/PxcNpWorkUnit.h */,
FFFDba02aee07fbaba02aee0 /* pipeline/PxcRigidBody.h */,
FFFDba02af487fbaba02af48 /* utils/PxcScratchAllocator.h */,
FFFDba02afb07fbaba02afb0 /* utils/PxcThreadCoherentCache.h */,
);
name = "Common Includes";
sourceTree = SOURCE_ROOT;
};
FFFBbb0160707fbabb016070 /* LowLevelAABB */ = {
isa = PBXGroup;
children = (
FFFBb9e08f407fbab9e08f40 /* include */,
FFFBb9e08f687fbab9e08f68 /* src */,
);
name = "LowLevelAABB";
sourceTree = "<group>";
};
FFFBb9e08f407fbab9e08f40 /* include */ = {
isa = PBXGroup;
children = (
FFFDb9e0a1307fbab9e0a130 /* BpAABBManagerTasks.h */,
FFFDb9e0a1987fbab9e0a198 /* BpBroadPhase.h */,
FFFDb9e0a2007fbab9e0a200 /* BpBroadPhaseUpdate.h */,
FFFDb9e0a2687fbab9e0a268 /* BpSimpleAABBManager.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFBb9e08f687fbab9e08f68 /* src */ = {
isa = PBXGroup;
children = (
FFFDba81fc007fbaba81fc00 /* BpBroadPhaseMBP.h */,
FFFDba81fc687fbaba81fc68 /* BpBroadPhaseMBPCommon.h */,
FFFDba81fcd07fbaba81fcd0 /* BpBroadPhaseSap.h */,
FFFDba81fd387fbaba81fd38 /* BpBroadPhaseSapAux.h */,
FFFDba81fda07fbaba81fda0 /* BpMBPTasks.h */,
FFFDba81fe087fbaba81fe08 /* BpSAPTasks.h */,
FFFDba81fe707fbaba81fe70 /* BpBroadPhase.cpp */,
FFFDba81fed87fbaba81fed8 /* BpBroadPhaseMBP.cpp */,
FFFDba81ff407fbaba81ff40 /* BpBroadPhaseSap.cpp */,
FFFDba81ffa87fbaba81ffa8 /* BpBroadPhaseSapAux.cpp */,
FFFDba8200107fbaba820010 /* BpMBPTasks.cpp */,
FFFDba8200787fbaba820078 /* BpSAPTasks.cpp */,
FFFDba8200e07fbaba8200e0 /* BpSimpleAABBManager.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFBb872ced07fbab872ced0 /* LowLevelDynamics */ = {
isa = PBXGroup;
children = (
FFFBb8734d107fbab8734d10 /* Dynamics Source */,
FFFBb8734d387fbab8734d38 /* Dynamics Includes */,
FFFBb8734d607fbab8734d60 /* Dynamics Internal Includes */,
);
name = "LowLevelDynamics";
sourceTree = "<group>";
};
FFFBb8734d107fbab8734d10 /* Dynamics Source */ = {
isa = PBXGroup;
children = (
FFFDb900fc007fbab900fc00 /* DyArticulation.cpp */,
FFFDb900fc687fbab900fc68 /* DyArticulationContactPrep.cpp */,
FFFDb900fcd07fbab900fcd0 /* DyArticulationContactPrepPF.cpp */,
FFFDb900fd387fbab900fd38 /* DyArticulationHelper.cpp */,
FFFDb900fda07fbab900fda0 /* DyArticulationSIMD.cpp */,
FFFDb900fe087fbab900fe08 /* DyArticulationScalar.cpp */,
FFFDb900fe707fbab900fe70 /* DyConstraintPartition.cpp */,
FFFDb900fed87fbab900fed8 /* DyConstraintSetup.cpp */,
FFFDb900ff407fbab900ff40 /* DyConstraintSetupBlock.cpp */,
FFFDb900ffa87fbab900ffa8 /* DyContactPrep.cpp */,
FFFDb90100107fbab9010010 /* DyContactPrep4.cpp */,
FFFDb90100787fbab9010078 /* DyContactPrep4PF.cpp */,
FFFDb90100e07fbab90100e0 /* DyContactPrepPF.cpp */,
FFFDb90101487fbab9010148 /* DyDynamics.cpp */,
FFFDb90101b07fbab90101b0 /* DyFrictionCorrelation.cpp */,
FFFDb90102187fbab9010218 /* DyRigidBodyToSolverBody.cpp */,
FFFDb90102807fbab9010280 /* DySolverConstraints.cpp */,
FFFDb90102e87fbab90102e8 /* DySolverConstraintsBlock.cpp */,
FFFDb90103507fbab9010350 /* DySolverControl.cpp */,
FFFDb90103b87fbab90103b8 /* DySolverControlPF.cpp */,
FFFDb90104207fbab9010420 /* DySolverPFConstraints.cpp */,
FFFDb90104887fbab9010488 /* DySolverPFConstraintsBlock.cpp */,
FFFDb90104f07fbab90104f0 /* DyThreadContext.cpp */,
FFFDb90105587fbab9010558 /* DyThresholdTable.cpp */,
);
name = "Dynamics Source";
sourceTree = SOURCE_ROOT;
};
FFFBb8734d387fbab8734d38 /* Dynamics Includes */ = {
isa = PBXGroup;
children = (
FFFDb87363907fbab8736390 /* DyArticulation.h */,
FFFDb87363f87fbab87363f8 /* DyConstraint.h */,
FFFDb87364607fbab8736460 /* DyConstraintWriteBack.h */,
FFFDb87364c87fbab87364c8 /* DyContext.h */,
FFFDb87365307fbab8736530 /* DySleepingConfigulation.h */,
FFFDb87365987fbab8736598 /* DyThresholdTable.h */,
);
name = "Dynamics Includes";
sourceTree = SOURCE_ROOT;
};
FFFBb8734d607fbab8734d60 /* Dynamics Internal Includes */ = {
isa = PBXGroup;
children = (
FFFDb9011c007fbab9011c00 /* DyArticulationContactPrep.h */,
FFFDb9011c687fbab9011c68 /* DyArticulationFnsDebug.h */,
FFFDb9011cd07fbab9011cd0 /* DyArticulationFnsScalar.h */,
FFFDb9011d387fbab9011d38 /* DyArticulationFnsSimd.h */,
FFFDb9011da07fbab9011da0 /* DyArticulationHelper.h */,
FFFDb9011e087fbab9011e08 /* DyArticulationPImpl.h */,
FFFDb9011e707fbab9011e70 /* DyArticulationReference.h */,
FFFDb9011ed87fbab9011ed8 /* DyArticulationScalar.h */,
FFFDb9011f407fbab9011f40 /* DyArticulationUtils.h */,
FFFDb9011fa87fbab9011fa8 /* DyBodyCoreIntegrator.h */,
FFFDb90120107fbab9012010 /* DyConstraintPartition.h */,
FFFDb90120787fbab9012078 /* DyConstraintPrep.h */,
FFFDb90120e07fbab90120e0 /* DyContactPrep.h */,
FFFDb90121487fbab9012148 /* DyContactPrepShared.h */,
FFFDb90121b07fbab90121b0 /* DyContactReduction.h */,
FFFDb90122187fbab9012218 /* DyCorrelationBuffer.h */,
FFFDb90122807fbab9012280 /* DyDynamics.h */,
FFFDb90122e87fbab90122e8 /* DyFrictionPatch.h */,
FFFDb90123507fbab9012350 /* DyFrictionPatchStreamPair.h */,
FFFDb90123b87fbab90123b8 /* DySolverBody.h */,
FFFDb90124207fbab9012420 /* DySolverConstraint1D.h */,
FFFDb90124887fbab9012488 /* DySolverConstraint1D4.h */,
FFFDb90124f07fbab90124f0 /* DySolverConstraintDesc.h */,
FFFDb90125587fbab9012558 /* DySolverConstraintExtShared.h */,
FFFDb90125c07fbab90125c0 /* DySolverConstraintTypes.h */,
FFFDb90126287fbab9012628 /* DySolverConstraintsShared.h */,
FFFDb90126907fbab9012690 /* DySolverContact.h */,
FFFDb90126f87fbab90126f8 /* DySolverContact4.h */,
FFFDb90127607fbab9012760 /* DySolverContactPF.h */,
FFFDb90127c87fbab90127c8 /* DySolverContactPF4.h */,
FFFDb90128307fbab9012830 /* DySolverContext.h */,
FFFDb90128987fbab9012898 /* DySolverControl.h */,
FFFDb90129007fbab9012900 /* DySolverControlPF.h */,
FFFDb90129687fbab9012968 /* DySolverCore.h */,
FFFDb90129d07fbab90129d0 /* DySolverExt.h */,
FFFDb9012a387fbab9012a38 /* DySpatial.h */,
FFFDb9012aa07fbab9012aa0 /* DyThreadContext.h */,
);
name = "Dynamics Internal Includes";
sourceTree = SOURCE_ROOT;
};
FFFBb87530507fbab8753050 /* LowLevelCloth */ = {
isa = PBXGroup;
children = (
FFFBb87552507fbab8755250 /* include */,
FFFBb87552787fbab8755278 /* src */,
);
name = "LowLevelCloth";
sourceTree = "<group>";
};
FFFBb87552507fbab8755250 /* include */ = {
isa = PBXGroup;
children = (
FFFDb87565007fbab8756500 /* Cloth.h */,
FFFDb87565687fbab8756568 /* Fabric.h */,
FFFDb87565d07fbab87565d0 /* Factory.h */,
FFFDb87566387fbab8756638 /* PhaseConfig.h */,
FFFDb87566a07fbab87566a0 /* Range.h */,
FFFDb87567087fbab8756708 /* Solver.h */,
FFFDb87567707fbab8756770 /* Types.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFBb87552787fbab8755278 /* src */ = {
isa = PBXGroup;
children = (
FFFDb901b8007fbab901b800 /* Allocator.h */,
FFFDb901b8687fbab901b868 /* Array.h */,
FFFDb901b8d07fbab901b8d0 /* BoundingBox.h */,
FFFDb901b9387fbab901b938 /* ClothBase.h */,
FFFDb901b9a07fbab901b9a0 /* ClothImpl.h */,
FFFDb901ba087fbab901ba08 /* IndexPair.h */,
FFFDb901ba707fbab901ba70 /* IterationState.h */,
FFFDb901bad87fbab901bad8 /* MovingAverage.h */,
FFFDb901bb407fbab901bb40 /* PointInterpolator.h */,
FFFDb901bba87fbab901bba8 /* Simd.h */,
FFFDb901bc107fbab901bc10 /* Simd4f.h */,
FFFDb901bc787fbab901bc78 /* Simd4i.h */,
FFFDb901bce07fbab901bce0 /* SimdTypes.h */,
FFFDb901bd487fbab901bd48 /* StackAllocator.h */,
FFFDb901bdb07fbab901bdb0 /* SwCloth.h */,
FFFDb901be187fbab901be18 /* SwClothData.h */,
FFFDb901be807fbab901be80 /* SwCollision.h */,
FFFDb901bee87fbab901bee8 /* SwCollisionHelpers.h */,
FFFDb901bf507fbab901bf50 /* SwFabric.h */,
FFFDb901bfb87fbab901bfb8 /* SwFactory.h */,
FFFDb901c0207fbab901c020 /* SwInterCollision.h */,
FFFDb901c0887fbab901c088 /* SwSelfCollision.h */,
FFFDb901c0f07fbab901c0f0 /* SwSolver.h */,
FFFDb901c1587fbab901c158 /* SwSolverKernel.h */,
FFFDb901c1c07fbab901c1c0 /* TripletScheduler.h */,
FFFDb901c2287fbab901c228 /* Vec4T.h */,
FFFDb901c2907fbab901c290 /* Allocator.cpp */,
FFFDb901c2f87fbab901c2f8 /* Factory.cpp */,
FFFDb901c3607fbab901c360 /* PhaseConfig.cpp */,
FFFDb901c3c87fbab901c3c8 /* SwCloth.cpp */,
FFFDb901c4307fbab901c430 /* SwClothData.cpp */,
FFFDb901c4987fbab901c498 /* SwCollision.cpp */,
FFFDb901c5007fbab901c500 /* SwFabric.cpp */,
FFFDb901c5687fbab901c568 /* SwFactory.cpp */,
FFFDb901c5d07fbab901c5d0 /* SwInterCollision.cpp */,
FFFDb901c6387fbab901c638 /* SwSelfCollision.cpp */,
FFFDb901c6a07fbab901c6a0 /* SwSolver.cpp */,
FFFDb901c7087fbab901c708 /* SwSolverKernel.cpp */,
FFFDb901c7707fbab901c770 /* TripletScheduler.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFBbb01a9407fbabb01a940 /* LowLevelParticles */ = {
isa = PBXGroup;
children = (
FFFBbb01c9007fbabb01c900 /* include */,
FFFBbb01c9287fbabb01c928 /* src */,
);
name = "LowLevelParticles";
sourceTree = "<group>";
};
FFFBbb01c9007fbabb01c900 /* include */ = {
isa = PBXGroup;
children = (
FFFDba825e007fbaba825e00 /* PtBodyTransformVault.h */,
FFFDba825e687fbaba825e68 /* PtContext.h */,
FFFDba825ed07fbaba825ed0 /* PtGridCellVector.h */,
FFFDba825f387fbaba825f38 /* PtParticle.h */,
FFFDba825fa07fbaba825fa0 /* PtParticleContactManagerStream.h */,
FFFDba8260087fbaba826008 /* PtParticleData.h */,
FFFDba8260707fbaba826070 /* PtParticleShape.h */,
FFFDba8260d87fbaba8260d8 /* PtParticleSystemCore.h */,
FFFDba8261407fbaba826140 /* PtParticleSystemFlags.h */,
FFFDba8261a87fbaba8261a8 /* PtParticleSystemSim.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFBbb01c9287fbabb01c928 /* src */ = {
isa = PBXGroup;
children = (
FFFDba830a007fbaba830a00 /* PtBatcher.h */,
FFFDba830a687fbaba830a68 /* PtCollision.h */,
FFFDba830ad07fbaba830ad0 /* PtCollisionData.h */,
FFFDba830b387fbaba830b38 /* PtCollisionHelper.h */,
FFFDba830ba07fbaba830ba0 /* PtCollisionMethods.h */,
FFFDba830c087fbaba830c08 /* PtCollisionParameters.h */,
FFFDba830c707fbaba830c70 /* PtConfig.h */,
FFFDba830cd87fbaba830cd8 /* PtConstants.h */,
FFFDba830d407fbaba830d40 /* PtContextCpu.h */,
FFFDba830da87fbaba830da8 /* PtDynamicHelper.h */,
FFFDba830e107fbaba830e10 /* PtDynamics.h */,
FFFDba830e787fbaba830e78 /* PtDynamicsKernels.h */,
FFFDba830ee07fbaba830ee0 /* PtDynamicsParameters.h */,
FFFDba830f487fbaba830f48 /* PtDynamicsTempBuffers.h */,
FFFDba830fb07fbaba830fb0 /* PtHeightFieldAabbTest.h */,
FFFDba8310187fbaba831018 /* PtPacketSections.h */,
FFFDba8310807fbaba831080 /* PtParticleCell.h */,
FFFDba8310e87fbaba8310e8 /* PtParticleOpcodeCache.h */,
FFFDba8311507fbaba831150 /* PtParticleShapeCpu.h */,
FFFDba8311b87fbaba8311b8 /* PtParticleSystemSimCpu.h */,
FFFDba8312207fbaba831220 /* PtSpatialHash.h */,
FFFDba8312887fbaba831288 /* PtSpatialHashHelper.h */,
FFFDba8312f07fbaba8312f0 /* PtTwoWayData.h */,
FFFDba8313587fbaba831358 /* PtBatcher.cpp */,
FFFDba8313c07fbaba8313c0 /* PtBodyTransformVault.cpp */,
FFFDba8314287fbaba831428 /* PtCollision.cpp */,
FFFDba8314907fbaba831490 /* PtCollisionBox.cpp */,
FFFDba8314f87fbaba8314f8 /* PtCollisionCapsule.cpp */,
FFFDba8315607fbaba831560 /* PtCollisionConvex.cpp */,
FFFDba8315c87fbaba8315c8 /* PtCollisionMesh.cpp */,
FFFDba8316307fbaba831630 /* PtCollisionPlane.cpp */,
FFFDba8316987fbaba831698 /* PtCollisionSphere.cpp */,
FFFDba8317007fbaba831700 /* PtContextCpu.cpp */,
FFFDba8317687fbaba831768 /* PtDynamics.cpp */,
FFFDba8317d07fbaba8317d0 /* PtParticleData.cpp */,
FFFDba8318387fbaba831838 /* PtParticleShapeCpu.cpp */,
FFFDba8318a07fbaba8318a0 /* PtParticleSystemSimCpu.cpp */,
FFFDba8319087fbaba831908 /* PtSpatialHash.cpp */,
FFFDba8319707fbaba831970 /* PtSpatialLocalHash.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFBbb3e5dc07fbabb3e5dc0 /* PxTask */ = {
isa = PBXGroup;
children = (
FFFBbb3e5ff07fbabb3e5ff0 /* include */,
FFFBbb3e60187fbabb3e6018 /* src */,
);
name = "PxTask";
sourceTree = "<group>";
};
FFFBbb3e5ff07fbabb3e5ff0 /* include */ = {
isa = PBXGroup;
children = (
FFFDbb3e6fd07fbabb3e6fd0 /* PxCpuDispatcher.h */,
FFFDbb3e70387fbabb3e7038 /* PxGpuDispatcher.h */,
FFFDbb3e70a07fbabb3e70a0 /* PxGpuTask.h */,
FFFDbb3e71087fbabb3e7108 /* PxTask.h */,
FFFDbb3e71707fbabb3e7170 /* PxTaskDefine.h */,
FFFDbb3e71d87fbabb3e71d8 /* PxTaskManager.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFBbb3e60187fbabb3e6018 /* src */ = {
isa = PBXGroup;
children = (
FFFDbb3e3e707fbabb3e3e70 /* src/TaskManager.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFBb876cb807fbab876cb80 /* PsFastXml */ = {
isa = PBXGroup;
children = (
FFFBb876d1607fbab876d160 /* include */,
FFFBb876d1887fbab876d188 /* src */,
);
name = "PsFastXml";
sourceTree = "<group>";
};
FFFBb876d1607fbab876d160 /* include */ = {
isa = PBXGroup;
children = (
FFFDb876d2f07fbab876d2f0 /* PsFastXml.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFBb876d1887fbab876d188 /* src */ = {
isa = PBXGroup;
children = (
FFFDb876d3f07fbab876d3f0 /* PsFastXml.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
FFFAb87703d07fbab87703d0 /* PhysX */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF6b87703d07fbab87703d0 /* Build configuration list for PBXNativeTarget "PhysX" */;
buildPhases = (
FFF2b87703d07fbab87703d0,
FFF8b87703d07fbab87703d0,
FFFCb87703d07fbab87703d0,
);
buildRules = (
);
dependencies = (
FFF4b8775d407fbab8775d40, /* LowLevel */
FFF4b87750107fbab8775010, /* LowLevelAABB */
FFF4b8767fc07fbab8767fc0, /* LowLevelCloth */
FFF4b87750707fbab8775070, /* LowLevelDynamics */
FFF4b87680207fbab8768020, /* LowLevelParticles */
FFF4b8771ca07fbab8771ca0, /* PhysXCommon */
FFF4b87706f07fbab87706f0, /* PxFoundation */
FFF4b87703a07fbab87703a0, /* PxPvdSDK */
FFF4b87629a07fbab87629a0, /* PxTask */
FFF4b87680807fbab8768080, /* SceneQuery */
FFF4b87629707fbab8762970, /* SimulationController */
);
name = "PhysX";
productName = "PhysX";
productReference = FFFDb87703d07fbab87703d0 /* PhysX */;
productType = "com.apple.product-type.library.static";
};
FFFAb8767c907fbab8767c90 /* PhysXCharacterKinematic */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF6b8767c907fbab8767c90 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */;
buildPhases = (
FFF2b8767c907fbab8767c90,
FFF8b8767c907fbab8767c90,
FFFCb8767c907fbab8767c90,
);
buildRules = (
);
dependencies = (
FFF4b87777f07fbab87777f0, /* PhysXCommon */
FFF4b8776d207fbab8776d20, /* PhysXExtensions */
FFF4b87783c07fbab87783c0, /* PxFoundation */
);
name = "PhysXCharacterKinematic";
productName = "PhysXCharacterKinematic";
productReference = FFFDb8767c907fbab8767c90 /* PhysXCharacterKinematic */;
productType = "com.apple.product-type.library.static";
};
FFFAb87675207fbab8767520 /* PhysXVehicle */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF6b87675207fbab8767520 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */;
buildPhases = (
FFF2b87675207fbab8767520,
FFF8b87675207fbab8767520,
FFFCb87675207fbab8767520,
);
buildRules = (
);
dependencies = (
);
name = "PhysXVehicle";
productName = "PhysXVehicle";
productReference = FFFDb87675207fbab8767520 /* PhysXVehicle */;
productType = "com.apple.product-type.library.static";
};
FFFAb8784f507fbab8784f50 /* PhysXExtensions */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF6b8784f507fbab8784f50 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */;
buildPhases = (
FFF2b8784f507fbab8784f50,
FFF8b8784f507fbab8784f50,
FFFCb8784f507fbab8784f50,
);
buildRules = (
);
dependencies = (
FFF4b87858a07fbab87858a0, /* PsFastXml */
);
name = "PhysXExtensions";
productName = "PhysXExtensions";
productReference = FFFDb8784f507fbab8784f50 /* PhysXExtensions */;
productType = "com.apple.product-type.library.static";
};
FFFAb87961a07fbab87961a0 /* SceneQuery */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF6b87961a07fbab87961a0 /* Build configuration list for PBXNativeTarget "SceneQuery" */;
buildPhases = (
FFF2b87961a07fbab87961a0,
FFF8b87961a07fbab87961a0,
FFFCb87961a07fbab87961a0,
);
buildRules = (
);
dependencies = (
);
name = "SceneQuery";
productName = "SceneQuery";
productReference = FFFDb87961a07fbab87961a0 /* SceneQuery */;
productType = "com.apple.product-type.library.static";
};
FFFAb879a6d07fbab879a6d0 /* SimulationController */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF6b879a6d07fbab879a6d0 /* Build configuration list for PBXNativeTarget "SimulationController" */;
buildPhases = (
FFF2b879a6d07fbab879a6d0,
FFF8b879a6d07fbab879a6d0,
FFFCb879a6d07fbab879a6d0,
);
buildRules = (
);
dependencies = (
);
name = "SimulationController";
productName = "SimulationController";
productReference = FFFDb879a6d07fbab879a6d0 /* SimulationController */;
productType = "com.apple.product-type.library.static";
};
FFFAbb0fb7e07fbabb0fb7e0 /* PhysXCooking */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF6bb0fb7e07fbabb0fb7e0 /* Build configuration list for PBXNativeTarget "PhysXCooking" */;
buildPhases = (
FFF2bb0fb7e07fbabb0fb7e0,
FFF8bb0fb7e07fbabb0fb7e0,
FFFCbb0fb7e07fbabb0fb7e0,
);
buildRules = (
);
dependencies = (
FFF4bb1726907fbabb172690, /* PhysXCommon */
FFF4bb1665907fbabb166590, /* PhysXExtensions */
FFF4bb1330807fbabb133080, /* PxFoundation */
);
name = "PhysXCooking";
productName = "PhysXCooking";
productReference = FFFDbb0fb7e07fbabb0fb7e0 /* PhysXCooking */;
productType = "com.apple.product-type.library.static";
};
FFFAb9b6f2d07fbab9b6f2d0 /* PhysXCommon */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF6b9b6f2d07fbab9b6f2d0 /* Build configuration list for PBXNativeTarget "PhysXCommon" */;
buildPhases = (
FFF2b9b6f2d07fbab9b6f2d0,
FFF8b9b6f2d07fbab9b6f2d0,
FFFCb9b6f2d07fbab9b6f2d0,
);
buildRules = (
);
dependencies = (
FFF4b9dcf4e07fbab9dcf4e0, /* PxFoundation */
);
name = "PhysXCommon";
productName = "PhysXCommon";
productReference = FFFDb9b6f2d07fbab9b6f2d0 /* PhysXCommon */;
productType = "com.apple.product-type.library.static";
};
FFFAb9b5ed307fbab9b5ed30 /* PxFoundation */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF6b9b5ed307fbab9b5ed30 /* Build configuration list for PBXNativeTarget "PxFoundation" */;
buildPhases = (
FFF2b9b5ed307fbab9b5ed30,
FFF8b9b5ed307fbab9b5ed30,
FFFCb9b5ed307fbab9b5ed30,
);
buildRules = (
);
dependencies = (
);
name = "PxFoundation";
productName = "PxFoundation";
productReference = FFFDb9b5ed307fbab9b5ed30 /* PxFoundation */;
productType = "com.apple.product-type.library.static";
};
FFFAb98414907fbab9841490 /* PxPvdSDK */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF6b98414907fbab9841490 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */;
buildPhases = (
FFF2b98414907fbab9841490,
FFF8b98414907fbab9841490,
FFFCb98414907fbab9841490,
);
buildRules = (
);
dependencies = (
FFF4b980eee07fbab980eee0, /* PxFoundation */
);
name = "PxPvdSDK";
productName = "PxPvdSDK";
productReference = FFFDb98414907fbab9841490 /* PxPvdSDK */;
productType = "com.apple.product-type.library.static";
};
FFFAb98574907fbab9857490 /* LowLevel */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF6b98574907fbab9857490 /* Build configuration list for PBXNativeTarget "LowLevel" */;
buildPhases = (
FFF2b98574907fbab9857490,
FFF8b98574907fbab9857490,
FFFCb98574907fbab9857490,
);
buildRules = (
);
dependencies = (
);
name = "LowLevel";
productName = "LowLevel";
productReference = FFFDb98574907fbab9857490 /* LowLevel */;
productType = "com.apple.product-type.library.static";
};
FFFAbb0160707fbabb016070 /* LowLevelAABB */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF6bb0160707fbabb016070 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */;
buildPhases = (
FFF2bb0160707fbabb016070,
FFF8bb0160707fbabb016070,
FFFCbb0160707fbabb016070,
);
buildRules = (
);
dependencies = (
);
name = "LowLevelAABB";
productName = "LowLevelAABB";
productReference = FFFDbb0160707fbabb016070 /* LowLevelAABB */;
productType = "com.apple.product-type.library.static";
};
FFFAb872ced07fbab872ced0 /* LowLevelDynamics */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF6b872ced07fbab872ced0 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */;
buildPhases = (
FFF2b872ced07fbab872ced0,
FFF8b872ced07fbab872ced0,
FFFCb872ced07fbab872ced0,
);
buildRules = (
);
dependencies = (
);
name = "LowLevelDynamics";
productName = "LowLevelDynamics";
productReference = FFFDb872ced07fbab872ced0 /* LowLevelDynamics */;
productType = "com.apple.product-type.library.static";
};
FFFAb87530507fbab8753050 /* LowLevelCloth */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF6b87530507fbab8753050 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */;
buildPhases = (
FFF2b87530507fbab8753050,
FFF8b87530507fbab8753050,
FFFCb87530507fbab8753050,
);
buildRules = (
);
dependencies = (
);
name = "LowLevelCloth";
productName = "LowLevelCloth";
productReference = FFFDb87530507fbab8753050 /* LowLevelCloth */;
productType = "com.apple.product-type.library.static";
};
FFFAbb01a9407fbabb01a940 /* LowLevelParticles */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF6bb01a9407fbabb01a940 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */;
buildPhases = (
FFF2bb01a9407fbabb01a940,
FFF8bb01a9407fbabb01a940,
FFFCbb01a9407fbabb01a940,
);
buildRules = (
);
dependencies = (
);
name = "LowLevelParticles";
productName = "LowLevelParticles";
productReference = FFFDbb01a9407fbabb01a940 /* LowLevelParticles */;
productType = "com.apple.product-type.library.static";
};
FFFAbb3e5dc07fbabb3e5dc0 /* PxTask */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF6bb3e5dc07fbabb3e5dc0 /* Build configuration list for PBXNativeTarget "PxTask" */;
buildPhases = (
FFF2bb3e5dc07fbabb3e5dc0,
FFF8bb3e5dc07fbabb3e5dc0,
FFFCbb3e5dc07fbabb3e5dc0,
);
buildRules = (
);
dependencies = (
);
name = "PxTask";
productName = "PxTask";
productReference = FFFDbb3e5dc07fbabb3e5dc0 /* PxTask */;
productType = "com.apple.product-type.library.static";
};
FFFAb876cb807fbab876cb80 /* PsFastXml */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF6b876cb807fbab876cb80 /* Build configuration list for PBXNativeTarget "PsFastXml" */;
buildPhases = (
FFF2b876cb807fbab876cb80,
FFF8b876cb807fbab876cb80,
FFFCb876cb807fbab876cb80,
);
buildRules = (
);
dependencies = (
);
name = "PsFastXml";
productName = "PsFastXml";
productReference = FFFDb876cb807fbab876cb80 /* PsFastXml */;
productType = "com.apple.product-type.library.static";
};
/* End PBXNativeTarget section */
/* Begin XCConfigurationList section */
FFF6b87703d07fbab87703d0 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7ba83b4007fbaba83b400,
FFF7ba83baf07fbaba83baf0,
FFF7ba83c1e07fbaba83c1e0,
FFF7ba83c8d07fbaba83c8d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "release";
};
FFF6b8767c907fbab8767c90 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7ba83d0007fbaba83d000,
FFF7ba83d6f07fbaba83d6f0,
FFF7ba83dde07fbaba83dde0,
FFF7ba83e4d07fbaba83e4d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF6b87675207fbab8767520 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7ba83ec007fbaba83ec00,
FFF7ba83f2f07fbaba83f2f0,
FFF7ba83f9e07fbaba83f9e0,
FFF7ba8400d07fbaba8400d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF6b8784f507fbab8784f50 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7ba8408007fbaba840800,
FFF7ba840ef07fbaba840ef0,
FFF7ba8415e07fbaba8415e0,
FFF7ba841cd07fbaba841cd0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF6b87961a07fbab87961a0 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7ba8424007fbaba842400,
FFF7ba842af07fbaba842af0,
FFF7ba8431e07fbaba8431e0,
FFF7ba8438d07fbaba8438d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF6b879a6d07fbab879a6d0 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7ba8440007fbaba844000,
FFF7ba8446f07fbaba8446f0,
FFF7ba844de07fbaba844de0,
FFF7ba8454d07fbaba8454d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF6bb0fb7e07fbabb0fb7e0 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7ba845c007fbaba845c00,
FFF7ba8462f07fbaba8462f0,
FFF7ba8469e07fbaba8469e0,
FFF7ba8470d07fbaba8470d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "release";
};
FFF6b9b6f2d07fbab9b6f2d0 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7ba005a007fbaba005a00,
FFF7ba0060f07fbaba0060f0,
FFF7ba0067e07fbaba0067e0,
FFF7ba006ed07fbaba006ed0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "release";
};
FFF6b9b5ed307fbab9b5ed30 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7b897d2007fbab897d200,
FFF7b897d8f07fbab897d8f0,
FFF7b897dfe07fbab897dfe0,
FFF7b897e6d07fbab897e6d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF6b98414907fbab9841490 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7ba020a007fbaba020a00,
FFF7ba0210f07fbaba0210f0,
FFF7ba0217e07fbaba0217e0,
FFF7ba021ed07fbaba021ed0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF6b98574907fbab9857490 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7ba02d8007fbaba02d800,
FFF7ba02def07fbaba02def0,
FFF7ba02e5e07fbaba02e5e0,
FFF7ba02ecd07fbaba02ecd0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF6bb0160707fbabb016070 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7ba8284007fbaba828400,
FFF7ba828af07fbaba828af0,
FFF7ba8291e07fbaba8291e0,
FFF7ba8298d07fbaba8298d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF6b872ced07fbab872ced0 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7b90136007fbab9013600,
FFF7b9013cf07fbab9013cf0,
FFF7b90143e07fbab90143e0,
FFF7b9014ad07fbab9014ad0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF6b87530507fbab8753050 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7b901d2007fbab901d200,
FFF7b901d8f07fbab901d8f0,
FFF7b901dfe07fbab901dfe0,
FFF7b901e6d07fbab901e6d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF6bb01a9407fbabb01a940 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7ba8324007fbaba832400,
FFF7ba832af07fbaba832af0,
FFF7ba8331e07fbaba8331e0,
FFF7ba8338d07fbaba8338d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF6bb3e5dc07fbabb3e5dc0 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7b89c40007fbab89c4000,
FFF7b89c46f07fbab89c46f0,
FFF7b89c4de07fbab89c4de0,
FFF7b89c54d07fbab89c54d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF6b876cb807fbab876cb80 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7b9022c007fbab9022c00,
FFF7b90232f07fbab90232f0,
FFF7b90239e07fbab90239e0,
FFF7b90240d07fbab90240d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF6b847cbf07fbab847cbf0 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF3ba83b4007fbaba83b400 /* release */,
FFF3ba83baf07fbaba83baf0 /* debug */,
FFF3ba83c1e07fbaba83c1e0 /* checked */,
FFF3ba83c8d07fbaba83c8d0 /* profile */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "release";
};
/* End XCConfigurationList section */
/* Begin XCBuildConfiguration section */
FFF7ba83b4007fbaba83b400 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-lLowLevel", "-lLowLevelAABB", "-lLowLevelCloth", "-lLowLevelDynamics", "-lLowLevelParticles", "-lPhysX3Common", "-lPxFoundation", "-lPxPvdSDK", "-lPxTask", "-lSceneQuery", "-lSimulationController",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/pvd", "../../../Include/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelParticles/include", "../../PhysX/src", "../../PhysX/src/buffering", "../../PhysX/src/particles", "../../PhysX/src/cloth", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../SceneQuery/include", "../../PhysXMetaData/core/include",
);
LIBRARY_SEARCH_PATHS = (
"../../../Lib/ios", "../../../Lib/ios", "../../../Lib/ios", "../../../Lib/ios", "../../../Lib/ios", "../../../Lib/ios", "../../../../PxShared/lib/ios", "../../../../PxShared/lib/ios", "../../../../PxShared/lib/ios", "../../../Lib/ios", "../../../Lib/ios",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3";
};
name = "release";
};
FFF7ba83baf07fbaba83baf0 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-lLowLevelDEBUG", "-lLowLevelAABBDEBUG", "-lLowLevelClothDEBUG", "-lLowLevelDynamicsDEBUG", "-lLowLevelParticlesDEBUG", "-lPhysX3CommonDEBUG", "-lPxFoundationDEBUG", "-lPxPvdSDKDEBUG", "-lPxTaskDEBUG", "-lSceneQueryDEBUG", "-lSimulationControllerDEBUG",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/pvd", "../../../Include/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelParticles/include", "../../PhysX/src", "../../PhysX/src/buffering", "../../PhysX/src/particles", "../../PhysX/src/cloth", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../SceneQuery/include", "../../PhysXMetaData/core/include",
);
LIBRARY_SEARCH_PATHS = (
"../../../Lib/ios", "../../../Lib/ios", "../../../Lib/ios", "../../../Lib/ios", "../../../Lib/ios", "../../../Lib/ios", "../../../../PxShared/lib/ios", "../../../../PxShared/lib/ios", "../../../../PxShared/lib/ios", "../../../Lib/ios", "../../../Lib/ios",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3DEBUG";
};
name = "debug";
};
FFF7ba83c1e07fbaba83c1e0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-lLowLevelCHECKED", "-lLowLevelAABBCHECKED", "-lLowLevelClothCHECKED", "-lLowLevelDynamicsCHECKED", "-lLowLevelParticlesCHECKED", "-lPhysX3CommonCHECKED", "-lPxFoundationCHECKED", "-lPxPvdSDKCHECKED", "-lPxTaskCHECKED", "-lSceneQueryCHECKED", "-lSimulationControllerCHECKED",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/pvd", "../../../Include/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelParticles/include", "../../PhysX/src", "../../PhysX/src/buffering", "../../PhysX/src/particles", "../../PhysX/src/cloth", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../SceneQuery/include", "../../PhysXMetaData/core/include",
);
LIBRARY_SEARCH_PATHS = (
"../../../Lib/ios", "../../../Lib/ios", "../../../Lib/ios", "../../../Lib/ios", "../../../Lib/ios", "../../../Lib/ios", "../../../../PxShared/lib/ios", "../../../../PxShared/lib/ios", "../../../../PxShared/lib/ios", "../../../Lib/ios", "../../../Lib/ios",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CHECKED";
};
name = "checked";
};
FFF7ba83c8d07fbaba83c8d0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-lLowLevelPROFILE", "-lLowLevelAABBPROFILE", "-lLowLevelClothPROFILE", "-lLowLevelDynamicsPROFILE", "-lLowLevelParticlesPROFILE", "-lPhysX3CommonPROFILE", "-lPxFoundationPROFILE", "-lPxPvdSDKPROFILE", "-lPxTaskPROFILE", "-lSceneQueryPROFILE", "-lSimulationControllerPROFILE",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/pvd", "../../../Include/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelParticles/include", "../../PhysX/src", "../../PhysX/src/buffering", "../../PhysX/src/particles", "../../PhysX/src/cloth", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../SceneQuery/include", "../../PhysXMetaData/core/include",
);
LIBRARY_SEARCH_PATHS = (
"../../../Lib/ios", "../../../Lib/ios", "../../../Lib/ios", "../../../Lib/ios", "../../../Lib/ios", "../../../Lib/ios", "../../../../PxShared/lib/ios", "../../../../PxShared/lib/ios", "../../../../PxShared/lib/ios", "../../../Lib/ios", "../../../Lib/ios",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3PROFILE";
};
name = "profile";
};
FFF7ba83d0007fbaba83d000 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-lPhysX3CommonDEBUG", "-lPhysX3ExtensionsDEBUG", "-lPxFoundationDEBUG",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/characterkinematic", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include", "../../GeomUtils/headers", "../../Common/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm",
);
LIBRARY_SEARCH_PATHS = (
"../../../Lib/ios", "../../../Lib/ios", "../../../../PxShared/lib/ios",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CharacterKinematicDEBUG";
};
name = "debug";
};
FFF7ba83d6f07fbaba83d6f0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-lPhysX3CommonCHECKED", "-lPhysX3ExtensionsCHECKED", "-lPxFoundationCHECKED",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/characterkinematic", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include", "../../GeomUtils/headers", "../../Common/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm",
);
LIBRARY_SEARCH_PATHS = (
"../../../Lib/ios", "../../../Lib/ios", "../../../../PxShared/lib/ios",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CharacterKinematicCHECKED";
};
name = "checked";
};
FFF7ba83dde07fbaba83dde0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-lPhysX3CommonPROFILE", "-lPhysX3ExtensionsPROFILE", "-lPxFoundationPROFILE",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/characterkinematic", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include", "../../GeomUtils/headers", "../../Common/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm",
);
LIBRARY_SEARCH_PATHS = (
"../../../Lib/ios", "../../../Lib/ios", "../../../../PxShared/lib/ios",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CharacterKinematicPROFILE";
};
name = "profile";
};
FFF7ba83e4d07fbaba83e4d0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-lPhysX3Common", "-lPhysX3Extensions", "-lPxFoundation",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/characterkinematic", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include", "../../GeomUtils/headers", "../../Common/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm",
);
LIBRARY_SEARCH_PATHS = (
"../../../Lib/ios", "../../../Lib/ios", "../../../../PxShared/lib/ios",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CharacterKinematic";
};
name = "release";
};
FFF7ba83ec007fbaba83ec00 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/vehicle", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include/cloth", "../../../Include", "../../../Include/pvd", "../../../Include/physxprofilesdk", "../../Common/src", "../../PhysXVehicle/src", "../../PhysXMetaData/extensions/include", "../../PhysXExtensions/src/serialization/Xml", "../../PhysXMetaData/core/include", "../../PhysXVehicle/src/PhysXMetaData/include", "../../PvdSDK/src",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3VehicleDEBUG";
};
name = "debug";
};
FFF7ba83f2f07fbaba83f2f0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/vehicle", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include/cloth", "../../../Include", "../../../Include/pvd", "../../../Include/physxprofilesdk", "../../Common/src", "../../PhysXVehicle/src", "../../PhysXMetaData/extensions/include", "../../PhysXExtensions/src/serialization/Xml", "../../PhysXMetaData/core/include", "../../PhysXVehicle/src/PhysXMetaData/include", "../../PvdSDK/src",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3VehicleCHECKED";
};
name = "checked";
};
FFF7ba83f9e07fbaba83f9e0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/vehicle", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include/cloth", "../../../Include", "../../../Include/pvd", "../../../Include/physxprofilesdk", "../../Common/src", "../../PhysXVehicle/src", "../../PhysXMetaData/extensions/include", "../../PhysXExtensions/src/serialization/Xml", "../../PhysXMetaData/core/include", "../../PhysXVehicle/src/PhysXMetaData/include", "../../PvdSDK/src",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3VehiclePROFILE";
};
name = "profile";
};
FFF7ba8400d07fbaba8400d0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/vehicle", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include/cloth", "../../../Include", "../../../Include/pvd", "../../../Include/physxprofilesdk", "../../Common/src", "../../PhysXVehicle/src", "../../PhysXMetaData/extensions/include", "../../PhysXExtensions/src/serialization/Xml", "../../PhysXMetaData/core/include", "../../PhysXVehicle/src/PhysXMetaData/include", "../../PvdSDK/src",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3Vehicle";
};
name = "release";
};
FFF7ba8408007fbaba840800 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_BUILD_NUMBER=0", "PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-lPsFastXmlDEBUG",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/pvd", "../../../Include/cooking", "../../../Include/extensions", "../../../Include/vehicle", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../PhysXMetaData/core/include", "../../PhysXMetaData/extensions/include", "../../PhysXExtensions/src", "../../PhysXExtensions/src/serialization/Xml", "../../PhysXExtensions/src/serialization/Binary", "../../PhysXExtensions/src/serialization/File", "../../PvdSDK/src", "../../PhysX/src",
);
LIBRARY_SEARCH_PATHS = (
"../../../../PxShared/lib/ios",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3ExtensionsDEBUG";
};
name = "debug";
};
FFF7ba840ef07fbaba840ef0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_BUILD_NUMBER=0", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-lPsFastXmlCHECKED",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/pvd", "../../../Include/cooking", "../../../Include/extensions", "../../../Include/vehicle", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../PhysXMetaData/core/include", "../../PhysXMetaData/extensions/include", "../../PhysXExtensions/src", "../../PhysXExtensions/src/serialization/Xml", "../../PhysXExtensions/src/serialization/Binary", "../../PhysXExtensions/src/serialization/File", "../../PvdSDK/src", "../../PhysX/src",
);
LIBRARY_SEARCH_PATHS = (
"../../../../PxShared/lib/ios",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3ExtensionsCHECKED";
};
name = "checked";
};
FFF7ba8415e07fbaba8415e0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_BUILD_NUMBER=0", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-lPsFastXmlPROFILE",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/pvd", "../../../Include/cooking", "../../../Include/extensions", "../../../Include/vehicle", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../PhysXMetaData/core/include", "../../PhysXMetaData/extensions/include", "../../PhysXExtensions/src", "../../PhysXExtensions/src/serialization/Xml", "../../PhysXExtensions/src/serialization/Binary", "../../PhysXExtensions/src/serialization/File", "../../PvdSDK/src", "../../PhysX/src",
);
LIBRARY_SEARCH_PATHS = (
"../../../../PxShared/lib/ios",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3ExtensionsPROFILE";
};
name = "profile";
};
FFF7ba841cd07fbaba841cd0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_BUILD_NUMBER=0", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-lPsFastXml",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/pvd", "../../../Include/cooking", "../../../Include/extensions", "../../../Include/vehicle", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../PhysXMetaData/core/include", "../../PhysXMetaData/extensions/include", "../../PhysXExtensions/src", "../../PhysXExtensions/src/serialization/Xml", "../../PhysXExtensions/src/serialization/Binary", "../../PhysXExtensions/src/serialization/File", "../../PvdSDK/src", "../../PhysX/src",
);
LIBRARY_SEARCH_PATHS = (
"../../../../PxShared/lib/ios",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3Extensions";
};
name = "release";
};
FFF7ba8424007fbaba842400 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/pvd", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SceneQuery/include", "../../SimulationController/include", "../../LowLevel/API/include", "../../PhysX/src", "../../PhysX/src/buffering",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "SceneQueryDEBUG";
};
name = "debug";
};
FFF7ba842af07fbaba842af0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/pvd", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SceneQuery/include", "../../SimulationController/include", "../../LowLevel/API/include", "../../PhysX/src", "../../PhysX/src/buffering",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "SceneQueryCHECKED";
};
name = "checked";
};
FFF7ba8431e07fbaba8431e0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/pvd", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SceneQuery/include", "../../SimulationController/include", "../../LowLevel/API/include", "../../PhysX/src", "../../PhysX/src/buffering",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "SceneQueryPROFILE";
};
name = "profile";
};
FFF7ba8438d07fbaba8438d0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/pvd", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SceneQuery/include", "../../SimulationController/include", "../../LowLevel/API/include", "../../PhysX/src", "../../PhysX/src/buffering",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "SceneQuery";
};
name = "release";
};
FFF7ba8440007fbaba844000 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/pvd", "../../../Include/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../SimulationController/src/cloth", "../../LowLevel/unix/include", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevelCloth/include", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelParticles/include",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "SimulationControllerDEBUG";
};
name = "debug";
};
FFF7ba8446f07fbaba8446f0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/pvd", "../../../Include/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../SimulationController/src/cloth", "../../LowLevel/unix/include", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevelCloth/include", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelParticles/include",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "SimulationControllerCHECKED";
};
name = "checked";
};
FFF7ba844de07fbaba844de0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/pvd", "../../../Include/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../SimulationController/src/cloth", "../../LowLevel/unix/include", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevelCloth/include", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelParticles/include",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "SimulationControllerPROFILE";
};
name = "profile";
};
FFF7ba8454d07fbaba8454d0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/pvd", "../../../Include/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../SimulationController/src/cloth", "../../LowLevel/unix/include", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevelCloth/include", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelParticles/include",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "SimulationController";
};
name = "release";
};
FFF7ba845c007fbaba845c00 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "PX_COOKING", "NDEBUG", "PX_SUPPORT_PVD=0",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-lPhysX3Common", "-lPhysX3Extensions", "-lPxFoundation",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/cloth", "../../../Include/cooking", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../PhysXExtensions/src", "../../PhysXGpu/include",
);
LIBRARY_SEARCH_PATHS = (
"../../../Lib/ios", "../../../Lib/ios", "../../../../PxShared/lib/ios",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3Cooking";
};
name = "release";
};
FFF7ba8462f07fbaba8462f0 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "PX_COOKING", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-lPhysX3CommonDEBUG", "-lPhysX3ExtensionsDEBUG", "-lPxFoundationDEBUG",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/cloth", "../../../Include/cooking", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../PhysXExtensions/src", "../../PhysXGpu/include",
);
LIBRARY_SEARCH_PATHS = (
"../../../Lib/ios", "../../../Lib/ios", "../../../../PxShared/lib/ios",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CookingDEBUG";
};
name = "debug";
};
FFF7ba8469e07fbaba8469e0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "PX_COOKING", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-lPhysX3CommonCHECKED", "-lPhysX3ExtensionsCHECKED", "-lPxFoundationCHECKED",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/cloth", "../../../Include/cooking", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../PhysXExtensions/src", "../../PhysXGpu/include",
);
LIBRARY_SEARCH_PATHS = (
"../../../Lib/ios", "../../../Lib/ios", "../../../../PxShared/lib/ios",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CookingCHECKED";
};
name = "checked";
};
FFF7ba8470d07fbaba8470d0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "PX_COOKING", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-lPhysX3CommonPROFILE", "-lPhysX3ExtensionsPROFILE", "-lPxFoundationPROFILE",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/cloth", "../../../Include/cooking", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../PhysXExtensions/src", "../../PhysXGpu/include",
);
LIBRARY_SEARCH_PATHS = (
"../../../Lib/ios", "../../../Lib/ios", "../../../../PxShared/lib/ios",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CookingPROFILE";
};
name = "profile";
};
FFF7ba005a007fbaba005a00 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-lPxFoundation",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/include", "../../PhysXProfile/src", "../../PhysXGpu/include", "../../../Include/geometry", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../../Include/GeomUtils",
);
LIBRARY_SEARCH_PATHS = (
"../../../../PxShared/lib/ios",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3Common";
};
name = "release";
};
FFF7ba0060f07fbaba0060f0 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-lPxFoundationDEBUG",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/include", "../../PhysXProfile/src", "../../PhysXGpu/include", "../../../Include/geometry", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../../Include/GeomUtils",
);
LIBRARY_SEARCH_PATHS = (
"../../../../PxShared/lib/ios",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CommonDEBUG";
};
name = "debug";
};
FFF7ba0067e07fbaba0067e0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-lPxFoundationCHECKED",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/include", "../../PhysXProfile/src", "../../PhysXGpu/include", "../../../Include/geometry", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../../Include/GeomUtils",
);
LIBRARY_SEARCH_PATHS = (
"../../../../PxShared/lib/ios",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CommonCHECKED";
};
name = "checked";
};
FFF7ba006ed07fbaba006ed0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-lPxFoundationPROFILE",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/include", "../../PhysXProfile/src", "../../PhysXGpu/include", "../../../Include/geometry", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../../Include/GeomUtils",
);
LIBRARY_SEARCH_PATHS = (
"../../../../PxShared/lib/ios",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CommonPROFILE";
};
name = "profile";
};
FFF7b897d2007fbab897d200 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PxShared_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-old-style-cast", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-noreturn", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-covered-switch-default", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-unused-member-function", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0",
);
HEADER_SEARCH_PATHS = (
"../../../../PxShared/include", "../../../../PxShared/src/foundation/include",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PxFoundationDEBUG";
};
name = "debug";
};
FFF7b897d8f07fbab897d8f0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PxShared_STATIC_LIB", "NDEBUG",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-old-style-cast", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-noreturn", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-covered-switch-default", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-unused-member-function", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../../../PxShared/include", "../../../../PxShared/src/foundation/include",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PxFoundation";
};
name = "release";
};
FFF7b897dfe07fbab897dfe0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PxShared_STATIC_LIB", "NDEBUG", "PX_CHECKED=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-old-style-cast", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-noreturn", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-covered-switch-default", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-unused-member-function", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../../../PxShared/include", "../../../../PxShared/src/foundation/include",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PxFoundationCHECKED";
};
name = "checked";
};
FFF7b897e6d07fbab897e6d0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PxShared_STATIC_LIB", "NDEBUG", "PX_PROFILE=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-old-style-cast", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-noreturn", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-covered-switch-default", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-unused-member-function", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../../../PxShared/include", "../../../../PxShared/src/foundation/include",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PxFoundationPROFILE";
};
name = "profile";
};
FFF7ba020a007fbaba020a00 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PxShared_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-lPxFoundationDEBUG",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-old-style-cast", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-noreturn", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-covered-switch-default", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-unused-member-function", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0",
);
HEADER_SEARCH_PATHS = (
"../../../../PxShared/include", "../../../../PxShared/src/pvd/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/filebuf/include", "../../../../Externals/nvToolsExt/1/include",
);
LIBRARY_SEARCH_PATHS = (
"../../../../PxShared/lib/ios",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PxPvdSDKDEBUG";
};
name = "debug";
};
FFF7ba0210f07fbaba0210f0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PxShared_STATIC_LIB", "NDEBUG",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-lPxFoundation",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-old-style-cast", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-noreturn", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-covered-switch-default", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-unused-member-function", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../../../PxShared/include", "../../../../PxShared/src/pvd/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/filebuf/include", "../../../../Externals/nvToolsExt/1/include",
);
LIBRARY_SEARCH_PATHS = (
"../../../../PxShared/lib/ios",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PxPvdSDK";
};
name = "release";
};
FFF7ba0217e07fbaba0217e0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PxShared_STATIC_LIB", "NDEBUG", "PX_CHECKED=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-lPxFoundationCHECKED",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-old-style-cast", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-noreturn", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-covered-switch-default", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-unused-member-function", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../../../PxShared/include", "../../../../PxShared/src/pvd/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/filebuf/include", "../../../../Externals/nvToolsExt/1/include",
);
LIBRARY_SEARCH_PATHS = (
"../../../../PxShared/lib/ios",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PxPvdSDKCHECKED";
};
name = "checked";
};
FFF7ba021ed07fbaba021ed0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PxShared_STATIC_LIB", "NDEBUG", "PX_PROFILE=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-lPxFoundationPROFILE",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-old-style-cast", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-noreturn", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-covered-switch-default", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-unused-member-function", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../../../PxShared/include", "../../../../PxShared/src/pvd/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/filebuf/include", "../../../../Externals/nvToolsExt/1/include",
);
LIBRARY_SEARCH_PATHS = (
"../../../../PxShared/lib/ios",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PxPvdSDKPROFILE";
};
name = "profile";
};
FFF7ba02d8007fbaba02d800 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/headers", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../GeomUtils/src", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/include/unix",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "LowLevelDEBUG";
};
name = "debug";
};
FFF7ba02def07fbaba02def0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/headers", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../GeomUtils/src", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/include/unix",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "LowLevelCHECKED";
};
name = "checked";
};
FFF7ba02e5e07fbaba02e5e0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/headers", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../GeomUtils/src", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/include/unix",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "LowLevelPROFILE";
};
name = "profile";
};
FFF7ba02ecd07fbaba02ecd0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/headers", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../GeomUtils/src", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/include/unix",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "LowLevel";
};
name = "release";
};
FFF7ba8284007fbaba828400 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../Common/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelAABB/src", "../../GpuBroadPhase/include", "../../GpuBroadPhase/src", "../../LowLevelAABB/unix/include",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "LowLevelAABBDEBUG";
};
name = "debug";
};
FFF7ba828af07fbaba828af0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../Common/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelAABB/src", "../../GpuBroadPhase/include", "../../GpuBroadPhase/src", "../../LowLevelAABB/unix/include",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "LowLevelAABBCHECKED";
};
name = "checked";
};
FFF7ba8291e07fbaba8291e0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../Common/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelAABB/src", "../../GpuBroadPhase/include", "../../GpuBroadPhase/src", "../../LowLevelAABB/unix/include",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "LowLevelAABBPROFILE";
};
name = "profile";
};
FFF7ba8298d07fbaba8298d0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../Common/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelAABB/src", "../../GpuBroadPhase/include", "../../GpuBroadPhase/src", "../../LowLevelAABB/unix/include",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "LowLevelAABB";
};
name = "release";
};
FFF7b90136007fbab9013600 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/src/contact", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelDynamics/include/unix",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "LowLevelDynamicsDEBUG";
};
name = "debug";
};
FFF7b9013cf07fbab9013cf0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/src/contact", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelDynamics/include/unix",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "LowLevelDynamicsCHECKED";
};
name = "checked";
};
FFF7b90143e07fbab90143e0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/src/contact", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelDynamics/include/unix",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "LowLevelDynamicsPROFILE";
};
name = "profile";
};
FFF7b9014ad07fbab9014ad0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/src/contact", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelDynamics/include/unix",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "LowLevelDynamics";
};
name = "release";
};
FFF7b901d2007fbab901d200 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../Common/src", "../../LowLevelCloth/include", "../../LowLevelCloth/src",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "LowLevelClothDEBUG";
};
name = "debug";
};
FFF7b901d8f07fbab901d8f0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../Common/src", "../../LowLevelCloth/include", "../../LowLevelCloth/src",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "LowLevelClothCHECKED";
};
name = "checked";
};
FFF7b901dfe07fbab901dfe0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../Common/src", "../../LowLevelCloth/include", "../../LowLevelCloth/src",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "LowLevelClothPROFILE";
};
name = "profile";
};
FFF7b901e6d07fbab901e6d0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../Common/src", "../../LowLevelCloth/include", "../../LowLevelCloth/src",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "LowLevelCloth";
};
name = "release";
};
FFF7ba8324007fbaba832400 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src", "../../LowLevelParticles/include", "../../LowLevelParticles/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../GeomUtils/src", "../../GeomUtils/src/convex", "../../GeomUtils/src/hf", "../../GeomUtils/src/mesh", "../../GeomUtils/headers",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "LowLevelParticlesDEBUG";
};
name = "debug";
};
FFF7ba832af07fbaba832af0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src", "../../LowLevelParticles/include", "../../LowLevelParticles/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../GeomUtils/src", "../../GeomUtils/src/convex", "../../GeomUtils/src/hf", "../../GeomUtils/src/mesh", "../../GeomUtils/headers",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "LowLevelParticlesCHECKED";
};
name = "checked";
};
FFF7ba8331e07fbaba8331e0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src", "../../LowLevelParticles/include", "../../LowLevelParticles/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../GeomUtils/src", "../../GeomUtils/src/convex", "../../GeomUtils/src/hf", "../../GeomUtils/src/mesh", "../../GeomUtils/headers",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "LowLevelParticlesPROFILE";
};
name = "profile";
};
FFF7ba8338d07fbaba8338d0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../Lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-zero-as-null-pointer-constant", "-Wno-unknown-warning-option", "-Wno-deprecated", "-Wno-c++98-compat-pedantic", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src", "../../LowLevelParticles/include", "../../LowLevelParticles/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../GeomUtils/src", "../../GeomUtils/src/convex", "../../GeomUtils/src/hf", "../../GeomUtils/src/mesh", "../../GeomUtils/headers",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "LowLevelParticles";
};
name = "release";
};
FFF7b89c40007fbab89c4000 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PxShared_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-g3", "-gdwarf-2", "-O0",
);
HEADER_SEARCH_PATHS = (
"../../../../PxShared/include", "../../../../PxShared/src/task/include", "../../../../PxShared/src/foundation/include",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PxTaskDEBUG";
};
name = "debug";
};
FFF7b89c46f07fbab89c46f0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PxShared_STATIC_LIB", "NDEBUG",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../../../PxShared/include", "../../../../PxShared/src/task/include", "../../../../PxShared/src/foundation/include",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PxTask";
};
name = "release";
};
FFF7b89c4de07fbab89c4de0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PxShared_STATIC_LIB", "NDEBUG", "PX_CHECKED=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../../../PxShared/include", "../../../../PxShared/src/task/include", "../../../../PxShared/src/foundation/include",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PxTaskCHECKED";
};
name = "checked";
};
FFF7b89c54d07fbab89c54d0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PxShared_STATIC_LIB", "NDEBUG", "PX_PROFILE=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../../../PxShared/include", "../../../../PxShared/src/task/include", "../../../../PxShared/src/foundation/include",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PxTaskPROFILE";
};
name = "profile";
};
FFF7b9022c007fbab9022c00 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_FOUNDATION_DLL=0", "PxShared_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-g3", "-gdwarf-2", "-O0",
);
HEADER_SEARCH_PATHS = (
"../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PsFastXmlDEBUG";
};
name = "debug";
};
FFF7b90232f07fbab90232f0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_FOUNDATION_DLL=0", "PxShared_STATIC_LIB", "NDEBUG",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PsFastXml";
};
name = "release";
};
FFF7b90239e07fbab90239e0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_FOUNDATION_DLL=0", "PxShared_STATIC_LIB", "NDEBUG", "PX_CHECKED=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PsFastXmlCHECKED";
};
name = "checked";
};
FFF7b90240d07fbab90240d0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; CLANG_CXX_LIBRARY = "libc++";
SDKROOT = iphoneos;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PX_FOUNDATION_DLL=0", "PxShared_STATIC_LIB", "NDEBUG", "PX_PROFILE=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-O3", "-fno-strict-aliasing",
);
HEADER_SEARCH_PATHS = (
"../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include",
);
LIBRARY_SEARCH_PATHS = (
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PsFastXmlPROFILE";
};
name = "profile";
};
FFF3ba83b4007fbaba83b400 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
};
name = "release";
};
FFF3ba83baf07fbaba83baf0 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
};
name = "debug";
};
FFF3ba83c1e07fbaba83c1e0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
};
name = "checked";
};
FFF3ba83c8d07fbaba83c8d0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
};
name = "profile";
};
/* End XCBuildConfiguration section */
/* Begin PBXProject section */
FFF9b847cbf07fbab847cbf0 /* Project object */ = {
isa = PBXProject;
buildConfigurationList = FFF6b847cbf07fbab847cbf0 /* Build configuration list for PBXProject PhysX */;
compatibilityVersion = "Xcode 3.2";
hasScannedForEncodings = 1;
mainGroup = FFFBb847cc587fbab847cc58 /* PhysX */;
targets = (
FFFAb87703d07fbab87703d0,
FFFAb8767c907fbab8767c90,
FFFAb87675207fbab8767520,
FFFAb8784f507fbab8784f50,
FFFAb87961a07fbab87961a0,
FFFAb879a6d07fbab879a6d0,
FFFAbb0fb7e07fbabb0fb7e0,
FFFAb9b6f2d07fbab9b6f2d0,
FFFAb9b5ed307fbab9b5ed30,
FFFAb98414907fbab9841490,
FFFAb98574907fbab9857490,
FFFAbb0160707fbabb016070,
FFFAb872ced07fbab872ced0,
FFFAb87530507fbab8753050,
FFFAbb01a9407fbabb01a940,
FFFAbb3e5dc07fbabb3e5dc0,
FFFAb876cb807fbab876cb80,
);
};
/* End PBXProject section */
};
rootObject = FFF9b847cbf07fbab847cbf0 /* Project object */;
}
|