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
|
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 42;
objects = {
/* Begin PBXBuildFile section of PhysX */
FFFF23d191407fed23d19140 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD23d38e307fed23d38e30 /* SceneQuery */; };
FFFF23d191a07fed23d191a0 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD23d3d4407fed23d3d440 /* SimulationController */; };
FFFF240144387fed24014438 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240144387fed24014438 /* NpActor.cpp */; };
FFFF240144a07fed240144a0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240144a07fed240144a0 /* NpAggregate.cpp */; };
FFFF240145087fed24014508 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240145087fed24014508 /* NpArticulation.cpp */; };
FFFF240145707fed24014570 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240145707fed24014570 /* NpArticulationJoint.cpp */; };
FFFF240145d87fed240145d8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240145d87fed240145d8 /* NpArticulationLink.cpp */; };
FFFF240146407fed24014640 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240146407fed24014640 /* NpBatchQuery.cpp */; };
FFFF240146a87fed240146a8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240146a87fed240146a8 /* NpConstraint.cpp */; };
FFFF240147107fed24014710 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240147107fed24014710 /* NpFactory.cpp */; };
FFFF240147787fed24014778 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240147787fed24014778 /* NpMaterial.cpp */; };
FFFF240147e07fed240147e0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240147e07fed240147e0 /* NpMetaData.cpp */; };
FFFF240148487fed24014848 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240148487fed24014848 /* NpPhysics.cpp */; };
FFFF240148b07fed240148b0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240148b07fed240148b0 /* NpPvdSceneQueryCollector.cpp */; };
FFFF240149187fed24014918 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240149187fed24014918 /* NpReadCheck.cpp */; };
FFFF240149807fed24014980 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240149807fed24014980 /* NpRigidDynamic.cpp */; };
FFFF240149e87fed240149e8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240149e87fed240149e8 /* NpRigidStatic.cpp */; };
FFFF24014a507fed24014a50 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD24014a507fed24014a50 /* NpScene.cpp */; };
FFFF24014ab87fed24014ab8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD24014ab87fed24014ab8 /* NpSceneQueries.cpp */; };
FFFF24014b207fed24014b20 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD24014b207fed24014b20 /* NpSerializerAdapter.cpp */; };
FFFF24014b887fed24014b88 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD24014b887fed24014b88 /* NpShape.cpp */; };
FFFF24014bf07fed24014bf0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD24014bf07fed24014bf0 /* NpShapeManager.cpp */; };
FFFF24014c587fed24014c58 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD24014c587fed24014c58 /* NpSpatialIndex.cpp */; };
FFFF24014cc07fed24014cc0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD24014cc07fed24014cc0 /* NpVolumeCache.cpp */; };
FFFF24014d287fed24014d28 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD24014d287fed24014d28 /* NpWriteCheck.cpp */; };
FFFF24014d907fed24014d90 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD24014d907fed24014d90 /* PvdMetaDataPvdBinding.cpp */; };
FFFF24014df87fed24014df8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD24014df87fed24014df8 /* PvdPhysicsClient.cpp */; };
FFFF240150007fed24015000 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240150007fed24015000 /* particles/NpParticleFluid.cpp */; };
FFFF240150687fed24015068 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240150687fed24015068 /* particles/NpParticleSystem.cpp */; };
FFFF240158207fed24015820 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240158207fed24015820 /* buffering/ScbActor.cpp */; };
FFFF240158887fed24015888 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240158887fed24015888 /* buffering/ScbAggregate.cpp */; };
FFFF240158f07fed240158f0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240158f07fed240158f0 /* buffering/ScbBase.cpp */; };
FFFF240159587fed24015958 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240159587fed24015958 /* buffering/ScbCloth.cpp */; };
FFFF240159c07fed240159c0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240159c07fed240159c0 /* buffering/ScbMetaData.cpp */; };
FFFF24015a287fed24015a28 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD24015a287fed24015a28 /* buffering/ScbParticleSystem.cpp */; };
FFFF24015a907fed24015a90 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD24015a907fed24015a90 /* buffering/ScbScene.cpp */; };
FFFF24015af87fed24015af8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD24015af87fed24015af8 /* buffering/ScbScenePvdClient.cpp */; };
FFFF24015b607fed24015b60 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD24015b607fed24015b60 /* buffering/ScbShape.cpp */; };
FFFF24015d007fed24015d00 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD24015d007fed24015d00 /* cloth/NpCloth.cpp */; };
FFFF24015d687fed24015d68 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD24015d687fed24015d68 /* cloth/NpClothFabric.cpp */; };
FFFF24015dd07fed24015dd0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD24015dd07fed24015dd0 /* cloth/NpClothParticleData.cpp */; };
FFFF24015e387fed24015e38 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD24015e387fed24015e38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; };
FFFF240103a87fed240103a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD240103a87fed240103a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; };
FFFF240104107fed24010410 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD240104107fed24010410 /* core/src/PxMetaDataObjects.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD23d0c2e07fed23d0c2e0 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD240136007fed24013600 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; };
FFFD240136687fed24013668 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; };
FFFD240136d07fed240136d0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; };
FFFD240137387fed24013738 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; };
FFFD240137a07fed240137a0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD240138087fed24013808 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; };
FFFD240138707fed24013870 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; };
FFFD240138d87fed240138d8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; };
FFFD240139407fed24013940 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; };
FFFD240139a87fed240139a8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; };
FFFD24013a107fed24013a10 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; };
FFFD24013a787fed24013a78 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; };
FFFD24013ae07fed24013ae0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; };
FFFD24013b487fed24013b48 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; };
FFFD24013bb07fed24013bb0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; };
FFFD24013c187fed24013c18 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; };
FFFD24013c807fed24013c80 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; };
FFFD24013ce87fed24013ce8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; };
FFFD24013d507fed24013d50 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; };
FFFD24013db87fed24013db8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; };
FFFD24013e207fed24013e20 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; };
FFFD24013e887fed24013e88 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; };
FFFD24013ef07fed24013ef0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; };
FFFD24013f587fed24013f58 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; };
FFFD24013fc07fed24013fc0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; };
FFFD240140287fed24014028 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; };
FFFD240140907fed24014090 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; };
FFFD240140f87fed240140f8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; };
FFFD240141607fed24014160 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; };
FFFD240141c87fed240141c8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; };
FFFD240142307fed24014230 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; };
FFFD240142987fed24014298 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; };
FFFD240143007fed24014300 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; };
FFFD240143687fed24014368 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; };
FFFD240143d07fed240143d0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; };
FFFD240144387fed24014438 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240144a07fed240144a0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240145087fed24014508 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240145707fed24014570 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240145d87fed240145d8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240146407fed24014640 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240146a87fed240146a8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240147107fed24014710 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240147787fed24014778 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240147e07fed240147e0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240148487fed24014848 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240148b07fed240148b0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240149187fed24014918 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240149807fed24014980 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240149e87fed240149e8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24014a507fed24014a50 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24014ab87fed24014ab8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24014b207fed24014b20 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24014b887fed24014b88 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24014bf07fed24014bf0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24014c587fed24014c58 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24014cc07fed24014cc0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24014d287fed24014d28 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24014d907fed24014d90 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24014df87fed24014df8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24014e607fed24014e60 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; };
FFFD24014ec87fed24014ec8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; };
FFFD24014f307fed24014f30 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; };
FFFD24014f987fed24014f98 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; };
FFFD240150007fed24015000 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240150687fed24015068 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240150d07fed240150d0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; };
FFFD240151387fed24015138 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; };
FFFD240151a07fed240151a0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; };
FFFD240152087fed24015208 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD240152707fed24015270 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; };
FFFD240152d87fed240152d8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; };
FFFD240153407fed24015340 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; };
FFFD240153a87fed240153a8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; };
FFFD240154107fed24015410 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; };
FFFD240154787fed24015478 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; };
FFFD240154e07fed240154e0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; };
FFFD240155487fed24015548 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; };
FFFD240155b07fed240155b0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; };
FFFD240156187fed24015618 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; };
FFFD240156807fed24015680 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFD240156e87fed240156e8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; };
FFFD240157507fed24015750 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; };
FFFD240157b87fed240157b8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; };
FFFD240158207fed24015820 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240158887fed24015888 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240158f07fed240158f0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240159587fed24015958 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240159c07fed240159c0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24015a287fed24015a28 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24015a907fed24015a90 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24015af87fed24015af8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24015b607fed24015b60 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24015bc87fed24015bc8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; };
FFFD24015c307fed24015c30 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; };
FFFD24015c987fed24015c98 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; };
FFFD24015d007fed24015d00 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24015d687fed24015d68 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24015dd07fed24015dd0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24015e387fed24015e38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240110007fed24011000 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; };
FFFD240110687fed24011068 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; };
FFFD240110d07fed240110d0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; };
FFFD240111387fed24011138 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD240111a07fed240111a0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; };
FFFD240112087fed24011208 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; };
FFFD240112707fed24011270 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; };
FFFD240112d87fed240112d8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; };
FFFD240113407fed24011340 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; };
FFFD240113a87fed240113a8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; };
FFFD240114107fed24011410 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; };
FFFD240114787fed24011478 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; };
FFFD240114e07fed240114e0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; };
FFFD240115487fed24011548 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; };
FFFD240115b07fed240115b0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; };
FFFD240116187fed24011618 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; };
FFFD240116807fed24011680 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; };
FFFD240116e87fed240116e8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; };
FFFD240117507fed24011750 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; };
FFFD240117b87fed240117b8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; };
FFFD240118207fed24011820 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; };
FFFD240118887fed24011888 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; };
FFFD240118f07fed240118f0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; };
FFFD240119587fed24011958 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; };
FFFD240119c07fed240119c0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; };
FFFD24011a287fed24011a28 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; };
FFFD24011a907fed24011a90 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; };
FFFD24011af87fed24011af8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; };
FFFD24011b607fed24011b60 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; };
FFFD24011bc87fed24011bc8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; };
FFFD24011c307fed24011c30 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; };
FFFD24011c987fed24011c98 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; };
FFFD24011d007fed24011d00 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; };
FFFD24011d687fed24011d68 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; };
FFFD24011dd07fed24011dd0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; };
FFFD24011e387fed24011e38 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; };
FFFD24011ea07fed24011ea0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; };
FFFD24011f087fed24011f08 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; };
FFFD24011f707fed24011f70 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; };
FFFD24011fd87fed24011fd8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; };
FFFD240120407fed24012040 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; };
FFFD240120a87fed240120a8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; };
FFFD240121107fed24012110 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; };
FFFD240121787fed24012178 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; };
FFFD240121e07fed240121e0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; };
FFFD240122487fed24012248 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; };
FFFD240122b07fed240122b0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; };
FFFD240123187fed24012318 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; };
FFFD240123807fed24012380 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; };
FFFD240123e87fed240123e8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; };
FFFD240124507fed24012450 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; };
FFFD240124b87fed240124b8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; };
FFFD240125207fed24012520 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; };
FFFD240125887fed24012588 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; };
FFFD240100007fed24010000 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; };
FFFD240100687fed24010068 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
FFFD240100d07fed240100d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
FFFD240101387fed24010138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
FFFD240101a07fed240101a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
FFFD240102087fed24010208 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; };
FFFD240102707fed24010270 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; };
FFFD240102d87fed240102d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
FFFD240103407fed24010340 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
FFFD240103a87fed240103a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240104107fed24010410 /* 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 */
FFF223d0c2e07fed23d0c2e0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC23d0c2e07fed23d0c2e0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF823d0c2e07fed23d0c2e0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF240144387fed24014438,
FFFF240144a07fed240144a0,
FFFF240145087fed24014508,
FFFF240145707fed24014570,
FFFF240145d87fed240145d8,
FFFF240146407fed24014640,
FFFF240146a87fed240146a8,
FFFF240147107fed24014710,
FFFF240147787fed24014778,
FFFF240147e07fed240147e0,
FFFF240148487fed24014848,
FFFF240148b07fed240148b0,
FFFF240149187fed24014918,
FFFF240149807fed24014980,
FFFF240149e87fed240149e8,
FFFF24014a507fed24014a50,
FFFF24014ab87fed24014ab8,
FFFF24014b207fed24014b20,
FFFF24014b887fed24014b88,
FFFF24014bf07fed24014bf0,
FFFF24014c587fed24014c58,
FFFF24014cc07fed24014cc0,
FFFF24014d287fed24014d28,
FFFF24014d907fed24014d90,
FFFF24014df87fed24014df8,
FFFF240150007fed24015000,
FFFF240150687fed24015068,
FFFF240158207fed24015820,
FFFF240158887fed24015888,
FFFF240158f07fed240158f0,
FFFF240159587fed24015958,
FFFF240159c07fed240159c0,
FFFF24015a287fed24015a28,
FFFF24015a907fed24015a90,
FFFF24015af87fed24015af8,
FFFF24015b607fed24015b60,
FFFF24015d007fed24015d00,
FFFF24015d687fed24015d68,
FFFF24015dd07fed24015dd0,
FFFF24015e387fed24015e38,
FFFF240103a87fed240103a8,
FFFF240104107fed24010410,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
FFF423d13a207fed23d13a20 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA22e271907fed22e27190 /* LowLevel */;
targetProxy = FFF522e271907fed22e27190 /* PBXContainerItemProxy */;
};
FFF423d15da07fed23d15da0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA22dbccc07fed22dbccc0 /* LowLevelAABB */;
targetProxy = FFF522dbccc07fed22dbccc0 /* PBXContainerItemProxy */;
};
FFF423d189107fed23d18910 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA2167fad07fed2167fad0 /* LowLevelCloth */;
targetProxy = FFF52167fad07fed2167fad0 /* PBXContainerItemProxy */;
};
FFF423d15e007fed23d15e00 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA22e511a07fed22e511a0 /* LowLevelDynamics */;
targetProxy = FFF522e511a07fed22e511a0 /* PBXContainerItemProxy */;
};
FFF423d189707fed23d18970 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA22dd04c07fed22dd04c0 /* LowLevelParticles */;
targetProxy = FFF522dd04c07fed22dd04c0 /* PBXContainerItemProxy */;
};
FFF423d18f007fed23d18f00 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA2292ec707fed2292ec70 /* PhysXCommon */;
targetProxy = FFF52292ec707fed2292ec70 /* PBXContainerItemProxy */;
};
FFF423d0c5d07fed23d0c5d0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA22914a507fed22914a50 /* PxFoundation */;
targetProxy = FFF522914a507fed22914a50 /* PBXContainerItemProxy */;
};
FFF423d0c2807fed23d0c280 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA22e098707fed22e09870 /* PxPvdSDK */;
targetProxy = FFF522e098707fed22e09870 /* PBXContainerItemProxy */;
};
FFF423d191d07fed23d191d0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA23a17ac07fed23a17ac0 /* PxTask */;
targetProxy = FFF523a17ac07fed23a17ac0 /* PBXContainerItemProxy */;
};
FFF423d191407fed23d19140 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA23d38e307fed23d38e30 /* SceneQuery */;
targetProxy = FFF523d38e307fed23d38e30 /* PBXContainerItemProxy */;
};
FFF423d191a07fed23d191a0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA23d3d4407fed23d3d440 /* SimulationController */;
targetProxy = FFF523d3d4407fed23d3d440 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXCharacterKinematic */
FFFF23d1ab007fed23d1ab00 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD23d27c207fed23d27c20 /* PhysXExtensions */; };
FFFF2400da787fed2400da78 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2400da787fed2400da78 /* CctBoxController.cpp */; };
FFFF2400dae07fed2400dae0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2400dae07fed2400dae0 /* CctCapsuleController.cpp */; };
FFFF2400db487fed2400db48 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2400db487fed2400db48 /* CctCharacterController.cpp */; };
FFFF2400dbb07fed2400dbb0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2400dbb07fed2400dbb0 /* CctCharacterControllerCallbacks.cpp */; };
FFFF2400dc187fed2400dc18 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2400dc187fed2400dc18 /* CctCharacterControllerManager.cpp */; };
FFFF2400dc807fed2400dc80 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2400dc807fed2400dc80 /* CctController.cpp */; };
FFFF2400dce87fed2400dce8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2400dce87fed2400dce8 /* CctObstacleContext.cpp */; };
FFFF2400dd507fed2400dd50 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2400dd507fed2400dd50 /* CctSweptBox.cpp */; };
FFFF2400ddb87fed2400ddb8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2400ddb87fed2400ddb8 /* CctSweptCapsule.cpp */; };
FFFF2400de207fed2400de20 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2400de207fed2400de20 /* CctSweptVolume.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD23d191e07fed23d191e0 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD23d1c2007fed23d1c200 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; };
FFFD23d1c2687fed23d1c268 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; };
FFFD23d1c2d07fed23d1c2d0 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; };
FFFD23d1c3387fed23d1c338 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; };
FFFD23d1c3a07fed23d1c3a0 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; };
FFFD23d1c4087fed23d1c408 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; };
FFFD23d1c4707fed23d1c470 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; };
FFFD23d1c4d87fed23d1c4d8 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; };
FFFD2400d6007fed2400d600 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; };
FFFD2400d6687fed2400d668 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; };
FFFD2400d6d07fed2400d6d0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; };
FFFD2400d7387fed2400d738 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; };
FFFD2400d7a07fed2400d7a0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; };
FFFD2400d8087fed2400d808 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; };
FFFD2400d8707fed2400d870 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; };
FFFD2400d8d87fed2400d8d8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; };
FFFD2400d9407fed2400d940 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; };
FFFD2400d9a87fed2400d9a8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; };
FFFD2400da107fed2400da10 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; };
FFFD2400da787fed2400da78 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2400dae07fed2400dae0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2400db487fed2400db48 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2400dbb07fed2400dbb0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2400dc187fed2400dc18 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2400dc807fed2400dc80 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2400dce87fed2400dce8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2400dd507fed2400dd50 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2400ddb87fed2400ddb8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2400de207fed2400de20 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
FFF223d191e07fed23d191e0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC23d191e07fed23d191e0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF823d191e07fed23d191e0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF2400da787fed2400da78,
FFFF2400dae07fed2400dae0,
FFFF2400db487fed2400db48,
FFFF2400dbb07fed2400dbb0,
FFFF2400dc187fed2400dc18,
FFFF2400dc807fed2400dc80,
FFFF2400dce87fed2400dce8,
FFFF2400dd507fed2400dd50,
FFFF2400ddb87fed2400ddb8,
FFFF2400de207fed2400de20,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
FFF423d1c0807fed23d1c080 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA2292ec707fed2292ec70 /* PhysXCommon */;
targetProxy = FFF52292ec707fed2292ec70 /* PBXContainerItemProxy */;
};
FFF423d1ab007fed23d1ab00 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA23d27c207fed23d27c20 /* PhysXExtensions */;
targetProxy = FFF523d27c207fed23d27c20 /* PBXContainerItemProxy */;
};
FFF423d1b8607fed23d1b860 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA22914a507fed22914a50 /* PxFoundation */;
targetProxy = FFF522914a507fed22914a50 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXVehicle */
FFFF240188087fed24018808 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240188087fed24018808 /* PxVehicleComponents.cpp */; };
FFFF240188707fed24018870 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240188707fed24018870 /* PxVehicleDrive.cpp */; };
FFFF240188d87fed240188d8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240188d87fed240188d8 /* PxVehicleDrive4W.cpp */; };
FFFF240189407fed24018940 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240189407fed24018940 /* PxVehicleDriveNW.cpp */; };
FFFF240189a87fed240189a8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240189a87fed240189a8 /* PxVehicleDriveTank.cpp */; };
FFFF24018a107fed24018a10 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD24018a107fed24018a10 /* PxVehicleMetaData.cpp */; };
FFFF24018a787fed24018a78 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD24018a787fed24018a78 /* PxVehicleNoDrive.cpp */; };
FFFF24018ae07fed24018ae0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD24018ae07fed24018ae0 /* PxVehicleSDK.cpp */; };
FFFF24018b487fed24018b48 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD24018b487fed24018b48 /* PxVehicleSerialization.cpp */; };
FFFF24018bb07fed24018bb0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD24018bb07fed24018bb0 /* PxVehicleSuspWheelTire4.cpp */; };
FFFF24018c187fed24018c18 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD24018c187fed24018c18 /* PxVehicleTireFriction.cpp */; };
FFFF24018c807fed24018c80 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD24018c807fed24018c80 /* PxVehicleUpdate.cpp */; };
FFFF24018ce87fed24018ce8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD24018ce87fed24018ce8 /* PxVehicleWheels.cpp */; };
FFFF24018d507fed24018d50 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD24018d507fed24018d50 /* VehicleUtilControl.cpp */; };
FFFF24018db87fed24018db8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD24018db87fed24018db8 /* VehicleUtilSetup.cpp */; };
FFFF24018e207fed24018e20 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD24018e207fed24018e20 /* VehicleUtilTelemetry.cpp */; };
FFFF23d281487fed23d28148 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD23d281487fed23d28148 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; };
FFFF23d281b07fed23d281b0 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD23d281b07fed23d281b0 /* src/PxVehicleMetaDataObjects.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD23d165107fed23d16510 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD2400f4007fed2400f400 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; };
FFFD2400f4687fed2400f468 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; };
FFFD2400f4d07fed2400f4d0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; };
FFFD2400f5387fed2400f538 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; };
FFFD2400f5a07fed2400f5a0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; };
FFFD2400f6087fed2400f608 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; };
FFFD2400f6707fed2400f670 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; };
FFFD2400f6d87fed2400f6d8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; };
FFFD2400f7407fed2400f740 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; };
FFFD2400f7a87fed2400f7a8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; };
FFFD2400f8107fed2400f810 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; };
FFFD2400f8787fed2400f878 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; };
FFFD2400f8e07fed2400f8e0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; };
FFFD2400f9487fed2400f948 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; };
FFFD2400f9b07fed2400f9b0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; };
FFFD240186007fed24018600 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; };
FFFD240186687fed24018668 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; };
FFFD240186d07fed240186d0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; };
FFFD240187387fed24018738 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; };
FFFD240187a07fed240187a0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; };
FFFD240188087fed24018808 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240188707fed24018870 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240188d87fed240188d8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240189407fed24018940 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240189a87fed240189a8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24018a107fed24018a10 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24018a787fed24018a78 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24018ae07fed24018ae0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24018b487fed24018b48 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24018bb07fed24018bb0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24018c187fed24018c18 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24018c807fed24018c80 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24018ce87fed24018ce8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24018d507fed24018d50 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24018db87fed24018db8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; };
FFFD24018e207fed24018e20 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; };
FFFD23d280107fed23d28010 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
FFFD23d280787fed23d28078 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
FFFD23d280e07fed23d280e0 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
FFFD23d281487fed23d28148 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
FFFD23d281b07fed23d281b0 /* 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 */
FFF223d165107fed23d16510 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC23d165107fed23d16510 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF823d165107fed23d16510 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF240188087fed24018808,
FFFF240188707fed24018870,
FFFF240188d87fed240188d8,
FFFF240189407fed24018940,
FFFF240189a87fed240189a8,
FFFF24018a107fed24018a10,
FFFF24018a787fed24018a78,
FFFF24018ae07fed24018ae0,
FFFF24018b487fed24018b48,
FFFF24018bb07fed24018bb0,
FFFF24018c187fed24018c18,
FFFF24018c807fed24018c80,
FFFF24018ce87fed24018ce8,
FFFF24018d507fed24018d50,
FFFF24018db87fed24018db8,
FFFF24018e207fed24018e20,
FFFF23d281487fed23d28148,
FFFF23d281b07fed23d281b0,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXExtensions */
FFFF2401aee87fed2401aee8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401aee87fed2401aee8 /* ExtBroadPhase.cpp */; };
FFFF2401af507fed2401af50 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401af507fed2401af50 /* ExtClothFabricCooker.cpp */; };
FFFF2401afb87fed2401afb8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401afb87fed2401afb8 /* ExtClothGeodesicTetherCooker.cpp */; };
FFFF2401b0207fed2401b020 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401b0207fed2401b020 /* ExtClothMeshQuadifier.cpp */; };
FFFF2401b0887fed2401b088 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401b0887fed2401b088 /* ExtClothSimpleTetherCooker.cpp */; };
FFFF2401b0f07fed2401b0f0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401b0f07fed2401b0f0 /* ExtCollection.cpp */; };
FFFF2401b1587fed2401b158 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401b1587fed2401b158 /* ExtConvexMeshExt.cpp */; };
FFFF2401b1c07fed2401b1c0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401b1c07fed2401b1c0 /* ExtCpuWorkerThread.cpp */; };
FFFF2401b2287fed2401b228 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401b2287fed2401b228 /* ExtD6Joint.cpp */; };
FFFF2401b2907fed2401b290 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401b2907fed2401b290 /* ExtD6JointSolverPrep.cpp */; };
FFFF2401b2f87fed2401b2f8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401b2f87fed2401b2f8 /* ExtDefaultCpuDispatcher.cpp */; };
FFFF2401b3607fed2401b360 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401b3607fed2401b360 /* ExtDefaultErrorCallback.cpp */; };
FFFF2401b3c87fed2401b3c8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401b3c87fed2401b3c8 /* ExtDefaultSimulationFilterShader.cpp */; };
FFFF2401b4307fed2401b430 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401b4307fed2401b430 /* ExtDefaultStreams.cpp */; };
FFFF2401b4987fed2401b498 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401b4987fed2401b498 /* ExtDistanceJoint.cpp */; };
FFFF2401b5007fed2401b500 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401b5007fed2401b500 /* ExtDistanceJointSolverPrep.cpp */; };
FFFF2401b5687fed2401b568 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401b5687fed2401b568 /* ExtExtensions.cpp */; };
FFFF2401b5d07fed2401b5d0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401b5d07fed2401b5d0 /* ExtFixedJoint.cpp */; };
FFFF2401b6387fed2401b638 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401b6387fed2401b638 /* ExtFixedJointSolverPrep.cpp */; };
FFFF2401b6a07fed2401b6a0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401b6a07fed2401b6a0 /* ExtJoint.cpp */; };
FFFF2401b7087fed2401b708 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401b7087fed2401b708 /* ExtMetaData.cpp */; };
FFFF2401b7707fed2401b770 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401b7707fed2401b770 /* ExtParticleExt.cpp */; };
FFFF2401b7d87fed2401b7d8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401b7d87fed2401b7d8 /* ExtPrismaticJoint.cpp */; };
FFFF2401b8407fed2401b840 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401b8407fed2401b840 /* ExtPrismaticJointSolverPrep.cpp */; };
FFFF2401b8a87fed2401b8a8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401b8a87fed2401b8a8 /* ExtPvd.cpp */; };
FFFF2401b9107fed2401b910 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401b9107fed2401b910 /* ExtPxStringTable.cpp */; };
FFFF2401b9787fed2401b978 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401b9787fed2401b978 /* ExtRaycastCCD.cpp */; };
FFFF2401b9e07fed2401b9e0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401b9e07fed2401b9e0 /* ExtRevoluteJoint.cpp */; };
FFFF2401ba487fed2401ba48 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401ba487fed2401ba48 /* ExtRevoluteJointSolverPrep.cpp */; };
FFFF2401bab07fed2401bab0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401bab07fed2401bab0 /* ExtRigidBodyExt.cpp */; };
FFFF2401bb187fed2401bb18 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401bb187fed2401bb18 /* ExtSceneQueryExt.cpp */; };
FFFF2401bb807fed2401bb80 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401bb807fed2401bb80 /* ExtSimpleFactory.cpp */; };
FFFF2401bbe87fed2401bbe8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401bbe87fed2401bbe8 /* ExtSmoothNormals.cpp */; };
FFFF2401bc507fed2401bc50 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401bc507fed2401bc50 /* ExtSphericalJoint.cpp */; };
FFFF2401bcb87fed2401bcb8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401bcb87fed2401bcb8 /* ExtSphericalJointSolverPrep.cpp */; };
FFFF2401bd207fed2401bd20 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2401bd207fed2401bd20 /* ExtTriangleMeshExt.cpp */; };
FFFF2401f2d07fed2401f2d0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2401f2d07fed2401f2d0 /* SnSerialUtils.cpp */; };
FFFF2401f3387fed2401f338 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2401f3387fed2401f338 /* SnSerialization.cpp */; };
FFFF2401f3a07fed2401f3a0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2401f3a07fed2401f3a0 /* SnSerializationRegistry.cpp */; };
FFFF2401f6e07fed2401f6e0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2401f6e07fed2401f6e0 /* Binary/SnBinaryDeserialization.cpp */; };
FFFF2401f7487fed2401f748 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2401f7487fed2401f748 /* Binary/SnBinarySerialization.cpp */; };
FFFF2401f7b07fed2401f7b0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2401f7b07fed2401f7b0 /* Binary/SnConvX.cpp */; };
FFFF2401f8187fed2401f818 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2401f8187fed2401f818 /* Binary/SnConvX_Align.cpp */; };
FFFF2401f8807fed2401f880 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2401f8807fed2401f880 /* Binary/SnConvX_Convert.cpp */; };
FFFF2401f8e87fed2401f8e8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2401f8e87fed2401f8e8 /* Binary/SnConvX_Error.cpp */; };
FFFF2401f9507fed2401f950 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2401f9507fed2401f950 /* Binary/SnConvX_MetaData.cpp */; };
FFFF2401f9b87fed2401f9b8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2401f9b87fed2401f9b8 /* Binary/SnConvX_Output.cpp */; };
FFFF2401fa207fed2401fa20 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2401fa207fed2401fa20 /* Binary/SnConvX_Union.cpp */; };
FFFF2401fa887fed2401fa88 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2401fa887fed2401fa88 /* Binary/SnSerializationContext.cpp */; };
FFFF240203e07fed240203e0 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD240203e07fed240203e0 /* Xml/SnJointRepXSerializer.cpp */; };
FFFF240204487fed24020448 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD240204487fed24020448 /* Xml/SnRepXCoreSerializer.cpp */; };
FFFF240204b07fed240204b0 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD240204b07fed240204b0 /* Xml/SnRepXUpgrader.cpp */; };
FFFF240205187fed24020518 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD240205187fed24020518 /* Xml/SnXmlSerialization.cpp */; };
FFFF2401d2e07fed2401d2e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD2401d2e07fed2401d2e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD23d27c207fed23d27c20 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD2401be007fed2401be00 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; };
FFFD2401be687fed2401be68 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; };
FFFD2401bed07fed2401bed0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; };
FFFD2401bf387fed2401bf38 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; };
FFFD2401bfa07fed2401bfa0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; };
FFFD2401c0087fed2401c008 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; };
FFFD2401c0707fed2401c070 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; };
FFFD2401c0d87fed2401c0d8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; };
FFFD2401c1407fed2401c140 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; };
FFFD2401c1a87fed2401c1a8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; };
FFFD2401c2107fed2401c210 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; };
FFFD2401c2787fed2401c278 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
FFFD2401c2e07fed2401c2e0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; };
FFFD2401c3487fed2401c348 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; };
FFFD2401c3b07fed2401c3b0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; };
FFFD2401c4187fed2401c418 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD2401c4807fed2401c480 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; };
FFFD2401c4e87fed2401c4e8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD2401c5507fed2401c550 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD2401c5b87fed2401c5b8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; };
FFFD2401c6207fed2401c620 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; };
FFFD2401c6887fed2401c688 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; };
FFFD2401c6f07fed2401c6f0 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD2401c7587fed2401c758 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; };
FFFD2401c7c07fed2401c7c0 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; };
FFFD2401c8287fed2401c828 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; };
FFFD2401c8907fed2401c890 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD2401c8f87fed2401c8f8 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; };
FFFD2401c9607fed2401c960 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; };
FFFD2401c9c87fed2401c9c8 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; };
FFFD2401ca307fed2401ca30 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; };
FFFD2401ca987fed2401ca98 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; };
FFFD2401cb007fed2401cb00 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; };
FFFD2401cb687fed2401cb68 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; };
FFFD2401cbd07fed2401cbd0 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD2401cc387fed2401cc38 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; };
FFFD2401cca07fed2401cca0 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; };
FFFD2401a8007fed2401a800 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; };
FFFD2401a8687fed2401a868 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; };
FFFD2401a8d07fed2401a8d0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; };
FFFD2401a9387fed2401a938 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
FFFD2401a9a07fed2401a9a0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD2401aa087fed2401aa08 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD2401aa707fed2401aa70 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; };
FFFD2401aad87fed2401aad8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD2401ab407fed2401ab40 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
FFFD2401aba87fed2401aba8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; };
FFFD2401ac107fed2401ac10 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD2401ac787fed2401ac78 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; };
FFFD2401ace07fed2401ace0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD2401ad487fed2401ad48 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; };
FFFD2401adb07fed2401adb0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; };
FFFD2401ae187fed2401ae18 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD2401ae807fed2401ae80 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; };
FFFD2401aee87fed2401aee8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401af507fed2401af50 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401afb87fed2401afb8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401b0207fed2401b020 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401b0887fed2401b088 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401b0f07fed2401b0f0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401b1587fed2401b158 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401b1c07fed2401b1c0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401b2287fed2401b228 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401b2907fed2401b290 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401b2f87fed2401b2f8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401b3607fed2401b360 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401b3c87fed2401b3c8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401b4307fed2401b430 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401b4987fed2401b498 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401b5007fed2401b500 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401b5687fed2401b568 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401b5d07fed2401b5d0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401b6387fed2401b638 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401b6a07fed2401b6a0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401b7087fed2401b708 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401b7707fed2401b770 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401b7d87fed2401b7d8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401b8407fed2401b840 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401b8a87fed2401b8a8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401b9107fed2401b910 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401b9787fed2401b978 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401b9e07fed2401b9e0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401ba487fed2401ba48 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401bab07fed2401bab0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401bb187fed2401bb18 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401bb807fed2401bb80 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401bbe87fed2401bbe8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401bc507fed2401bc50 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401bcb87fed2401bcb8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401bd207fed2401bd20 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401f2007fed2401f200 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; };
FFFD2401f2687fed2401f268 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; };
FFFD2401f2d07fed2401f2d0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401f3387fed2401f338 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401f3a07fed2401f3a0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401f4087fed2401f408 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; };
FFFD2401f4707fed2401f470 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; };
FFFD2401f4d87fed2401f4d8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; };
FFFD2401f5407fed2401f540 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; };
FFFD2401f5a87fed2401f5a8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; };
FFFD2401f6107fed2401f610 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; };
FFFD2401f6787fed2401f678 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; };
FFFD2401f6e07fed2401f6e0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401f7487fed2401f748 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401f7b07fed2401f7b0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401f8187fed2401f818 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401f8807fed2401f880 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401f8e87fed2401f8e8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401f9507fed2401f950 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401f9b87fed2401f9b8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401fa207fed2401fa20 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401fa887fed2401fa88 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2401faf07fed2401faf0 /* Xml/SnJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; };
FFFD2401fb587fed2401fb58 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; };
FFFD2401fbc07fed2401fbc0 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; };
FFFD2401fc287fed2401fc28 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; };
FFFD2401fc907fed2401fc90 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; };
FFFD2401fcf87fed2401fcf8 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; };
FFFD2401fd607fed2401fd60 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; };
FFFD2401fdc87fed2401fdc8 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; };
FFFD2401fe307fed2401fe30 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; };
FFFD2401fe987fed2401fe98 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; };
FFFD2401ff007fed2401ff00 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; };
FFFD2401ff687fed2401ff68 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; };
FFFD2401ffd07fed2401ffd0 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; };
FFFD240200387fed24020038 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; };
FFFD240200a07fed240200a0 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; };
FFFD240201087fed24020108 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; };
FFFD240201707fed24020170 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; };
FFFD240201d87fed240201d8 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; };
FFFD240202407fed24020240 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; };
FFFD240202a87fed240202a8 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; };
FFFD240203107fed24020310 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; };
FFFD240203787fed24020378 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; };
FFFD240203e07fed240203e0 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240204487fed24020448 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240204b07fed240204b0 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240205187fed24020518 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240205807fed24020580 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; };
FFFD2401ce007fed2401ce00 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; };
FFFD2401ce687fed2401ce68 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
FFFD2401ced07fed2401ced0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
FFFD2401cf387fed2401cf38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
FFFD2401cfa07fed2401cfa0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
FFFD2401d0087fed2401d008 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; };
FFFD2401d0707fed2401d070 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; };
FFFD2401d0d87fed2401d0d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
FFFD2401d1407fed2401d140 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
FFFD2401d1a87fed2401d1a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
FFFD2401d2107fed2401d210 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
FFFD2401d2787fed2401d278 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
FFFD2401d2e07fed2401d2e0 /* 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 */
FFF223d27c207fed23d27c20 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC23d27c207fed23d27c20 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF823d27c207fed23d27c20 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF2401aee87fed2401aee8,
FFFF2401af507fed2401af50,
FFFF2401afb87fed2401afb8,
FFFF2401b0207fed2401b020,
FFFF2401b0887fed2401b088,
FFFF2401b0f07fed2401b0f0,
FFFF2401b1587fed2401b158,
FFFF2401b1c07fed2401b1c0,
FFFF2401b2287fed2401b228,
FFFF2401b2907fed2401b290,
FFFF2401b2f87fed2401b2f8,
FFFF2401b3607fed2401b360,
FFFF2401b3c87fed2401b3c8,
FFFF2401b4307fed2401b430,
FFFF2401b4987fed2401b498,
FFFF2401b5007fed2401b500,
FFFF2401b5687fed2401b568,
FFFF2401b5d07fed2401b5d0,
FFFF2401b6387fed2401b638,
FFFF2401b6a07fed2401b6a0,
FFFF2401b7087fed2401b708,
FFFF2401b7707fed2401b770,
FFFF2401b7d87fed2401b7d8,
FFFF2401b8407fed2401b840,
FFFF2401b8a87fed2401b8a8,
FFFF2401b9107fed2401b910,
FFFF2401b9787fed2401b978,
FFFF2401b9e07fed2401b9e0,
FFFF2401ba487fed2401ba48,
FFFF2401bab07fed2401bab0,
FFFF2401bb187fed2401bb18,
FFFF2401bb807fed2401bb80,
FFFF2401bbe87fed2401bbe8,
FFFF2401bc507fed2401bc50,
FFFF2401bcb87fed2401bcb8,
FFFF2401bd207fed2401bd20,
FFFF2401f2d07fed2401f2d0,
FFFF2401f3387fed2401f338,
FFFF2401f3a07fed2401f3a0,
FFFF2401f6e07fed2401f6e0,
FFFF2401f7487fed2401f748,
FFFF2401f7b07fed2401f7b0,
FFFF2401f8187fed2401f818,
FFFF2401f8807fed2401f880,
FFFF2401f8e87fed2401f8e8,
FFFF2401f9507fed2401f950,
FFFF2401f9b87fed2401f9b8,
FFFF2401fa207fed2401fa20,
FFFF2401fa887fed2401fa88,
FFFF240203e07fed240203e0,
FFFF240204487fed24020448,
FFFF240204b07fed240204b0,
FFFF240205187fed24020518,
FFFF2401d2e07fed2401d2e0,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
FFF423d25b007fed23d25b00 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA23d010307fed23d01030 /* PsFastXml */;
targetProxy = FFF523d010307fed23d01030 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of SceneQuery */
FFFF240232007fed24023200 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240232007fed24023200 /* SqAABBPruner.cpp */; };
FFFF240232687fed24023268 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240232687fed24023268 /* SqAABBTree.cpp */; };
FFFF240232d07fed240232d0 /* SqAABBTreeBuild.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240232d07fed240232d0 /* SqAABBTreeBuild.cpp */; };
FFFF240233387fed24023338 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240233387fed24023338 /* SqAABBTreeUpdateMap.cpp */; };
FFFF240233a07fed240233a0 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240233a07fed240233a0 /* SqBounds.cpp */; };
FFFF240234087fed24023408 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240234087fed24023408 /* SqBucketPruner.cpp */; };
FFFF240234707fed24023470 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240234707fed24023470 /* SqExtendedBucketPruner.cpp */; };
FFFF240234d87fed240234d8 /* SqIncrementalAABBPrunerCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240234d87fed240234d8 /* SqIncrementalAABBPrunerCore.cpp */; };
FFFF240235407fed24023540 /* SqIncrementalAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240235407fed24023540 /* SqIncrementalAABBTree.cpp */; };
FFFF240235a87fed240235a8 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240235a87fed240235a8 /* SqMetaData.cpp */; };
FFFF240236107fed24023610 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240236107fed24023610 /* SqPruningPool.cpp */; };
FFFF240236787fed24023678 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240236787fed24023678 /* SqPruningStructure.cpp */; };
FFFF240236e07fed240236e0 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD240236e07fed240236e0 /* SqSceneQueryManager.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD23d38e307fed23d38e30 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD240232007fed24023200 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240232687fed24023268 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240232d07fed240232d0 /* SqAABBTreeBuild.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeBuild.cpp"; path = "../../SceneQuery/src/SqAABBTreeBuild.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240233387fed24023338 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240233a07fed240233a0 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240234087fed24023408 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240234707fed24023470 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240234d87fed240234d8 /* SqIncrementalAABBPrunerCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBPrunerCore.cpp"; path = "../../SceneQuery/src/SqIncrementalAABBPrunerCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240235407fed24023540 /* SqIncrementalAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBTree.cpp"; path = "../../SceneQuery/src/SqIncrementalAABBTree.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240235a87fed240235a8 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240236107fed24023610 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240236787fed24023678 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240236e07fed240236e0 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; };
FFFD240237487fed24023748 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; };
FFFD240237b07fed240237b0 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; };
FFFD240238187fed24023818 /* SqAABBTreeBuild.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeBuild.h"; path = "../../SceneQuery/src/SqAABBTreeBuild.h"; sourceTree = SOURCE_ROOT; };
FFFD240238807fed24023880 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; };
FFFD240238e87fed240238e8 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; };
FFFD240239507fed24023950 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; };
FFFD240239b87fed240239b8 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; };
FFFD24023a207fed24023a20 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; };
FFFD24023a887fed24023a88 /* SqIncrementalAABBPrunerCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBPrunerCore.h"; path = "../../SceneQuery/src/SqIncrementalAABBPrunerCore.h"; sourceTree = SOURCE_ROOT; };
FFFD24023af07fed24023af0 /* SqIncrementalAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBTree.h"; path = "../../SceneQuery/src/SqIncrementalAABBTree.h"; sourceTree = SOURCE_ROOT; };
FFFD24023b587fed24023b58 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; };
FFFD24023bc07fed24023bc0 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; };
FFFD24023c287fed24023c28 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; };
FFFD23d3d1807fed23d3d180 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; };
FFFD23d3d1e87fed23d3d1e8 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; };
FFFD23d3d2507fed23d3d250 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; };
FFFD23d3d2b87fed23d3d2b8 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
FFF223d38e307fed23d38e30 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC23d38e307fed23d38e30 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF823d38e307fed23d38e30 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF240232007fed24023200,
FFFF240232687fed24023268,
FFFF240232d07fed240232d0,
FFFF240233387fed24023338,
FFFF240233a07fed240233a0,
FFFF240234087fed24023408,
FFFF240234707fed24023470,
FFFF240234d87fed240234d8,
FFFF240235407fed24023540,
FFFF240235a87fed240235a8,
FFFF240236107fed24023610,
FFFF240236787fed24023678,
FFFF240236e07fed240236e0,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of SimulationController */
FFFF221e69d07fed221e69d0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e69d07fed221e69d0 /* ScActorCore.cpp */; };
FFFF221e6a387fed221e6a38 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e6a387fed221e6a38 /* ScActorSim.cpp */; };
FFFF221e6aa07fed221e6aa0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e6aa07fed221e6aa0 /* ScArticulationCore.cpp */; };
FFFF221e6b087fed221e6b08 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e6b087fed221e6b08 /* ScArticulationJointCore.cpp */; };
FFFF221e6b707fed221e6b70 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e6b707fed221e6b70 /* ScArticulationJointSim.cpp */; };
FFFF221e6bd87fed221e6bd8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e6bd87fed221e6bd8 /* ScArticulationSim.cpp */; };
FFFF221e6c407fed221e6c40 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e6c407fed221e6c40 /* ScBodyCore.cpp */; };
FFFF221e6ca87fed221e6ca8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e6ca87fed221e6ca8 /* ScBodyCoreKinematic.cpp */; };
FFFF221e6d107fed221e6d10 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e6d107fed221e6d10 /* ScBodySim.cpp */; };
FFFF221e6d787fed221e6d78 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e6d787fed221e6d78 /* ScConstraintCore.cpp */; };
FFFF221e6de07fed221e6de0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e6de07fed221e6de0 /* ScConstraintGroupNode.cpp */; };
FFFF221e6e487fed221e6e48 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e6e487fed221e6e48 /* ScConstraintInteraction.cpp */; };
FFFF221e6eb07fed221e6eb0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e6eb07fed221e6eb0 /* ScConstraintProjectionManager.cpp */; };
FFFF221e6f187fed221e6f18 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e6f187fed221e6f18 /* ScConstraintProjectionTree.cpp */; };
FFFF221e6f807fed221e6f80 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e6f807fed221e6f80 /* ScConstraintSim.cpp */; };
FFFF221e6fe87fed221e6fe8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e6fe87fed221e6fe8 /* ScElementInteractionMarker.cpp */; };
FFFF221e70507fed221e7050 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e70507fed221e7050 /* ScElementSim.cpp */; };
FFFF221e70b87fed221e70b8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e70b87fed221e70b8 /* ScInteraction.cpp */; };
FFFF221e71207fed221e7120 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e71207fed221e7120 /* ScIterators.cpp */; };
FFFF221e71887fed221e7188 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e71887fed221e7188 /* ScMaterialCore.cpp */; };
FFFF221e71f07fed221e71f0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e71f07fed221e71f0 /* ScMetaData.cpp */; };
FFFF221e72587fed221e7258 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e72587fed221e7258 /* ScNPhaseCore.cpp */; };
FFFF221e72c07fed221e72c0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e72c07fed221e72c0 /* ScPhysics.cpp */; };
FFFF221e73287fed221e7328 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e73287fed221e7328 /* ScRigidCore.cpp */; };
FFFF221e73907fed221e7390 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e73907fed221e7390 /* ScRigidSim.cpp */; };
FFFF221e73f87fed221e73f8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e73f87fed221e73f8 /* ScScene.cpp */; };
FFFF221e74607fed221e7460 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e74607fed221e7460 /* ScShapeCore.cpp */; };
FFFF221e74c87fed221e74c8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e74c87fed221e74c8 /* ScShapeInteraction.cpp */; };
FFFF221e75307fed221e7530 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e75307fed221e7530 /* ScShapeSim.cpp */; };
FFFF221e75987fed221e7598 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e75987fed221e7598 /* ScSimStats.cpp */; };
FFFF221e76007fed221e7600 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e76007fed221e7600 /* ScSimulationController.cpp */; };
FFFF221e76687fed221e7668 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e76687fed221e7668 /* ScSqBoundsManager.cpp */; };
FFFF221e76d07fed221e76d0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e76d07fed221e76d0 /* ScStaticCore.cpp */; };
FFFF221e77387fed221e7738 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e77387fed221e7738 /* ScStaticSim.cpp */; };
FFFF221e77a07fed221e77a0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e77a07fed221e77a0 /* ScTriggerInteraction.cpp */; };
FFFF221e79407fed221e7940 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e79407fed221e7940 /* particles/ScParticleBodyInteraction.cpp */; };
FFFF221e79a87fed221e79a8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e79a87fed221e79a8 /* particles/ScParticlePacketShape.cpp */; };
FFFF221e7a107fed221e7a10 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e7a107fed221e7a10 /* particles/ScParticleSystemCore.cpp */; };
FFFF221e7a787fed221e7a78 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e7a787fed221e7a78 /* particles/ScParticleSystemSim.cpp */; };
FFFF221e7bb07fed221e7bb0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e7bb07fed221e7bb0 /* cloth/ScClothCore.cpp */; };
FFFF221e7c187fed221e7c18 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e7c187fed221e7c18 /* cloth/ScClothFabricCore.cpp */; };
FFFF221e7c807fed221e7c80 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e7c807fed221e7c80 /* cloth/ScClothShape.cpp */; };
FFFF221e7ce87fed221e7ce8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221e7ce87fed221e7ce8 /* cloth/ScClothSim.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD23d3d4407fed23d3d440 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD24025e007fed24025e00 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; };
FFFD24025e687fed24025e68 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; };
FFFD24025ed07fed24025ed0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; };
FFFD24025f387fed24025f38 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; };
FFFD24025fa07fed24025fa0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; };
FFFD240260087fed24026008 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; };
FFFD240260707fed24026070 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; };
FFFD240260d87fed240260d8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; };
FFFD240261407fed24026140 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; };
FFFD240261a87fed240261a8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; };
FFFD240262107fed24026210 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; };
FFFD240262787fed24026278 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; };
FFFD240262e07fed240262e0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; };
FFFD240263487fed24026348 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; };
FFFD240263b07fed240263b0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; };
FFFD221e5c007fed221e5c00 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; };
FFFD221e5c687fed221e5c68 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; };
FFFD221e5cd07fed221e5cd0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; };
FFFD221e5d387fed221e5d38 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; };
FFFD221e5da07fed221e5da0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; };
FFFD221e5e087fed221e5e08 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; };
FFFD221e5e707fed221e5e70 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; };
FFFD221e5ed87fed221e5ed8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; };
FFFD221e5f407fed221e5f40 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; };
FFFD221e5fa87fed221e5fa8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; };
FFFD221e60107fed221e6010 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; };
FFFD221e60787fed221e6078 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; };
FFFD221e60e07fed221e60e0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; };
FFFD221e61487fed221e6148 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFD221e61b07fed221e61b0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; };
FFFD221e62187fed221e6218 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; };
FFFD221e62807fed221e6280 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; };
FFFD221e62e87fed221e62e8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; };
FFFD221e63507fed221e6350 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; };
FFFD221e63b87fed221e63b8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; };
FFFD221e64207fed221e6420 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; };
FFFD221e64887fed221e6488 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; };
FFFD221e64f07fed221e64f0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; };
FFFD221e65587fed221e6558 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; };
FFFD221e65c07fed221e65c0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; };
FFFD221e66287fed221e6628 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; };
FFFD221e66907fed221e6690 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; };
FFFD221e66f87fed221e66f8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; };
FFFD221e67607fed221e6760 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; };
FFFD221e67c87fed221e67c8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; };
FFFD221e68307fed221e6830 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; };
FFFD221e68987fed221e6898 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; };
FFFD221e69007fed221e6900 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; };
FFFD221e69687fed221e6968 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; };
FFFD221e69d07fed221e69d0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e6a387fed221e6a38 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e6aa07fed221e6aa0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e6b087fed221e6b08 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e6b707fed221e6b70 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e6bd87fed221e6bd8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e6c407fed221e6c40 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e6ca87fed221e6ca8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e6d107fed221e6d10 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e6d787fed221e6d78 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e6de07fed221e6de0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e6e487fed221e6e48 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e6eb07fed221e6eb0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e6f187fed221e6f18 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e6f807fed221e6f80 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e6fe87fed221e6fe8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e70507fed221e7050 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e70b87fed221e70b8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e71207fed221e7120 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e71887fed221e7188 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e71f07fed221e71f0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e72587fed221e7258 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e72c07fed221e72c0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e73287fed221e7328 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e73907fed221e7390 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e73f87fed221e73f8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e74607fed221e7460 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e74c87fed221e74c8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e75307fed221e7530 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e75987fed221e7598 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e76007fed221e7600 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e76687fed221e7668 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e76d07fed221e76d0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e77387fed221e7738 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e77a07fed221e77a0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e78087fed221e7808 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; };
FFFD221e78707fed221e7870 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; };
FFFD221e78d87fed221e78d8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; };
FFFD221e79407fed221e7940 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e79a87fed221e79a8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e7a107fed221e7a10 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e7a787fed221e7a78 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e7ae07fed221e7ae0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; };
FFFD221e7b487fed221e7b48 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; };
FFFD221e7bb07fed221e7bb0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e7c187fed221e7c18 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e7c807fed221e7c80 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221e7ce87fed221e7ce8 /* 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 */
FFF223d3d4407fed23d3d440 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC23d3d4407fed23d3d440 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF823d3d4407fed23d3d440 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF221e69d07fed221e69d0,
FFFF221e6a387fed221e6a38,
FFFF221e6aa07fed221e6aa0,
FFFF221e6b087fed221e6b08,
FFFF221e6b707fed221e6b70,
FFFF221e6bd87fed221e6bd8,
FFFF221e6c407fed221e6c40,
FFFF221e6ca87fed221e6ca8,
FFFF221e6d107fed221e6d10,
FFFF221e6d787fed221e6d78,
FFFF221e6de07fed221e6de0,
FFFF221e6e487fed221e6e48,
FFFF221e6eb07fed221e6eb0,
FFFF221e6f187fed221e6f18,
FFFF221e6f807fed221e6f80,
FFFF221e6fe87fed221e6fe8,
FFFF221e70507fed221e7050,
FFFF221e70b87fed221e70b8,
FFFF221e71207fed221e7120,
FFFF221e71887fed221e7188,
FFFF221e71f07fed221e71f0,
FFFF221e72587fed221e7258,
FFFF221e72c07fed221e72c0,
FFFF221e73287fed221e7328,
FFFF221e73907fed221e7390,
FFFF221e73f87fed221e73f8,
FFFF221e74607fed221e7460,
FFFF221e74c87fed221e74c8,
FFFF221e75307fed221e7530,
FFFF221e75987fed221e7598,
FFFF221e76007fed221e7600,
FFFF221e76687fed221e7668,
FFFF221e76d07fed221e76d0,
FFFF221e77387fed221e7738,
FFFF221e77a07fed221e77a0,
FFFF221e79407fed221e7940,
FFFF221e79a87fed221e79a8,
FFFF221e7a107fed221e7a10,
FFFF221e7a787fed221e7a78,
FFFF221e7bb07fed221e7bb0,
FFFF221e7c187fed221e7c18,
FFFF221e7c807fed221e7c80,
FFFF221e7ce87fed221e7ce8,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXCooking */
FFFF2388da007fed2388da00 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD23d27c207fed23d27c20 /* PhysXExtensions */; };
FFFF221ede007fed221ede00 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221ede007fed221ede00 /* Adjacencies.cpp */; };
FFFF221ede687fed221ede68 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221ede687fed221ede68 /* Cooking.cpp */; };
FFFF221eded07fed221eded0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221eded07fed221eded0 /* CookingUtils.cpp */; };
FFFF221edf387fed221edf38 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221edf387fed221edf38 /* EdgeList.cpp */; };
FFFF221edfa07fed221edfa0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221edfa07fed221edfa0 /* MeshCleaner.cpp */; };
FFFF221ee0087fed221ee008 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221ee0087fed221ee008 /* Quantizer.cpp */; };
FFFF221ee2e07fed221ee2e0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221ee2e07fed221ee2e0 /* mesh/GrbTriangleMeshCooking.cpp */; };
FFFF221ee3487fed221ee348 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221ee3487fed221ee348 /* mesh/HeightFieldCooking.cpp */; };
FFFF221ee3b07fed221ee3b0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221ee3b07fed221ee3b0 /* mesh/RTreeCooking.cpp */; };
FFFF221ee4187fed221ee418 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221ee4187fed221ee418 /* mesh/TriangleMeshBuilder.cpp */; };
FFFF221ee6887fed221ee688 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221ee6887fed221ee688 /* convex/BigConvexDataBuilder.cpp */; };
FFFF221ee6f07fed221ee6f0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221ee6f07fed221ee6f0 /* convex/ConvexHullBuilder.cpp */; };
FFFF221ee7587fed221ee758 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221ee7587fed221ee758 /* convex/ConvexHullLib.cpp */; };
FFFF221ee7c07fed221ee7c0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221ee7c07fed221ee7c0 /* convex/ConvexHullUtils.cpp */; };
FFFF221ee8287fed221ee828 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221ee8287fed221ee828 /* convex/ConvexMeshBuilder.cpp */; };
FFFF221ee8907fed221ee890 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221ee8907fed221ee890 /* convex/ConvexPolygonsBuilder.cpp */; };
FFFF221ee8f87fed221ee8f8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221ee8f87fed221ee8f8 /* convex/InflationConvexHullLib.cpp */; };
FFFF221ee9607fed221ee960 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221ee9607fed221ee960 /* convex/QuickHullConvexHullLib.cpp */; };
FFFF221ee9c87fed221ee9c8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221ee9c87fed221ee9c8 /* convex/VolumeIntegration.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD238940707fed23894070 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD2388c2607fed2388c260 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
FFFD2388c2c87fed2388c2c8 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
FFFD2388c3307fed2388c330 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; };
FFFD2388c3987fed2388c398 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; };
FFFD2388c4007fed2388c400 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
FFFD2388c4687fed2388c468 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; };
FFFD2388c4d07fed2388c4d0 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; };
FFFD221ede007fed221ede00 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221ede687fed221ede68 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221eded07fed221eded0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221edf387fed221edf38 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221edfa07fed221edfa0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221ee0087fed221ee008 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221ee0707fed221ee070 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; };
FFFD221ee0d87fed221ee0d8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; };
FFFD221ee1407fed221ee140 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; };
FFFD221ee1a87fed221ee1a8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; };
FFFD221ee2107fed221ee210 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; };
FFFD221ee2787fed221ee278 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; };
FFFD221ee2e07fed221ee2e0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221ee3487fed221ee348 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221ee3b07fed221ee3b0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221ee4187fed221ee418 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221ee4807fed221ee480 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; };
FFFD221ee4e87fed221ee4e8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; };
FFFD221ee5507fed221ee550 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; };
FFFD221ee5b87fed221ee5b8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; };
FFFD221ee6207fed221ee620 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; };
FFFD221ee6887fed221ee688 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221ee6f07fed221ee6f0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221ee7587fed221ee758 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221ee7c07fed221ee7c0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221ee8287fed221ee828 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221ee8907fed221ee890 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221ee8f87fed221ee8f8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221ee9607fed221ee960 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221ee9c87fed221ee9c8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221eea307fed221eea30 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; };
FFFD221eea987fed221eea98 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; };
FFFD221eeb007fed221eeb00 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
FFFD221eeb687fed221eeb68 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; };
FFFD221eebd07fed221eebd0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; };
FFFD221eec387fed221eec38 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; };
FFFD221eeca07fed221eeca0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
FFFD221eed087fed221eed08 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
FFFD221eed707fed221eed70 /* 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 */
FFF2238940707fed23894070 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC238940707fed23894070 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF8238940707fed23894070 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF221ede007fed221ede00,
FFFF221ede687fed221ede68,
FFFF221eded07fed221eded0,
FFFF221edf387fed221edf38,
FFFF221edfa07fed221edfa0,
FFFF221ee0087fed221ee008,
FFFF221ee2e07fed221ee2e0,
FFFF221ee3487fed221ee348,
FFFF221ee3b07fed221ee3b0,
FFFF221ee4187fed221ee418,
FFFF221ee6887fed221ee688,
FFFF221ee6f07fed221ee6f0,
FFFF221ee7587fed221ee758,
FFFF221ee7c07fed221ee7c0,
FFFF221ee8287fed221ee828,
FFFF221ee8907fed221ee890,
FFFF221ee8f87fed221ee8f8,
FFFF221ee9607fed221ee960,
FFFF221ee9c87fed221ee9c8,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
FFF4238864a07fed238864a0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA2292ec707fed2292ec70 /* PhysXCommon */;
targetProxy = FFF52292ec707fed2292ec70 /* PBXContainerItemProxy */;
};
FFF42388da007fed2388da00 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA23d27c207fed23d27c20 /* PhysXExtensions */;
targetProxy = FFF523d27c207fed23d27c20 /* PBXContainerItemProxy */;
};
FFF4238952407fed23895240 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA22914a507fed22914a50 /* PxFoundation */;
targetProxy = FFF522914a507fed22914a50 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXCommon */
FFFF2181c6007fed2181c600 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD2181c6007fed2181c600 /* src/CmBoxPruning.cpp */; };
FFFF2181c6687fed2181c668 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD2181c6687fed2181c668 /* src/CmCollection.cpp */; };
FFFF2181c6d07fed2181c6d0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD2181c6d07fed2181c6d0 /* src/CmMathUtils.cpp */; };
FFFF2181c7387fed2181c738 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD2181c7387fed2181c738 /* src/CmPtrTable.cpp */; };
FFFF2181c7a07fed2181c7a0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD2181c7a07fed2181c7a0 /* src/CmRadixSort.cpp */; };
FFFF2181c8087fed2181c808 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD2181c8087fed2181c808 /* src/CmRadixSortBuffered.cpp */; };
FFFF2181c8707fed2181c870 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD2181c8707fed2181c870 /* src/CmRenderOutput.cpp */; };
FFFF2181c8d87fed2181c8d8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD2181c8d87fed2181c8d8 /* src/CmVisualization.cpp */; };
FFFF2182d3a87fed2182d3a8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2182d3a87fed2182d3a8 /* ../../Include/GeomUtils */; };
FFFF218308e07fed218308e0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218308e07fed218308e0 /* src/GuBounds.cpp */; };
FFFF218309487fed21830948 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218309487fed21830948 /* src/GuBox.cpp */; };
FFFF218309b07fed218309b0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218309b07fed218309b0 /* src/GuCCTSweepTests.cpp */; };
FFFF21830a187fed21830a18 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21830a187fed21830a18 /* src/GuCapsule.cpp */; };
FFFF21830a807fed21830a80 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21830a807fed21830a80 /* src/GuGeometryQuery.cpp */; };
FFFF21830ae87fed21830ae8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21830ae87fed21830ae8 /* src/GuGeometryUnion.cpp */; };
FFFF21830b507fed21830b50 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21830b507fed21830b50 /* src/GuInternal.cpp */; };
FFFF21830bb87fed21830bb8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21830bb87fed21830bb8 /* src/GuMTD.cpp */; };
FFFF21830c207fed21830c20 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21830c207fed21830c20 /* src/GuMeshFactory.cpp */; };
FFFF21830c887fed21830c88 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21830c887fed21830c88 /* src/GuMetaData.cpp */; };
FFFF21830cf07fed21830cf0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21830cf07fed21830cf0 /* src/GuOverlapTests.cpp */; };
FFFF21830d587fed21830d58 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21830d587fed21830d58 /* src/GuRaycastTests.cpp */; };
FFFF21830dc07fed21830dc0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21830dc07fed21830dc0 /* src/GuSerialize.cpp */; };
FFFF21830e287fed21830e28 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21830e287fed21830e28 /* src/GuSweepMTD.cpp */; };
FFFF21830e907fed21830e90 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21830e907fed21830e90 /* src/GuSweepSharedTests.cpp */; };
FFFF21830ef87fed21830ef8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21830ef87fed21830ef8 /* src/GuSweepTests.cpp */; };
FFFF21830f607fed21830f60 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21830f607fed21830f60 /* src/contact/GuContactBoxBox.cpp */; };
FFFF21830fc87fed21830fc8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21830fc87fed21830fc8 /* src/contact/GuContactCapsuleBox.cpp */; };
FFFF218310307fed21831030 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218310307fed21831030 /* src/contact/GuContactCapsuleCapsule.cpp */; };
FFFF218310987fed21831098 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218310987fed21831098 /* src/contact/GuContactCapsuleConvex.cpp */; };
FFFF218311007fed21831100 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218311007fed21831100 /* src/contact/GuContactCapsuleMesh.cpp */; };
FFFF218311687fed21831168 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218311687fed21831168 /* src/contact/GuContactConvexConvex.cpp */; };
FFFF218311d07fed218311d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218311d07fed218311d0 /* src/contact/GuContactConvexMesh.cpp */; };
FFFF218312387fed21831238 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218312387fed21831238 /* src/contact/GuContactPlaneBox.cpp */; };
FFFF218312a07fed218312a0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218312a07fed218312a0 /* src/contact/GuContactPlaneCapsule.cpp */; };
FFFF218313087fed21831308 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218313087fed21831308 /* src/contact/GuContactPlaneConvex.cpp */; };
FFFF218313707fed21831370 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218313707fed21831370 /* src/contact/GuContactPolygonPolygon.cpp */; };
FFFF218313d87fed218313d8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218313d87fed218313d8 /* src/contact/GuContactSphereBox.cpp */; };
FFFF218314407fed21831440 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218314407fed21831440 /* src/contact/GuContactSphereCapsule.cpp */; };
FFFF218314a87fed218314a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218314a87fed218314a8 /* src/contact/GuContactSphereMesh.cpp */; };
FFFF218315107fed21831510 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218315107fed21831510 /* src/contact/GuContactSpherePlane.cpp */; };
FFFF218315787fed21831578 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218315787fed21831578 /* src/contact/GuContactSphereSphere.cpp */; };
FFFF218315e07fed218315e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218315e07fed218315e0 /* src/contact/GuFeatureCode.cpp */; };
FFFF218316487fed21831648 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218316487fed21831648 /* src/contact/GuLegacyContactBoxHeightField.cpp */; };
FFFF218316b07fed218316b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218316b07fed218316b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; };
FFFF218317187fed21831718 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218317187fed21831718 /* src/contact/GuLegacyContactConvexHeightField.cpp */; };
FFFF218317807fed21831780 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218317807fed21831780 /* src/contact/GuLegacyContactSphereHeightField.cpp */; };
FFFF218317e87fed218317e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218317e87fed218317e8 /* src/common/GuBarycentricCoordinates.cpp */; };
FFFF218318507fed21831850 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218318507fed21831850 /* src/common/GuSeparatingAxes.cpp */; };
FFFF218318b87fed218318b8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218318b87fed218318b8 /* src/convex/GuBigConvexData.cpp */; };
FFFF218319207fed21831920 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218319207fed21831920 /* src/convex/GuConvexHelper.cpp */; };
FFFF218319887fed21831988 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218319887fed21831988 /* src/convex/GuConvexMesh.cpp */; };
FFFF218319f07fed218319f0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218319f07fed218319f0 /* src/convex/GuConvexSupportTable.cpp */; };
FFFF21831a587fed21831a58 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21831a587fed21831a58 /* src/convex/GuConvexUtilsInternal.cpp */; };
FFFF21831ac07fed21831ac0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21831ac07fed21831ac0 /* src/convex/GuHillClimbing.cpp */; };
FFFF21831b287fed21831b28 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21831b287fed21831b28 /* src/convex/GuShapeConvex.cpp */; };
FFFF21831b907fed21831b90 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21831b907fed21831b90 /* src/distance/GuDistancePointBox.cpp */; };
FFFF21831bf87fed21831bf8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21831bf87fed21831bf8 /* src/distance/GuDistancePointTriangle.cpp */; };
FFFF21831c607fed21831c60 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21831c607fed21831c60 /* src/distance/GuDistanceSegmentBox.cpp */; };
FFFF21831cc87fed21831cc8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21831cc87fed21831cc8 /* src/distance/GuDistanceSegmentSegment.cpp */; };
FFFF21831d307fed21831d30 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21831d307fed21831d30 /* src/distance/GuDistanceSegmentTriangle.cpp */; };
FFFF21831d987fed21831d98 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21831d987fed21831d98 /* src/sweep/GuSweepBoxBox.cpp */; };
FFFF21831e007fed21831e00 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21831e007fed21831e00 /* src/sweep/GuSweepBoxSphere.cpp */; };
FFFF21831e687fed21831e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21831e687fed21831e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; };
FFFF21831ed07fed21831ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21831ed07fed21831ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; };
FFFF21831f387fed21831f38 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21831f387fed21831f38 /* src/sweep/GuSweepCapsuleBox.cpp */; };
FFFF21831fa07fed21831fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21831fa07fed21831fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; };
FFFF218320087fed21832008 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218320087fed21832008 /* src/sweep/GuSweepCapsuleTriangle.cpp */; };
FFFF218320707fed21832070 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218320707fed21832070 /* src/sweep/GuSweepSphereCapsule.cpp */; };
FFFF218320d87fed218320d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218320d87fed218320d8 /* src/sweep/GuSweepSphereSphere.cpp */; };
FFFF218321407fed21832140 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218321407fed21832140 /* src/sweep/GuSweepSphereTriangle.cpp */; };
FFFF218321a87fed218321a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218321a87fed218321a8 /* src/sweep/GuSweepTriangleUtils.cpp */; };
FFFF218322107fed21832210 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218322107fed21832210 /* src/gjk/GuEPA.cpp */; };
FFFF218322787fed21832278 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218322787fed21832278 /* src/gjk/GuGJKSimplex.cpp */; };
FFFF218322e07fed218322e0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218322e07fed218322e0 /* src/gjk/GuGJKTest.cpp */; };
FFFF218323487fed21832348 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218323487fed21832348 /* src/intersection/GuIntersectionBoxBox.cpp */; };
FFFF218323b07fed218323b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218323b07fed218323b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; };
FFFF218324187fed21832418 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218324187fed21832418 /* src/intersection/GuIntersectionEdgeEdge.cpp */; };
FFFF218324807fed21832480 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218324807fed21832480 /* src/intersection/GuIntersectionRayBox.cpp */; };
FFFF218324e87fed218324e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218324e87fed218324e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; };
FFFF218325507fed21832550 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218325507fed21832550 /* src/intersection/GuIntersectionRaySphere.cpp */; };
FFFF218325b87fed218325b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218325b87fed218325b8 /* src/intersection/GuIntersectionSphereBox.cpp */; };
FFFF218326207fed21832620 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218326207fed21832620 /* src/intersection/GuIntersectionTriangleBox.cpp */; };
FFFF218326887fed21832688 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218326887fed21832688 /* src/mesh/GuBV32.cpp */; };
FFFF218326f07fed218326f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218326f07fed218326f0 /* src/mesh/GuBV32Build.cpp */; };
FFFF218327587fed21832758 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218327587fed21832758 /* src/mesh/GuBV4.cpp */; };
FFFF218327c07fed218327c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218327c07fed218327c0 /* src/mesh/GuBV4Build.cpp */; };
FFFF218328287fed21832828 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218328287fed21832828 /* src/mesh/GuBV4_AABBSweep.cpp */; };
FFFF218328907fed21832890 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218328907fed21832890 /* src/mesh/GuBV4_BoxOverlap.cpp */; };
FFFF218328f87fed218328f8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218328f87fed218328f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; };
FFFF218329607fed21832960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218329607fed21832960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; };
FFFF218329c87fed218329c8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218329c87fed218329c8 /* src/mesh/GuBV4_OBBSweep.cpp */; };
FFFF21832a307fed21832a30 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21832a307fed21832a30 /* src/mesh/GuBV4_Raycast.cpp */; };
FFFF21832a987fed21832a98 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21832a987fed21832a98 /* src/mesh/GuBV4_SphereOverlap.cpp */; };
FFFF21832b007fed21832b00 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21832b007fed21832b00 /* src/mesh/GuBV4_SphereSweep.cpp */; };
FFFF21832b687fed21832b68 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21832b687fed21832b68 /* src/mesh/GuMeshQuery.cpp */; };
FFFF21832bd07fed21832bd0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21832bd07fed21832bd0 /* src/mesh/GuMidphaseBV4.cpp */; };
FFFF21832c387fed21832c38 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21832c387fed21832c38 /* src/mesh/GuMidphaseRTree.cpp */; };
FFFF21832ca07fed21832ca0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21832ca07fed21832ca0 /* src/mesh/GuOverlapTestsMesh.cpp */; };
FFFF21832d087fed21832d08 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21832d087fed21832d08 /* src/mesh/GuRTree.cpp */; };
FFFF21832d707fed21832d70 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21832d707fed21832d70 /* src/mesh/GuRTreeQueries.cpp */; };
FFFF21832dd87fed21832dd8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21832dd87fed21832dd8 /* src/mesh/GuSweepsMesh.cpp */; };
FFFF21832e407fed21832e40 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21832e407fed21832e40 /* src/mesh/GuTriangleMesh.cpp */; };
FFFF21832ea87fed21832ea8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21832ea87fed21832ea8 /* src/mesh/GuTriangleMeshBV4.cpp */; };
FFFF21832f107fed21832f10 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21832f107fed21832f10 /* src/mesh/GuTriangleMeshRTree.cpp */; };
FFFF21832f787fed21832f78 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21832f787fed21832f78 /* src/hf/GuHeightField.cpp */; };
FFFF21832fe07fed21832fe0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21832fe07fed21832fe0 /* src/hf/GuHeightFieldUtil.cpp */; };
FFFF218330487fed21833048 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218330487fed21833048 /* src/hf/GuOverlapTestsHF.cpp */; };
FFFF218330b07fed218330b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218330b07fed218330b0 /* src/hf/GuSweepsHF.cpp */; };
FFFF218331187fed21833118 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218331187fed21833118 /* src/pcm/GuPCMContactBoxBox.cpp */; };
FFFF218331807fed21833180 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218331807fed21833180 /* src/pcm/GuPCMContactBoxConvex.cpp */; };
FFFF218331e87fed218331e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218331e87fed218331e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; };
FFFF218332507fed21833250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218332507fed21833250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; };
FFFF218332b87fed218332b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218332b87fed218332b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; };
FFFF218333207fed21833320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218333207fed21833320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; };
FFFF218333887fed21833388 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218333887fed21833388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; };
FFFF218333f07fed218333f0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218333f07fed218333f0 /* src/pcm/GuPCMContactConvexCommon.cpp */; };
FFFF218334587fed21833458 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218334587fed21833458 /* src/pcm/GuPCMContactConvexConvex.cpp */; };
FFFF218334c07fed218334c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218334c07fed218334c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; };
FFFF218335287fed21833528 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218335287fed21833528 /* src/pcm/GuPCMContactConvexMesh.cpp */; };
FFFF218335907fed21833590 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218335907fed21833590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; };
FFFF218335f87fed218335f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218335f87fed218335f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; };
FFFF218336607fed21833660 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218336607fed21833660 /* src/pcm/GuPCMContactPlaneBox.cpp */; };
FFFF218336c87fed218336c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218336c87fed218336c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; };
FFFF218337307fed21833730 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218337307fed21833730 /* src/pcm/GuPCMContactPlaneConvex.cpp */; };
FFFF218337987fed21833798 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218337987fed21833798 /* src/pcm/GuPCMContactSphereBox.cpp */; };
FFFF218338007fed21833800 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218338007fed21833800 /* src/pcm/GuPCMContactSphereCapsule.cpp */; };
FFFF218338687fed21833868 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218338687fed21833868 /* src/pcm/GuPCMContactSphereConvex.cpp */; };
FFFF218338d07fed218338d0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218338d07fed218338d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; };
FFFF218339387fed21833938 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218339387fed21833938 /* src/pcm/GuPCMContactSphereMesh.cpp */; };
FFFF218339a07fed218339a0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD218339a07fed218339a0 /* src/pcm/GuPCMContactSpherePlane.cpp */; };
FFFF21833a087fed21833a08 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21833a087fed21833a08 /* src/pcm/GuPCMContactSphereSphere.cpp */; };
FFFF21833a707fed21833a70 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21833a707fed21833a70 /* src/pcm/GuPCMShapeConvex.cpp */; };
FFFF21833ad87fed21833ad8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21833ad87fed21833ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */; };
FFFF21833b407fed21833b40 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21833b407fed21833b40 /* src/pcm/GuPersistentContactManifold.cpp */; };
FFFF21833ba87fed21833ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21833ba87fed21833ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; };
FFFF21833c107fed21833c10 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD21833c107fed21833c10 /* src/ccd/GuCCDSweepPrimitives.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD2292ec707fed2292ec70 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD2181d6007fed2181d600 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; };
FFFD2181d6687fed2181d668 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; };
FFFD2181d6d07fed2181d6d0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; };
FFFD2181d7387fed2181d738 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; };
FFFD2181d7a07fed2181d7a0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; };
FFFD2181d8087fed2181d808 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; };
FFFD2181d8707fed2181d870 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; };
FFFD2181d8d87fed2181d8d8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFD2181d9407fed2181d940 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; };
FFFD2181d9a87fed2181d9a8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; };
FFFD2181da107fed2181da10 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; };
FFFD2181da787fed2181da78 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; };
FFFD2181dae07fed2181dae0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; };
FFFD2181db487fed2181db48 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; };
FFFD2181dbb07fed2181dbb0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; };
FFFD2181dc187fed2181dc18 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; };
FFFD2181dc807fed2181dc80 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; };
FFFD2181dce87fed2181dce8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; };
FFFD2181dd507fed2181dd50 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; };
FFFD2181ddb87fed2181ddb8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; };
FFFD2181de207fed2181de20 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; };
FFFD2181de887fed2181de88 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; };
FFFD2181def07fed2181def0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; };
FFFD2181df587fed2181df58 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; };
FFFD2181dfc07fed2181dfc0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; };
FFFD2181e0287fed2181e028 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; };
FFFD2181e0907fed2181e090 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; };
FFFD2181e0f87fed2181e0f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; };
FFFD2181e1607fed2181e160 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
FFFD2181e1c87fed2181e1c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; };
FFFD2181e2307fed2181e230 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; };
FFFD2181e2987fed2181e298 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
FFFD2181e3007fed2181e300 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; };
FFFD2181c6007fed2181c600 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2181c6687fed2181c668 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2181c6d07fed2181c6d0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2181c7387fed2181c738 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2181c7a07fed2181c7a0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2181c8087fed2181c808 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2181c8707fed2181c870 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2181c8d87fed2181c8d8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2181c9407fed2181c940 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; };
FFFD2181c9a87fed2181c9a8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; };
FFFD2181ca107fed2181ca10 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; };
FFFD2181ca787fed2181ca78 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; };
FFFD2181cae07fed2181cae0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; };
FFFD2181cb487fed2181cb48 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; };
FFFD2181cbb07fed2181cbb0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; };
FFFD2181cc187fed2181cc18 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; };
FFFD2181cc807fed2181cc80 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; };
FFFD2181cce87fed2181cce8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; };
FFFD2181cd507fed2181cd50 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; };
FFFD2181cdb87fed2181cdb8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; };
FFFD2181ce207fed2181ce20 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; };
FFFD2181ce887fed2181ce88 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; };
FFFD2181cef07fed2181cef0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; };
FFFD2181cf587fed2181cf58 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; };
FFFD2181cfc07fed2181cfc0 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; };
FFFD2181d0287fed2181d028 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFD2181d0907fed2181d090 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; };
FFFD2181d0f87fed2181d0f8 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; };
FFFD2181d1607fed2181d160 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; };
FFFD2181d1c87fed2181d1c8 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; };
FFFD2181d2307fed2181d230 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; };
FFFD2181d2987fed2181d298 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; };
FFFD2181d3007fed2181d300 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; };
FFFD2181d3687fed2181d368 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; };
FFFD2181d3d07fed2181d3d0 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; };
FFFD2182d0007fed2182d000 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; };
FFFD2182d0687fed2182d068 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; };
FFFD2182d0d07fed2182d0d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; };
FFFD2182d1387fed2182d138 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; };
FFFD2182d1a07fed2182d1a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; };
FFFD2182d2087fed2182d208 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; };
FFFD2182d2707fed2182d270 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; };
FFFD2182d2d87fed2182d2d8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; };
FFFD2182d3407fed2182d340 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; };
FFFD2182d3a87fed2182d3a8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; };
FFFD2182d4107fed2182d410 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; };
FFFD2182d4787fed2182d478 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; };
FFFD2182d4e07fed2182d4e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; };
FFFD2182d5487fed2182d548 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; };
FFFD2182d5b07fed2182d5b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; };
FFFD2182d6187fed2182d618 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; };
FFFD2182d6807fed2182d680 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; };
FFFD2182d6e87fed2182d6e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; };
FFFD2182d7507fed2182d750 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; };
FFFD2182d7b87fed2182d7b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; };
FFFD2182d8207fed2182d820 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; };
FFFD2182d8887fed2182d888 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; };
FFFD2182d8f07fed2182d8f0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; };
FFFD2182d9587fed2182d958 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; };
FFFD2182d9c07fed2182d9c0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; };
FFFD2182da287fed2182da28 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; };
FFFD2182da907fed2182da90 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; };
FFFD2182daf87fed2182daf8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; };
FFFD2182db607fed2182db60 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; };
FFFD2182dbc87fed2182dbc8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; };
FFFD2182dc307fed2182dc30 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; };
FFFD2182dc987fed2182dc98 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; };
FFFD2182dd007fed2182dd00 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; };
FFFD2182dd687fed2182dd68 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; };
FFFD2182ddd07fed2182ddd0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; };
FFFD2182de387fed2182de38 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; };
FFFD2182dea07fed2182dea0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; };
FFFD2182df087fed2182df08 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; };
FFFD2182df707fed2182df70 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; };
FFFD2182dfd87fed2182dfd8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; };
FFFD2182e0407fed2182e040 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; };
FFFD2182e0a87fed2182e0a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; };
FFFD2182e1107fed2182e110 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; };
FFFD2182e1787fed2182e178 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; };
FFFD2182e1e07fed2182e1e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; };
FFFD2182e2487fed2182e248 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; };
FFFD2182e2b07fed2182e2b0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; };
FFFD2182e3187fed2182e318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; };
FFFD2182e3807fed2182e380 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; };
FFFD2182e3e87fed2182e3e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; };
FFFD2182e4507fed2182e450 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; };
FFFD2182e4b87fed2182e4b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; };
FFFD2182e5207fed2182e520 /* 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; };
FFFD2182e5887fed2182e588 /* 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; };
FFFD2182e5f07fed2182e5f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; };
FFFD2182e6587fed2182e658 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; };
FFFD2182e6c07fed2182e6c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; };
FFFD2182e7287fed2182e728 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; };
FFFD2182e7907fed2182e790 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; };
FFFD2182e7f87fed2182e7f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; };
FFFD2182e8607fed2182e860 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; };
FFFD2182e8c87fed2182e8c8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; };
FFFD2182e9307fed2182e930 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; };
FFFD2182e9987fed2182e998 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; };
FFFD2182ea007fed2182ea00 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; };
FFFD2182ea687fed2182ea68 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; };
FFFD2182ead07fed2182ead0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; };
FFFD2182eb387fed2182eb38 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; };
FFFD2182eba07fed2182eba0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; };
FFFD2182ec087fed2182ec08 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; };
FFFD2182ec707fed2182ec70 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; };
FFFD2182ecd87fed2182ecd8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; };
FFFD2182ed407fed2182ed40 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; };
FFFD2182eda87fed2182eda8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; };
FFFD2182ee107fed2182ee10 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; };
FFFD2182ee787fed2182ee78 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; };
FFFD2182eee07fed2182eee0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; };
FFFD2182ef487fed2182ef48 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; };
FFFD2182efb07fed2182efb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; };
FFFD2182f0187fed2182f018 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; };
FFFD2182f0807fed2182f080 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; };
FFFD2182f0e87fed2182f0e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; };
FFFD2182f1507fed2182f150 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; };
FFFD2182f1b87fed2182f1b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; };
FFFD2182f2207fed2182f220 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; };
FFFD2182f2887fed2182f288 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; };
FFFD2182f2f07fed2182f2f0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; };
FFFD2182f3587fed2182f358 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; };
FFFD2182f3c07fed2182f3c0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; };
FFFD2182f4287fed2182f428 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; };
FFFD2182f4907fed2182f490 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; };
FFFD2182f4f87fed2182f4f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; };
FFFD2182f5607fed2182f560 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; };
FFFD2182f5c87fed2182f5c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; };
FFFD2182f6307fed2182f630 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; };
FFFD2182f6987fed2182f698 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; };
FFFD2182f7007fed2182f700 /* 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; };
FFFD2182f7687fed2182f768 /* 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; };
FFFD2182f7d07fed2182f7d0 /* 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; };
FFFD2182f8387fed2182f838 /* 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; };
FFFD2182f8a07fed2182f8a0 /* 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; };
FFFD2182f9087fed2182f908 /* 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; };
FFFD2182f9707fed2182f970 /* 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; };
FFFD2182f9d87fed2182f9d8 /* 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; };
FFFD2182fa407fed2182fa40 /* 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; };
FFFD2182faa87fed2182faa8 /* 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; };
FFFD2182fb107fed2182fb10 /* 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; };
FFFD2182fb787fed2182fb78 /* 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; };
FFFD2182fbe07fed2182fbe0 /* 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; };
FFFD2182fc487fed2182fc48 /* 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; };
FFFD2182fcb07fed2182fcb0 /* 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; };
FFFD2182fd187fed2182fd18 /* 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; };
FFFD2182fd807fed2182fd80 /* 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; };
FFFD2182fde87fed2182fde8 /* 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; };
FFFD2182fe507fed2182fe50 /* 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; };
FFFD2182feb87fed2182feb8 /* 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; };
FFFD2182ff207fed2182ff20 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; };
FFFD2182ff887fed2182ff88 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; };
FFFD2182fff07fed2182fff0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; };
FFFD218300587fed21830058 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; };
FFFD218300c07fed218300c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; };
FFFD218301287fed21830128 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; };
FFFD218301907fed21830190 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; };
FFFD218301f87fed218301f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; };
FFFD218302607fed21830260 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
FFFD218302c87fed218302c8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; };
FFFD218303307fed21830330 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; };
FFFD218303987fed21830398 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; };
FFFD218304007fed21830400 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; };
FFFD218304687fed21830468 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; };
FFFD218304d07fed218304d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; };
FFFD218305387fed21830538 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; };
FFFD218305a07fed218305a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; };
FFFD218306087fed21830608 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; };
FFFD218306707fed21830670 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; };
FFFD218306d87fed218306d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; };
FFFD218307407fed21830740 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; };
FFFD218307a87fed218307a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; };
FFFD218308107fed21830810 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; };
FFFD218308787fed21830878 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; };
FFFD218308e07fed218308e0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218309487fed21830948 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218309b07fed218309b0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21830a187fed21830a18 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21830a807fed21830a80 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21830ae87fed21830ae8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21830b507fed21830b50 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21830bb87fed21830bb8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21830c207fed21830c20 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21830c887fed21830c88 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21830cf07fed21830cf0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21830d587fed21830d58 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21830dc07fed21830dc0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21830e287fed21830e28 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21830e907fed21830e90 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21830ef87fed21830ef8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21830f607fed21830f60 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21830fc87fed21830fc8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218310307fed21831030 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218310987fed21831098 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218311007fed21831100 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218311687fed21831168 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218311d07fed218311d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218312387fed21831238 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218312a07fed218312a0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218313087fed21831308 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218313707fed21831370 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218313d87fed218313d8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218314407fed21831440 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218314a87fed218314a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218315107fed21831510 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218315787fed21831578 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218315e07fed218315e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218316487fed21831648 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218316b07fed218316b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218317187fed21831718 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218317807fed21831780 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218317e87fed218317e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218318507fed21831850 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218318b87fed218318b8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218319207fed21831920 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218319887fed21831988 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218319f07fed218319f0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21831a587fed21831a58 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21831ac07fed21831ac0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21831b287fed21831b28 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21831b907fed21831b90 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21831bf87fed21831bf8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21831c607fed21831c60 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21831cc87fed21831cc8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21831d307fed21831d30 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21831d987fed21831d98 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21831e007fed21831e00 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21831e687fed21831e68 /* 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; };
FFFD21831ed07fed21831ed0 /* 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; };
FFFD21831f387fed21831f38 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21831fa07fed21831fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218320087fed21832008 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218320707fed21832070 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218320d87fed218320d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218321407fed21832140 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218321a87fed218321a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218322107fed21832210 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218322787fed21832278 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218322e07fed218322e0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218323487fed21832348 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218323b07fed218323b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218324187fed21832418 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218324807fed21832480 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218324e87fed218324e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218325507fed21832550 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218325b87fed218325b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218326207fed21832620 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218326887fed21832688 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218326f07fed218326f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218327587fed21832758 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218327c07fed218327c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218328287fed21832828 /* 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; };
FFFD218328907fed21832890 /* 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; };
FFFD218328f87fed218328f8 /* 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; };
FFFD218329607fed21832960 /* 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; };
FFFD218329c87fed218329c8 /* 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; };
FFFD21832a307fed21832a30 /* 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; };
FFFD21832a987fed21832a98 /* 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; };
FFFD21832b007fed21832b00 /* 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; };
FFFD21832b687fed21832b68 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21832bd07fed21832bd0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21832c387fed21832c38 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21832ca07fed21832ca0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21832d087fed21832d08 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21832d707fed21832d70 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21832dd87fed21832dd8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21832e407fed21832e40 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21832ea87fed21832ea8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21832f107fed21832f10 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21832f787fed21832f78 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21832fe07fed21832fe0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218330487fed21833048 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218330b07fed218330b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218331187fed21833118 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218331807fed21833180 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218331e87fed218331e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218332507fed21833250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218332b87fed218332b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218333207fed21833320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218333887fed21833388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218333f07fed218333f0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218334587fed21833458 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218334c07fed218334c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218335287fed21833528 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218335907fed21833590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218335f87fed218335f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218336607fed21833660 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218336c87fed218336c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218337307fed21833730 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218337987fed21833798 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218338007fed21833800 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218338687fed21833868 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218338d07fed218338d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218339387fed21833938 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218339a07fed218339a0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21833a087fed21833a08 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21833a707fed21833a70 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21833ad87fed21833ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21833b407fed21833b40 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21833ba87fed21833ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21833c107fed21833c10 /* 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 */
FFF22292ec707fed2292ec70 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF2182d3a87fed2182d3a8,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC2292ec707fed2292ec70 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF82292ec707fed2292ec70 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF2181c6007fed2181c600,
FFFF2181c6687fed2181c668,
FFFF2181c6d07fed2181c6d0,
FFFF2181c7387fed2181c738,
FFFF2181c7a07fed2181c7a0,
FFFF2181c8087fed2181c808,
FFFF2181c8707fed2181c870,
FFFF2181c8d87fed2181c8d8,
FFFF218308e07fed218308e0,
FFFF218309487fed21830948,
FFFF218309b07fed218309b0,
FFFF21830a187fed21830a18,
FFFF21830a807fed21830a80,
FFFF21830ae87fed21830ae8,
FFFF21830b507fed21830b50,
FFFF21830bb87fed21830bb8,
FFFF21830c207fed21830c20,
FFFF21830c887fed21830c88,
FFFF21830cf07fed21830cf0,
FFFF21830d587fed21830d58,
FFFF21830dc07fed21830dc0,
FFFF21830e287fed21830e28,
FFFF21830e907fed21830e90,
FFFF21830ef87fed21830ef8,
FFFF21830f607fed21830f60,
FFFF21830fc87fed21830fc8,
FFFF218310307fed21831030,
FFFF218310987fed21831098,
FFFF218311007fed21831100,
FFFF218311687fed21831168,
FFFF218311d07fed218311d0,
FFFF218312387fed21831238,
FFFF218312a07fed218312a0,
FFFF218313087fed21831308,
FFFF218313707fed21831370,
FFFF218313d87fed218313d8,
FFFF218314407fed21831440,
FFFF218314a87fed218314a8,
FFFF218315107fed21831510,
FFFF218315787fed21831578,
FFFF218315e07fed218315e0,
FFFF218316487fed21831648,
FFFF218316b07fed218316b0,
FFFF218317187fed21831718,
FFFF218317807fed21831780,
FFFF218317e87fed218317e8,
FFFF218318507fed21831850,
FFFF218318b87fed218318b8,
FFFF218319207fed21831920,
FFFF218319887fed21831988,
FFFF218319f07fed218319f0,
FFFF21831a587fed21831a58,
FFFF21831ac07fed21831ac0,
FFFF21831b287fed21831b28,
FFFF21831b907fed21831b90,
FFFF21831bf87fed21831bf8,
FFFF21831c607fed21831c60,
FFFF21831cc87fed21831cc8,
FFFF21831d307fed21831d30,
FFFF21831d987fed21831d98,
FFFF21831e007fed21831e00,
FFFF21831e687fed21831e68,
FFFF21831ed07fed21831ed0,
FFFF21831f387fed21831f38,
FFFF21831fa07fed21831fa0,
FFFF218320087fed21832008,
FFFF218320707fed21832070,
FFFF218320d87fed218320d8,
FFFF218321407fed21832140,
FFFF218321a87fed218321a8,
FFFF218322107fed21832210,
FFFF218322787fed21832278,
FFFF218322e07fed218322e0,
FFFF218323487fed21832348,
FFFF218323b07fed218323b0,
FFFF218324187fed21832418,
FFFF218324807fed21832480,
FFFF218324e87fed218324e8,
FFFF218325507fed21832550,
FFFF218325b87fed218325b8,
FFFF218326207fed21832620,
FFFF218326887fed21832688,
FFFF218326f07fed218326f0,
FFFF218327587fed21832758,
FFFF218327c07fed218327c0,
FFFF218328287fed21832828,
FFFF218328907fed21832890,
FFFF218328f87fed218328f8,
FFFF218329607fed21832960,
FFFF218329c87fed218329c8,
FFFF21832a307fed21832a30,
FFFF21832a987fed21832a98,
FFFF21832b007fed21832b00,
FFFF21832b687fed21832b68,
FFFF21832bd07fed21832bd0,
FFFF21832c387fed21832c38,
FFFF21832ca07fed21832ca0,
FFFF21832d087fed21832d08,
FFFF21832d707fed21832d70,
FFFF21832dd87fed21832dd8,
FFFF21832e407fed21832e40,
FFFF21832ea87fed21832ea8,
FFFF21832f107fed21832f10,
FFFF21832f787fed21832f78,
FFFF21832fe07fed21832fe0,
FFFF218330487fed21833048,
FFFF218330b07fed218330b0,
FFFF218331187fed21833118,
FFFF218331807fed21833180,
FFFF218331e87fed218331e8,
FFFF218332507fed21833250,
FFFF218332b87fed218332b8,
FFFF218333207fed21833320,
FFFF218333887fed21833388,
FFFF218333f07fed218333f0,
FFFF218334587fed21833458,
FFFF218334c07fed218334c0,
FFFF218335287fed21833528,
FFFF218335907fed21833590,
FFFF218335f87fed218335f8,
FFFF218336607fed21833660,
FFFF218336c87fed218336c8,
FFFF218337307fed21833730,
FFFF218337987fed21833798,
FFFF218338007fed21833800,
FFFF218338687fed21833868,
FFFF218338d07fed218338d0,
FFFF218339387fed21833938,
FFFF218339a07fed218339a0,
FFFF21833a087fed21833a08,
FFFF21833a707fed21833a70,
FFFF21833ad87fed21833ad8,
FFFF21833b407fed21833b40,
FFFF21833ba87fed21833ba8,
FFFF21833c107fed21833c10,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
FFF4229275e07fed229275e0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA22914a507fed22914a50 /* PxFoundation */;
targetProxy = FFF522914a507fed22914a50 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PxFoundation */
FFFF2217bf187fed2217bf18 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2217bf187fed2217bf18 /* src/PsAllocator.cpp */; };
FFFF2217bf807fed2217bf80 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2217bf807fed2217bf80 /* src/PsAssert.cpp */; };
FFFF2217bfe87fed2217bfe8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2217bfe87fed2217bfe8 /* src/PsFoundation.cpp */; };
FFFF2217c0507fed2217c050 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2217c0507fed2217c050 /* src/PsMathUtils.cpp */; };
FFFF2217c0b87fed2217c0b8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2217c0b87fed2217c0b8 /* src/PsString.cpp */; };
FFFF2217c1207fed2217c120 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2217c1207fed2217c120 /* src/PsTempAllocator.cpp */; };
FFFF2217c1887fed2217c188 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2217c1887fed2217c188 /* src/PsUtilities.cpp */; };
FFFF2217c1f07fed2217c1f0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2217c1f07fed2217c1f0 /* src/unix/PsUnixAtomic.cpp */; };
FFFF2217c2587fed2217c258 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2217c2587fed2217c258 /* src/unix/PsUnixCpu.cpp */; };
FFFF2217c2c07fed2217c2c0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2217c2c07fed2217c2c0 /* src/unix/PsUnixFPU.cpp */; };
FFFF2217c3287fed2217c328 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2217c3287fed2217c328 /* src/unix/PsUnixMutex.cpp */; };
FFFF2217c3907fed2217c390 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2217c3907fed2217c390 /* src/unix/PsUnixPrintString.cpp */; };
FFFF2217c3f87fed2217c3f8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2217c3f87fed2217c3f8 /* src/unix/PsUnixSList.cpp */; };
FFFF2217c4607fed2217c460 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2217c4607fed2217c460 /* src/unix/PsUnixSocket.cpp */; };
FFFF2217c4c87fed2217c4c8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2217c4c87fed2217c4c8 /* src/unix/PsUnixSync.cpp */; };
FFFF2217c5307fed2217c530 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2217c5307fed2217c530 /* src/unix/PsUnixThread.cpp */; };
FFFF2217c5987fed2217c598 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2217c5987fed2217c598 /* src/unix/PsUnixTime.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD22914a507fed22914a50 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD221706007fed22170600 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; };
FFFD221706687fed22170668 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; };
FFFD221706d07fed221706d0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; };
FFFD221707387fed22170738 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; };
FFFD221707a07fed221707a0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; };
FFFD221708087fed22170808 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; };
FFFD221708707fed22170870 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; };
FFFD221708d87fed221708d8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; };
FFFD221709407fed22170940 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; };
FFFD221709a87fed221709a8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; };
FFFD22170a107fed22170a10 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; };
FFFD22170a787fed22170a78 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; };
FFFD22170ae07fed22170ae0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; };
FFFD22170b487fed22170b48 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; };
FFFD22170bb07fed22170bb0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; };
FFFD22170c187fed22170c18 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; };
FFFD22170c807fed22170c80 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; };
FFFD22170ce87fed22170ce8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; };
FFFD22170d507fed22170d50 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; };
FFFD22170db87fed22170db8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; };
FFFD22170e207fed22170e20 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; };
FFFD22170e887fed22170e88 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; };
FFFD22170ef07fed22170ef0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; };
FFFD22170f587fed22170f58 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; };
FFFD22170fc07fed22170fc0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; };
FFFD221710287fed22171028 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; };
FFFD221710907fed22171090 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; };
FFFD221710f87fed221710f8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; };
FFFD221711607fed22171160 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; };
FFFD2217ac007fed2217ac00 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; };
FFFD2217ac687fed2217ac68 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; };
FFFD2217acd07fed2217acd0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; };
FFFD2217ad387fed2217ad38 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; };
FFFD2217ada07fed2217ada0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; };
FFFD2217ae087fed2217ae08 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; };
FFFD2217ae707fed2217ae70 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; };
FFFD2217aed87fed2217aed8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; };
FFFD2217af407fed2217af40 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; };
FFFD2217afa87fed2217afa8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; };
FFFD2217b0107fed2217b010 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; };
FFFD2217b0787fed2217b078 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; };
FFFD2217b0e07fed2217b0e0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; };
FFFD2217b1487fed2217b148 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; };
FFFD2217b1b07fed2217b1b0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; };
FFFD2217b2187fed2217b218 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; };
FFFD2217b2807fed2217b280 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; };
FFFD2217b2e87fed2217b2e8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; };
FFFD2217b3507fed2217b350 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; };
FFFD2217b3b87fed2217b3b8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; };
FFFD2217b4207fed2217b420 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; };
FFFD2217b4887fed2217b488 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; };
FFFD2217b4f07fed2217b4f0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; };
FFFD2217b5587fed2217b558 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; };
FFFD2217b5c07fed2217b5c0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; };
FFFD2217b6287fed2217b628 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; };
FFFD2217b6907fed2217b690 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; };
FFFD2217b6f87fed2217b6f8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; };
FFFD2217b7607fed2217b760 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; };
FFFD2217b7c87fed2217b7c8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; };
FFFD2217b8307fed2217b830 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; };
FFFD2217b8987fed2217b898 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; };
FFFD2217b9007fed2217b900 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; };
FFFD2217b9687fed2217b968 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; };
FFFD2217b9d07fed2217b9d0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; };
FFFD2217ba387fed2217ba38 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; };
FFFD2217baa07fed2217baa0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; };
FFFD2217bb087fed2217bb08 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; };
FFFD2217bb707fed2217bb70 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; };
FFFD2217bbd87fed2217bbd8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; };
FFFD2217bc407fed2217bc40 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; };
FFFD2217bca87fed2217bca8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; };
FFFD2217bd107fed2217bd10 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; };
FFFD2217bd787fed2217bd78 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; };
FFFD2217bde07fed2217bde0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; };
FFFD2217be487fed2217be48 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; };
FFFD2217beb07fed2217beb0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; };
FFFD2217bf187fed2217bf18 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2217bf807fed2217bf80 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2217bfe87fed2217bfe8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2217c0507fed2217c050 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2217c0b87fed2217c0b8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2217c1207fed2217c120 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2217c1887fed2217c188 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2217c1f07fed2217c1f0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2217c2587fed2217c258 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2217c2c07fed2217c2c0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2217c3287fed2217c328 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2217c3907fed2217c390 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2217c3f87fed2217c3f8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2217c4607fed2217c460 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2217c4c87fed2217c4c8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2217c5307fed2217c530 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2217c5987fed2217c598 /* 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 */
FFF222914a507fed22914a50 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC22914a507fed22914a50 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF822914a507fed22914a50 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF2217bf187fed2217bf18,
FFFF2217bf807fed2217bf80,
FFFF2217bfe87fed2217bfe8,
FFFF2217c0507fed2217c050,
FFFF2217c0b87fed2217c0b8,
FFFF2217c1207fed2217c120,
FFFF2217c1887fed2217c188,
FFFF2217c1f07fed2217c1f0,
FFFF2217c2587fed2217c258,
FFFF2217c2c07fed2217c2c0,
FFFF2217c3287fed2217c328,
FFFF2217c3907fed2217c390,
FFFF2217c3f87fed2217c3f8,
FFFF2217c4607fed2217c460,
FFFF2217c4c87fed2217c4c8,
FFFF2217c5307fed2217c530,
FFFF2217c5987fed2217c598,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PxPvdSDK */
FFFF2300f5a87fed2300f5a8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2300f5a87fed2300f5a8 /* src/PxProfileEventImpl.cpp */; };
FFFF2300f6107fed2300f610 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2300f6107fed2300f610 /* src/PxPvd.cpp */; };
FFFF2300f6787fed2300f678 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2300f6787fed2300f678 /* src/PxPvdDataStream.cpp */; };
FFFF2300f6e07fed2300f6e0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2300f6e07fed2300f6e0 /* src/PxPvdDefaultFileTransport.cpp */; };
FFFF2300f7487fed2300f748 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2300f7487fed2300f748 /* src/PxPvdDefaultSocketTransport.cpp */; };
FFFF2300f7b07fed2300f7b0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2300f7b07fed2300f7b0 /* src/PxPvdImpl.cpp */; };
FFFF2300f8187fed2300f818 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2300f8187fed2300f818 /* src/PxPvdMemClient.cpp */; };
FFFF2300f8807fed2300f880 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2300f8807fed2300f880 /* src/PxPvdObjectModelMetaData.cpp */; };
FFFF2300f8e87fed2300f8e8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2300f8e87fed2300f8e8 /* src/PxPvdObjectRegistrar.cpp */; };
FFFF2300f9507fed2300f950 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2300f9507fed2300f950 /* src/PxPvdProfileZoneClient.cpp */; };
FFFF2300f9b87fed2300f9b8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2300f9b87fed2300f9b8 /* src/PxPvdUserRenderer.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD22e098707fed22e09870 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD22e0ce507fed22e0ce50 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; };
FFFD22e0ceb87fed22e0ceb8 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; };
FFFD2300f2007fed2300f200 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; };
FFFD2300f2687fed2300f268 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; };
FFFD2300f2d07fed2300f2d0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; };
FFFD2300f3387fed2300f338 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; };
FFFD2300f3a07fed2300f3a0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; };
FFFD2300f4087fed2300f408 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; };
FFFD2300f4707fed2300f470 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; };
FFFD2300f4d87fed2300f4d8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFD2300f5407fed2300f540 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; };
FFFD2300f5a87fed2300f5a8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2300f6107fed2300f610 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2300f6787fed2300f678 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2300f6e07fed2300f6e0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2300f7487fed2300f748 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2300f7b07fed2300f7b0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2300f8187fed2300f818 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2300f8807fed2300f880 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2300f8e87fed2300f8e8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2300f9507fed2300f950 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2300f9b87fed2300f9b8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; };
FFFD2300fa207fed2300fa20 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; };
FFFD2300fa887fed2300fa88 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; };
FFFD2300faf07fed2300faf0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; };
FFFD2300fb587fed2300fb58 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; };
FFFD2300fbc07fed2300fbc0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFD2300fc287fed2300fc28 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; };
FFFD2300fc907fed2300fc90 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFD2300fcf87fed2300fcf8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; };
FFFD2300fd607fed2300fd60 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; };
FFFD2300fdc87fed2300fdc8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; };
FFFD2300fe307fed2300fe30 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; };
FFFD2300fe987fed2300fe98 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; };
FFFD2300ff007fed2300ff00 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; };
FFFD2300ff687fed2300ff68 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; };
FFFD2300ffd07fed2300ffd0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; };
FFFD230100387fed23010038 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; };
FFFD230100a07fed230100a0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; };
FFFD230101087fed23010108 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; };
FFFD230101707fed23010170 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; };
FFFD230101d87fed230101d8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; };
FFFD230102407fed23010240 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; };
FFFD230102a87fed230102a8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFD230103107fed23010310 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFD230103787fed23010378 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; };
FFFD230103e07fed230103e0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; };
FFFD230104487fed23010448 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; };
FFFD230104b07fed230104b0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; };
FFFD230105187fed23010518 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; };
FFFD230105807fed23010580 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; };
FFFD230105e87fed230105e8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; };
FFFD230106507fed23010650 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; };
FFFD230106b87fed230106b8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; };
FFFD230107207fed23010720 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; };
FFFD230107887fed23010788 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; };
FFFD230107f07fed230107f0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; };
FFFD230108587fed23010858 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; };
FFFD230108c07fed230108c0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; };
FFFD230109287fed23010928 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; };
FFFD230109907fed23010990 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; };
FFFD230109f87fed230109f8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; };
FFFD23010a607fed23010a60 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; };
FFFD23010ac87fed23010ac8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; };
FFFD23010b307fed23010b30 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; };
FFFD23010b987fed23010b98 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; };
FFFD23010c007fed23010c00 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; };
FFFD23010c687fed23010c68 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; };
FFFD23010cd07fed23010cd0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; };
FFFD23010d387fed23010d38 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; };
FFFD23010da07fed23010da0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; };
FFFD23010e087fed23010e08 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; };
FFFD23010e707fed23010e70 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; };
FFFD23010ed87fed23010ed8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; };
FFFD23010f407fed23010f40 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; };
FFFD23010fa87fed23010fa8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; };
FFFD230110107fed23011010 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; };
FFFD230110787fed23011078 /* 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 */
FFF222e098707fed22e09870 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC22e098707fed22e09870 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF822e098707fed22e09870 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF2300f5a87fed2300f5a8,
FFFF2300f6107fed2300f610,
FFFF2300f6787fed2300f678,
FFFF2300f6e07fed2300f6e0,
FFFF2300f7487fed2300f748,
FFFF2300f7b07fed2300f7b0,
FFFF2300f8187fed2300f818,
FFFF2300f8807fed2300f880,
FFFF2300f8e87fed2300f8e8,
FFFF2300f9507fed2300f950,
FFFF2300f9b87fed2300f9b8,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
FFF422e0a6907fed22e0a690 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA22914a507fed22914a50 /* PxFoundation */;
targetProxy = FFF522914a507fed22914a50 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevel */
FFFF22e28e807fed22e28e80 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFD22e28e807fed22e28e80 /* px_globals.cpp */; };
FFFF22e2e4a07fed22e2e4a0 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD22e2e4a07fed22e2e4a0 /* PxsCCD.cpp */; };
FFFF22e2e5087fed22e2e508 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD22e2e5087fed22e2e508 /* PxsContactManager.cpp */; };
FFFF22e2e5707fed22e2e570 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD22e2e5707fed22e2e570 /* PxsContext.cpp */; };
FFFF22e2e5d87fed22e2e5d8 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD22e2e5d87fed22e2e5d8 /* PxsDefaultMemoryManager.cpp */; };
FFFF22e2e6407fed22e2e640 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD22e2e6407fed22e2e640 /* PxsIslandSim.cpp */; };
FFFF22e2e6a87fed22e2e6a8 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD22e2e6a87fed22e2e6a8 /* PxsMaterialCombiner.cpp */; };
FFFF22e2e7107fed22e2e710 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD22e2e7107fed22e2e710 /* PxsNphaseImplementationContext.cpp */; };
FFFF22e2e7787fed22e2e778 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD22e2e7787fed22e2e778 /* PxsSimpleIslandManager.cpp */; };
FFFF230142007fed23014200 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD230142007fed23014200 /* collision/PxcContact.cpp */; };
FFFF230142687fed23014268 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD230142687fed23014268 /* pipeline/PxcContactCache.cpp */; };
FFFF230142d07fed230142d0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD230142d07fed230142d0 /* pipeline/PxcContactMethodImpl.cpp */; };
FFFF230143387fed23014338 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD230143387fed23014338 /* pipeline/PxcMaterialHeightField.cpp */; };
FFFF230143a07fed230143a0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD230143a07fed230143a0 /* pipeline/PxcMaterialMesh.cpp */; };
FFFF230144087fed23014408 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD230144087fed23014408 /* pipeline/PxcMaterialMethodImpl.cpp */; };
FFFF230144707fed23014470 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD230144707fed23014470 /* pipeline/PxcMaterialShape.cpp */; };
FFFF230144d87fed230144d8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD230144d87fed230144d8 /* pipeline/PxcNpBatch.cpp */; };
FFFF230145407fed23014540 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD230145407fed23014540 /* pipeline/PxcNpCacheStreamPair.cpp */; };
FFFF230145a87fed230145a8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD230145a87fed230145a8 /* pipeline/PxcNpContactPrepShared.cpp */; };
FFFF230146107fed23014610 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD230146107fed23014610 /* pipeline/PxcNpMemBlockPool.cpp */; };
FFFF230146787fed23014678 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD230146787fed23014678 /* pipeline/PxcNpThreadContext.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD22e271907fed22e27190 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD22e28e807fed22e28e80 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; };
FFFD22e2baf07fed22e2baf0 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; };
FFFD22e2bb587fed22e2bb58 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; };
FFFD22e2bbc07fed22e2bbc0 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; };
FFFD22e2bc287fed22e2bc28 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; };
FFFD22e2bc907fed22e2bc90 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; };
FFFD22e2bcf87fed22e2bcf8 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; };
FFFD22e2bd607fed22e2bd60 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; };
FFFD22e2bdc87fed22e2bdc8 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; };
FFFD22e2be307fed22e2be30 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; };
FFFD22e2e4a07fed22e2e4a0 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; };
FFFD22e2e5087fed22e2e508 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; };
FFFD22e2e5707fed22e2e570 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; };
FFFD22e2e5d87fed22e2e5d8 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; };
FFFD22e2e6407fed22e2e640 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFD22e2e6a87fed22e2e6a8 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; };
FFFD22e2e7107fed22e2e710 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; };
FFFD22e2e7787fed22e2e778 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; };
FFFD23018e007fed23018e00 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; };
FFFD23018e687fed23018e68 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; };
FFFD23018ed07fed23018ed0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; };
FFFD23018f387fed23018f38 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; };
FFFD23018fa07fed23018fa0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; };
FFFD230190087fed23019008 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; };
FFFD230190707fed23019070 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; };
FFFD230190d87fed230190d8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; };
FFFD230191407fed23019140 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; };
FFFD230191a87fed230191a8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; };
FFFD230192107fed23019210 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; };
FFFD230192787fed23019278 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; };
FFFD230192e07fed230192e0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; };
FFFD230193487fed23019348 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; };
FFFD230193b07fed230193b0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; };
FFFD230194187fed23019418 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; };
FFFD230194807fed23019480 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; };
FFFD230194e87fed230194e8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; };
FFFD230195507fed23019550 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; };
FFFD230195b87fed230195b8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; };
FFFD230142007fed23014200 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; };
FFFD230142687fed23014268 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; };
FFFD230142d07fed230142d0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; };
FFFD230143387fed23014338 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; };
FFFD230143a07fed230143a0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFD230144087fed23014408 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; };
FFFD230144707fed23014470 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; };
FFFD230144d87fed230144d8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; };
FFFD230145407fed23014540 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; };
FFFD230145a87fed230145a8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; };
FFFD230146107fed23014610 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; };
FFFD230146787fed23014678 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; };
FFFD230180007fed23018000 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; };
FFFD230180687fed23018068 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; };
FFFD230180d07fed230180d0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; };
FFFD230181387fed23018138 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; };
FFFD230181a07fed230181a0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; };
FFFD230182087fed23018208 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; };
FFFD230182707fed23018270 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; };
FFFD230182d87fed230182d8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; };
FFFD230183407fed23018340 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; };
FFFD230183a87fed230183a8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; };
FFFD230184107fed23018410 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; };
FFFD230184787fed23018478 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; };
FFFD230184e07fed230184e0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; };
FFFD230185487fed23018548 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; };
FFFD230185b07fed230185b0 /* 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 */
FFF222e271907fed22e27190 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC22e271907fed22e27190 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF822e271907fed22e27190 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF22e28e807fed22e28e80,
FFFF22e2e4a07fed22e2e4a0,
FFFF22e2e5087fed22e2e508,
FFFF22e2e5707fed22e2e570,
FFFF22e2e5d87fed22e2e5d8,
FFFF22e2e6407fed22e2e640,
FFFF22e2e6a87fed22e2e6a8,
FFFF22e2e7107fed22e2e710,
FFFF22e2e7787fed22e2e778,
FFFF230142007fed23014200,
FFFF230142687fed23014268,
FFFF230142d07fed230142d0,
FFFF230143387fed23014338,
FFFF230143a07fed230143a0,
FFFF230144087fed23014408,
FFFF230144707fed23014470,
FFFF230144d87fed230144d8,
FFFF230145407fed23014540,
FFFF230145a87fed230145a8,
FFFF230146107fed23014610,
FFFF230146787fed23014678,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevelAABB */
FFFF221bc4707fed221bc470 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221bc4707fed221bc470 /* BpBroadPhase.cpp */; };
FFFF221bc4d87fed221bc4d8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221bc4d87fed221bc4d8 /* BpBroadPhaseMBP.cpp */; };
FFFF221bc5407fed221bc540 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221bc5407fed221bc540 /* BpBroadPhaseSap.cpp */; };
FFFF221bc5a87fed221bc5a8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221bc5a87fed221bc5a8 /* BpBroadPhaseSapAux.cpp */; };
FFFF221bc6107fed221bc610 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221bc6107fed221bc610 /* BpMBPTasks.cpp */; };
FFFF221bc6787fed221bc678 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221bc6787fed221bc678 /* BpSAPTasks.cpp */; };
FFFF221bc6e07fed221bc6e0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221bc6e07fed221bc6e0 /* BpSimpleAABBManager.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD22dbccc07fed22dbccc0 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD22dc5a907fed22dc5a90 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; };
FFFD22dc5af87fed22dc5af8 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; };
FFFD22dc5b607fed22dc5b60 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; };
FFFD22dc5bc87fed22dc5bc8 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; };
FFFD221bc2007fed221bc200 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; };
FFFD221bc2687fed221bc268 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; };
FFFD221bc2d07fed221bc2d0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; };
FFFD221bc3387fed221bc338 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; };
FFFD221bc3a07fed221bc3a0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; };
FFFD221bc4087fed221bc408 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; };
FFFD221bc4707fed221bc470 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221bc4d87fed221bc4d8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221bc5407fed221bc540 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221bc5a87fed221bc5a8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221bc6107fed221bc610 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221bc6787fed221bc678 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221bc6e07fed221bc6e0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
FFF222dbccc07fed22dbccc0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC22dbccc07fed22dbccc0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF822dbccc07fed22dbccc0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF221bc4707fed221bc470,
FFFF221bc4d87fed221bc4d8,
FFFF221bc5407fed221bc540,
FFFF221bc5a87fed221bc5a8,
FFFF221bc6107fed221bc610,
FFFF221bc6787fed221bc678,
FFFF221bc6e07fed221bc6e0,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevelDynamics */
FFFF230226007fed23022600 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD230226007fed23022600 /* DyArticulation.cpp */; };
FFFF230226687fed23022668 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD230226687fed23022668 /* DyArticulationContactPrep.cpp */; };
FFFF230226d07fed230226d0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD230226d07fed230226d0 /* DyArticulationContactPrepPF.cpp */; };
FFFF230227387fed23022738 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD230227387fed23022738 /* DyArticulationHelper.cpp */; };
FFFF230227a07fed230227a0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD230227a07fed230227a0 /* DyArticulationSIMD.cpp */; };
FFFF230228087fed23022808 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD230228087fed23022808 /* DyArticulationScalar.cpp */; };
FFFF230228707fed23022870 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD230228707fed23022870 /* DyConstraintPartition.cpp */; };
FFFF230228d87fed230228d8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD230228d87fed230228d8 /* DyConstraintSetup.cpp */; };
FFFF230229407fed23022940 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD230229407fed23022940 /* DyConstraintSetupBlock.cpp */; };
FFFF230229a87fed230229a8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD230229a87fed230229a8 /* DyContactPrep.cpp */; };
FFFF23022a107fed23022a10 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD23022a107fed23022a10 /* DyContactPrep4.cpp */; };
FFFF23022a787fed23022a78 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD23022a787fed23022a78 /* DyContactPrep4PF.cpp */; };
FFFF23022ae07fed23022ae0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD23022ae07fed23022ae0 /* DyContactPrepPF.cpp */; };
FFFF23022b487fed23022b48 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD23022b487fed23022b48 /* DyDynamics.cpp */; };
FFFF23022bb07fed23022bb0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD23022bb07fed23022bb0 /* DyFrictionCorrelation.cpp */; };
FFFF23022c187fed23022c18 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD23022c187fed23022c18 /* DyRigidBodyToSolverBody.cpp */; };
FFFF23022c807fed23022c80 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD23022c807fed23022c80 /* DySolverConstraints.cpp */; };
FFFF23022ce87fed23022ce8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD23022ce87fed23022ce8 /* DySolverConstraintsBlock.cpp */; };
FFFF23022d507fed23022d50 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD23022d507fed23022d50 /* DySolverControl.cpp */; };
FFFF23022db87fed23022db8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD23022db87fed23022db8 /* DySolverControlPF.cpp */; };
FFFF23022e207fed23022e20 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD23022e207fed23022e20 /* DySolverPFConstraints.cpp */; };
FFFF23022e887fed23022e88 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD23022e887fed23022e88 /* DySolverPFConstraintsBlock.cpp */; };
FFFF23022ef07fed23022ef0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD23022ef07fed23022ef0 /* DyThreadContext.cpp */; };
FFFF23022f587fed23022f58 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD23022f587fed23022f58 /* DyThresholdTable.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD22e511a07fed22e511a0 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD230226007fed23022600 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; };
FFFD230226687fed23022668 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; };
FFFD230226d07fed230226d0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; };
FFFD230227387fed23022738 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; };
FFFD230227a07fed230227a0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; };
FFFD230228087fed23022808 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; };
FFFD230228707fed23022870 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; };
FFFD230228d87fed230228d8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; };
FFFD230229407fed23022940 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; };
FFFD230229a87fed230229a8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; };
FFFD23022a107fed23022a10 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; };
FFFD23022a787fed23022a78 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; };
FFFD23022ae07fed23022ae0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; };
FFFD23022b487fed23022b48 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; };
FFFD23022bb07fed23022bb0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; };
FFFD23022c187fed23022c18 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; };
FFFD23022c807fed23022c80 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; };
FFFD23022ce87fed23022ce8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; };
FFFD23022d507fed23022d50 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; };
FFFD23022db87fed23022db8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; };
FFFD23022e207fed23022e20 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; };
FFFD23022e887fed23022e88 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; };
FFFD23022ef07fed23022ef0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; };
FFFD23022f587fed23022f58 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; };
FFFD22e574207fed22e57420 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; };
FFFD22e574887fed22e57488 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; };
FFFD22e574f07fed22e574f0 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; };
FFFD22e575587fed22e57558 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; };
FFFD22e575c07fed22e575c0 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; };
FFFD22e576287fed22e57628 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; };
FFFD230238007fed23023800 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; };
FFFD230238687fed23023868 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; };
FFFD230238d07fed230238d0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; };
FFFD230239387fed23023938 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; };
FFFD230239a07fed230239a0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; };
FFFD23023a087fed23023a08 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; };
FFFD23023a707fed23023a70 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; };
FFFD23023ad87fed23023ad8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; };
FFFD23023b407fed23023b40 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; };
FFFD23023ba87fed23023ba8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; };
FFFD23023c107fed23023c10 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; };
FFFD23023c787fed23023c78 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; };
FFFD23023ce07fed23023ce0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; };
FFFD23023d487fed23023d48 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; };
FFFD23023db07fed23023db0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; };
FFFD23023e187fed23023e18 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFD23023e807fed23023e80 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; };
FFFD23023ee87fed23023ee8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; };
FFFD23023f507fed23023f50 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; };
FFFD23023fb87fed23023fb8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; };
FFFD230240207fed23024020 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; };
FFFD230240887fed23024088 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; };
FFFD230240f07fed230240f0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; };
FFFD230241587fed23024158 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; };
FFFD230241c07fed230241c0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; };
FFFD230242287fed23024228 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; };
FFFD230242907fed23024290 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; };
FFFD230242f87fed230242f8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; };
FFFD230243607fed23024360 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; };
FFFD230243c87fed230243c8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; };
FFFD230244307fed23024430 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; };
FFFD230244987fed23024498 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; };
FFFD230245007fed23024500 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; };
FFFD230245687fed23024568 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; };
FFFD230245d07fed230245d0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; };
FFFD230246387fed23024638 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; };
FFFD230246a07fed230246a0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
FFF222e511a07fed22e511a0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC22e511a07fed22e511a0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF822e511a07fed22e511a0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF230226007fed23022600,
FFFF230226687fed23022668,
FFFF230226d07fed230226d0,
FFFF230227387fed23022738,
FFFF230227a07fed230227a0,
FFFF230228087fed23022808,
FFFF230228707fed23022870,
FFFF230228d87fed230228d8,
FFFF230229407fed23022940,
FFFF230229a87fed230229a8,
FFFF23022a107fed23022a10,
FFFF23022a787fed23022a78,
FFFF23022ae07fed23022ae0,
FFFF23022b487fed23022b48,
FFFF23022bb07fed23022bb0,
FFFF23022c187fed23022c18,
FFFF23022c807fed23022c80,
FFFF23022ce87fed23022ce8,
FFFF23022d507fed23022d50,
FFFF23022db87fed23022db8,
FFFF23022e207fed23022e20,
FFFF23022e887fed23022e88,
FFFF23022ef07fed23022ef0,
FFFF23022f587fed23022f58,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevelCloth */
FFFF218278907fed21827890 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD218278907fed21827890 /* Allocator.cpp */; };
FFFF218278f87fed218278f8 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD218278f87fed218278f8 /* Factory.cpp */; };
FFFF218279607fed21827960 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD218279607fed21827960 /* PhaseConfig.cpp */; };
FFFF218279c87fed218279c8 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD218279c87fed218279c8 /* SwCloth.cpp */; };
FFFF21827a307fed21827a30 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD21827a307fed21827a30 /* SwClothData.cpp */; };
FFFF21827a987fed21827a98 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD21827a987fed21827a98 /* SwCollision.cpp */; };
FFFF21827b007fed21827b00 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD21827b007fed21827b00 /* SwFabric.cpp */; };
FFFF21827b687fed21827b68 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD21827b687fed21827b68 /* SwFactory.cpp */; };
FFFF21827bd07fed21827bd0 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD21827bd07fed21827bd0 /* SwInterCollision.cpp */; };
FFFF21827c387fed21827c38 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD21827c387fed21827c38 /* SwSelfCollision.cpp */; };
FFFF21827ca07fed21827ca0 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD21827ca07fed21827ca0 /* SwSolver.cpp */; };
FFFF21827d087fed21827d08 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD21827d087fed21827d08 /* SwSolverKernel.cpp */; };
FFFF21827d707fed21827d70 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD21827d707fed21827d70 /* TripletScheduler.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD2167fad07fed2167fad0 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD216811a07fed216811a0 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; };
FFFD216812087fed21681208 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; };
FFFD216812707fed21681270 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; };
FFFD216812d87fed216812d8 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; };
FFFD216813407fed21681340 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; };
FFFD216813a87fed216813a8 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; };
FFFD216814107fed21681410 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; };
FFFD21826e007fed21826e00 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; };
FFFD21826e687fed21826e68 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; };
FFFD21826ed07fed21826ed0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; };
FFFD21826f387fed21826f38 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; };
FFFD21826fa07fed21826fa0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; };
FFFD218270087fed21827008 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; };
FFFD218270707fed21827070 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; };
FFFD218270d87fed218270d8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; };
FFFD218271407fed21827140 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; };
FFFD218271a87fed218271a8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; };
FFFD218272107fed21827210 /* Simd4f.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4f.h"; path = "../../LowLevelCloth/src/Simd4f.h"; sourceTree = SOURCE_ROOT; };
FFFD218272787fed21827278 /* Simd4i.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4i.h"; path = "../../LowLevelCloth/src/Simd4i.h"; sourceTree = SOURCE_ROOT; };
FFFD218272e07fed218272e0 /* SimdTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SimdTypes.h"; path = "../../LowLevelCloth/src/SimdTypes.h"; sourceTree = SOURCE_ROOT; };
FFFD218273487fed21827348 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; };
FFFD218273b07fed218273b0 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; };
FFFD218274187fed21827418 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; };
FFFD218274807fed21827480 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; };
FFFD218274e87fed218274e8 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; };
FFFD218275507fed21827550 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; };
FFFD218275b87fed218275b8 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; };
FFFD218276207fed21827620 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; };
FFFD218276887fed21827688 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; };
FFFD218276f07fed218276f0 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; };
FFFD218277587fed21827758 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; };
FFFD218277c07fed218277c0 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; };
FFFD218278287fed21827828 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; };
FFFD218278907fed21827890 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218278f87fed218278f8 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218279607fed21827960 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; };
FFFD218279c87fed218279c8 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21827a307fed21827a30 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21827a987fed21827a98 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21827b007fed21827b00 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21827b687fed21827b68 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21827bd07fed21827bd0 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21827c387fed21827c38 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21827ca07fed21827ca0 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21827d087fed21827d08 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; };
FFFD21827d707fed21827d70 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
FFF22167fad07fed2167fad0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC2167fad07fed2167fad0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF82167fad07fed2167fad0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF218278907fed21827890,
FFFF218278f87fed218278f8,
FFFF218279607fed21827960,
FFFF218279c87fed218279c8,
FFFF21827a307fed21827a30,
FFFF21827a987fed21827a98,
FFFF21827b007fed21827b00,
FFFF21827b687fed21827b68,
FFFF21827bd07fed21827bd0,
FFFF21827c387fed21827c38,
FFFF21827ca07fed21827ca0,
FFFF21827d087fed21827d08,
FFFF21827d707fed21827d70,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevelParticles */
FFFF221c6d587fed221c6d58 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221c6d587fed221c6d58 /* PtBatcher.cpp */; };
FFFF221c6dc07fed221c6dc0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221c6dc07fed221c6dc0 /* PtBodyTransformVault.cpp */; };
FFFF221c6e287fed221c6e28 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221c6e287fed221c6e28 /* PtCollision.cpp */; };
FFFF221c6e907fed221c6e90 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221c6e907fed221c6e90 /* PtCollisionBox.cpp */; };
FFFF221c6ef87fed221c6ef8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221c6ef87fed221c6ef8 /* PtCollisionCapsule.cpp */; };
FFFF221c6f607fed221c6f60 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221c6f607fed221c6f60 /* PtCollisionConvex.cpp */; };
FFFF221c6fc87fed221c6fc8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221c6fc87fed221c6fc8 /* PtCollisionMesh.cpp */; };
FFFF221c70307fed221c7030 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221c70307fed221c7030 /* PtCollisionPlane.cpp */; };
FFFF221c70987fed221c7098 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221c70987fed221c7098 /* PtCollisionSphere.cpp */; };
FFFF221c71007fed221c7100 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221c71007fed221c7100 /* PtContextCpu.cpp */; };
FFFF221c71687fed221c7168 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221c71687fed221c7168 /* PtDynamics.cpp */; };
FFFF221c71d07fed221c71d0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221c71d07fed221c71d0 /* PtParticleData.cpp */; };
FFFF221c72387fed221c7238 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221c72387fed221c7238 /* PtParticleShapeCpu.cpp */; };
FFFF221c72a07fed221c72a0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221c72a07fed221c72a0 /* PtParticleSystemSimCpu.cpp */; };
FFFF221c73087fed221c7308 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221c73087fed221c7308 /* PtSpatialHash.cpp */; };
FFFF221c73707fed221c7370 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD221c73707fed221c7370 /* PtSpatialLocalHash.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD22dd04c07fed22dd04c0 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD221bb2007fed221bb200 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; };
FFFD221bb2687fed221bb268 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; };
FFFD221bb2d07fed221bb2d0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; };
FFFD221bb3387fed221bb338 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; };
FFFD221bb3a07fed221bb3a0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; };
FFFD221bb4087fed221bb408 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; };
FFFD221bb4707fed221bb470 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; };
FFFD221bb4d87fed221bb4d8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; };
FFFD221bb5407fed221bb540 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; };
FFFD221bb5a87fed221bb5a8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; };
FFFD221c64007fed221c6400 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; };
FFFD221c64687fed221c6468 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; };
FFFD221c64d07fed221c64d0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; };
FFFD221c65387fed221c6538 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; };
FFFD221c65a07fed221c65a0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; };
FFFD221c66087fed221c6608 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; };
FFFD221c66707fed221c6670 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; };
FFFD221c66d87fed221c66d8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; };
FFFD221c67407fed221c6740 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; };
FFFD221c67a87fed221c67a8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; };
FFFD221c68107fed221c6810 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; };
FFFD221c68787fed221c6878 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; };
FFFD221c68e07fed221c68e0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; };
FFFD221c69487fed221c6948 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; };
FFFD221c69b07fed221c69b0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; };
FFFD221c6a187fed221c6a18 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; };
FFFD221c6a807fed221c6a80 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; };
FFFD221c6ae87fed221c6ae8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; };
FFFD221c6b507fed221c6b50 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; };
FFFD221c6bb87fed221c6bb8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; };
FFFD221c6c207fed221c6c20 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; };
FFFD221c6c887fed221c6c88 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; };
FFFD221c6cf07fed221c6cf0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; };
FFFD221c6d587fed221c6d58 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221c6dc07fed221c6dc0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221c6e287fed221c6e28 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221c6e907fed221c6e90 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221c6ef87fed221c6ef8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221c6f607fed221c6f60 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221c6fc87fed221c6fc8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221c70307fed221c7030 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221c70987fed221c7098 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221c71007fed221c7100 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221c71687fed221c7168 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221c71d07fed221c71d0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221c72387fed221c7238 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221c72a07fed221c72a0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221c73087fed221c7308 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; };
FFFD221c73707fed221c7370 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
FFF222dd04c07fed22dd04c0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC22dd04c07fed22dd04c0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF822dd04c07fed22dd04c0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF221c6d587fed221c6d58,
FFFF221c6dc07fed221c6dc0,
FFFF221c6e287fed221c6e28,
FFFF221c6e907fed221c6e90,
FFFF221c6ef87fed221c6ef8,
FFFF221c6f607fed221c6f60,
FFFF221c6fc87fed221c6fc8,
FFFF221c70307fed221c7030,
FFFF221c70987fed221c7098,
FFFF221c71007fed221c7100,
FFFF221c71687fed221c7168,
FFFF221c71d07fed221c71d0,
FFFF221c72387fed221c7238,
FFFF221c72a07fed221c72a0,
FFFF221c73087fed221c7308,
FFFF221c73707fed221c7370,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PxTask */
FFFF23a15c707fed23a15c70 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD23a15c707fed23a15c70 /* src/TaskManager.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD23a17ac07fed23a17ac0 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD23a159707fed23a15970 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
FFFD23a159d87fed23a159d8 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
FFFD23a15a407fed23a15a40 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; };
FFFD23a15aa87fed23a15aa8 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; };
FFFD23a15b107fed23a15b10 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; };
FFFD23a15b787fed23a15b78 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; };
FFFD23a15c707fed23a15c70 /* 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 */
FFF223a17ac07fed23a17ac0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC23a17ac07fed23a17ac0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF823a17ac07fed23a17ac0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF23a15c707fed23a15c70,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PsFastXml */
FFFF23d016a07fed23d016a0 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD23d016a07fed23d016a0 /* PsFastXml.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD23d010307fed23d01030 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD23d06ed07fed23d06ed0 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; };
FFFD23d016a07fed23d016a0 /* 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 */
FFF223d010307fed23d01030 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC23d010307fed23d01030 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF823d010307fed23d01030 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF23d016a07fed23d016a0,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXContainerItemProxy section */
FFF523d0c2e07fed23d0c2e0 /* PBXContainerItemProxy */ = {
containerPortal = FFF921719ec07fed21719ec0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA23d0c2e07fed23d0c2e0 /* PhysX */;
remoteInfo = "PhysX";
};
FFF523d191e07fed23d191e0 /* PBXContainerItemProxy */ = {
containerPortal = FFF921719ec07fed21719ec0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA23d191e07fed23d191e0 /* PhysXCharacterKinematic */;
remoteInfo = "PhysXCharacterKinematic";
};
FFF523d165107fed23d16510 /* PBXContainerItemProxy */ = {
containerPortal = FFF921719ec07fed21719ec0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA23d165107fed23d16510 /* PhysXVehicle */;
remoteInfo = "PhysXVehicle";
};
FFF523d27c207fed23d27c20 /* PBXContainerItemProxy */ = {
containerPortal = FFF921719ec07fed21719ec0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA23d27c207fed23d27c20 /* PhysXExtensions */;
remoteInfo = "PhysXExtensions";
};
FFF523d38e307fed23d38e30 /* PBXContainerItemProxy */ = {
containerPortal = FFF921719ec07fed21719ec0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA23d38e307fed23d38e30 /* SceneQuery */;
remoteInfo = "SceneQuery";
};
FFF523d3d4407fed23d3d440 /* PBXContainerItemProxy */ = {
containerPortal = FFF921719ec07fed21719ec0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA23d3d4407fed23d3d440 /* SimulationController */;
remoteInfo = "SimulationController";
};
FFF5238940707fed23894070 /* PBXContainerItemProxy */ = {
containerPortal = FFF921719ec07fed21719ec0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA238940707fed23894070 /* PhysXCooking */;
remoteInfo = "PhysXCooking";
};
FFF52292ec707fed2292ec70 /* PBXContainerItemProxy */ = {
containerPortal = FFF921719ec07fed21719ec0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA2292ec707fed2292ec70 /* PhysXCommon */;
remoteInfo = "PhysXCommon";
};
FFF522914a507fed22914a50 /* PBXContainerItemProxy */ = {
containerPortal = FFF921719ec07fed21719ec0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA22914a507fed22914a50 /* PxFoundation */;
remoteInfo = "PxFoundation";
};
FFF522e098707fed22e09870 /* PBXContainerItemProxy */ = {
containerPortal = FFF921719ec07fed21719ec0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA22e098707fed22e09870 /* PxPvdSDK */;
remoteInfo = "PxPvdSDK";
};
FFF522e271907fed22e27190 /* PBXContainerItemProxy */ = {
containerPortal = FFF921719ec07fed21719ec0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA22e271907fed22e27190 /* LowLevel */;
remoteInfo = "LowLevel";
};
FFF522dbccc07fed22dbccc0 /* PBXContainerItemProxy */ = {
containerPortal = FFF921719ec07fed21719ec0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA22dbccc07fed22dbccc0 /* LowLevelAABB */;
remoteInfo = "LowLevelAABB";
};
FFF522e511a07fed22e511a0 /* PBXContainerItemProxy */ = {
containerPortal = FFF921719ec07fed21719ec0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA22e511a07fed22e511a0 /* LowLevelDynamics */;
remoteInfo = "LowLevelDynamics";
};
FFF52167fad07fed2167fad0 /* PBXContainerItemProxy */ = {
containerPortal = FFF921719ec07fed21719ec0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA2167fad07fed2167fad0 /* LowLevelCloth */;
remoteInfo = "LowLevelCloth";
};
FFF522dd04c07fed22dd04c0 /* PBXContainerItemProxy */ = {
containerPortal = FFF921719ec07fed21719ec0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA22dd04c07fed22dd04c0 /* LowLevelParticles */;
remoteInfo = "LowLevelParticles";
};
FFF523a17ac07fed23a17ac0 /* PBXContainerItemProxy */ = {
containerPortal = FFF921719ec07fed21719ec0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA23a17ac07fed23a17ac0 /* PxTask */;
remoteInfo = "PxTask";
};
FFF523d010307fed23d01030 /* PBXContainerItemProxy */ = {
containerPortal = FFF921719ec07fed21719ec0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA23d010307fed23d01030 /* PsFastXml */;
remoteInfo = "PsFastXml";
};
/* End PBXContainerItemProxy section */
/* Begin PBXGroup section */
FFFB21719f287fed21719f28 /* PhysX */ = {
isa = PBXGroup;
children = (
FFF021719ec07fed21719ec0 /* Source */,
FFEE21719ec07fed21719ec0 /* Products */,
);
name = "PhysX";
sourceTree = "<group>";
};
FFF021719ec07fed21719ec0 /* Source */ = {
isa = PBXGroup;
children = (
FFFB23d0c2e07fed23d0c2e0,
FFFB23d191e07fed23d191e0,
FFFB23d165107fed23d16510,
FFFB23d27c207fed23d27c20,
FFFB23d38e307fed23d38e30,
FFFB23d3d4407fed23d3d440,
FFFB238940707fed23894070,
FFFB2292ec707fed2292ec70,
FFFB22914a507fed22914a50,
FFFB22e098707fed22e09870,
FFFB22e271907fed22e27190,
FFFB22dbccc07fed22dbccc0,
FFFB22e511a07fed22e511a0,
FFFB2167fad07fed2167fad0,
FFFB22dd04c07fed22dd04c0,
FFFB23a17ac07fed23a17ac0,
FFFB23d010307fed23d01030,
);
name = Source;
sourceTree = "<group>";
};
FFEE21719ec07fed21719ec0 /* Products */ = {
isa = PBXGroup;
children = (
FFFD23d0c2e07fed23d0c2e0,
FFFD23d191e07fed23d191e0,
FFFD23d165107fed23d16510,
FFFD23d27c207fed23d27c20,
FFFD23d38e307fed23d38e30,
FFFD23d3d4407fed23d3d440,
FFFD238940707fed23894070,
FFFD2292ec707fed2292ec70,
FFFD22914a507fed22914a50,
FFFD22e098707fed22e09870,
FFFD22e271907fed22e27190,
FFFD22dbccc07fed22dbccc0,
FFFD22e511a07fed22e511a0,
FFFD2167fad07fed2167fad0,
FFFD22dd04c07fed22dd04c0,
FFFD23a17ac07fed23a17ac0,
FFFD23d010307fed23d01030,
);
name = Products;
sourceTree = "<group>";
};
FFFB23d0c2e07fed23d0c2e0 /* PhysX */ = {
isa = PBXGroup;
children = (
FFFB23d188007fed23d18800 /* src */,
FFFB23d188287fed23d18828 /* include */,
FFFB23d188507fed23d18850 /* metadata */,
);
name = "PhysX";
sourceTree = "<group>";
};
FFFB23d188007fed23d18800 /* src */ = {
isa = PBXGroup;
children = (
FFFD240136007fed24013600 /* NpActor.h */,
FFFD240136687fed24013668 /* NpActorTemplate.h */,
FFFD240136d07fed240136d0 /* NpAggregate.h */,
FFFD240137387fed24013738 /* NpArticulation.h */,
FFFD240137a07fed240137a0 /* NpArticulationJoint.h */,
FFFD240138087fed24013808 /* NpArticulationLink.h */,
FFFD240138707fed24013870 /* NpBatchQuery.h */,
FFFD240138d87fed240138d8 /* NpCast.h */,
FFFD240139407fed24013940 /* NpConnector.h */,
FFFD240139a87fed240139a8 /* NpConstraint.h */,
FFFD24013a107fed24013a10 /* NpFactory.h */,
FFFD24013a787fed24013a78 /* NpMaterial.h */,
FFFD24013ae07fed24013ae0 /* NpMaterialManager.h */,
FFFD24013b487fed24013b48 /* NpPhysics.h */,
FFFD24013bb07fed24013bb0 /* NpPhysicsInsertionCallback.h */,
FFFD24013c187fed24013c18 /* NpPtrTableStorageManager.h */,
FFFD24013c807fed24013c80 /* NpPvdSceneQueryCollector.h */,
FFFD24013ce87fed24013ce8 /* NpQueryShared.h */,
FFFD24013d507fed24013d50 /* NpReadCheck.h */,
FFFD24013db87fed24013db8 /* NpRigidActorTemplate.h */,
FFFD24013e207fed24013e20 /* NpRigidActorTemplateInternal.h */,
FFFD24013e887fed24013e88 /* NpRigidBodyTemplate.h */,
FFFD24013ef07fed24013ef0 /* NpRigidDynamic.h */,
FFFD24013f587fed24013f58 /* NpRigidStatic.h */,
FFFD24013fc07fed24013fc0 /* NpScene.h */,
FFFD240140287fed24014028 /* NpSceneQueries.h */,
FFFD240140907fed24014090 /* NpShape.h */,
FFFD240140f87fed240140f8 /* NpShapeManager.h */,
FFFD240141607fed24014160 /* NpSpatialIndex.h */,
FFFD240141c87fed240141c8 /* NpVolumeCache.h */,
FFFD240142307fed24014230 /* NpWriteCheck.h */,
FFFD240142987fed24014298 /* PvdMetaDataBindingData.h */,
FFFD240143007fed24014300 /* PvdMetaDataPvdBinding.h */,
FFFD240143687fed24014368 /* PvdPhysicsClient.h */,
FFFD240143d07fed240143d0 /* PvdTypeNames.h */,
FFFD240144387fed24014438 /* NpActor.cpp */,
FFFD240144a07fed240144a0 /* NpAggregate.cpp */,
FFFD240145087fed24014508 /* NpArticulation.cpp */,
FFFD240145707fed24014570 /* NpArticulationJoint.cpp */,
FFFD240145d87fed240145d8 /* NpArticulationLink.cpp */,
FFFD240146407fed24014640 /* NpBatchQuery.cpp */,
FFFD240146a87fed240146a8 /* NpConstraint.cpp */,
FFFD240147107fed24014710 /* NpFactory.cpp */,
FFFD240147787fed24014778 /* NpMaterial.cpp */,
FFFD240147e07fed240147e0 /* NpMetaData.cpp */,
FFFD240148487fed24014848 /* NpPhysics.cpp */,
FFFD240148b07fed240148b0 /* NpPvdSceneQueryCollector.cpp */,
FFFD240149187fed24014918 /* NpReadCheck.cpp */,
FFFD240149807fed24014980 /* NpRigidDynamic.cpp */,
FFFD240149e87fed240149e8 /* NpRigidStatic.cpp */,
FFFD24014a507fed24014a50 /* NpScene.cpp */,
FFFD24014ab87fed24014ab8 /* NpSceneQueries.cpp */,
FFFD24014b207fed24014b20 /* NpSerializerAdapter.cpp */,
FFFD24014b887fed24014b88 /* NpShape.cpp */,
FFFD24014bf07fed24014bf0 /* NpShapeManager.cpp */,
FFFD24014c587fed24014c58 /* NpSpatialIndex.cpp */,
FFFD24014cc07fed24014cc0 /* NpVolumeCache.cpp */,
FFFD24014d287fed24014d28 /* NpWriteCheck.cpp */,
FFFD24014d907fed24014d90 /* PvdMetaDataPvdBinding.cpp */,
FFFD24014df87fed24014df8 /* PvdPhysicsClient.cpp */,
FFFD24014e607fed24014e60 /* particles/NpParticleBaseTemplate.h */,
FFFD24014ec87fed24014ec8 /* particles/NpParticleFluid.h */,
FFFD24014f307fed24014f30 /* particles/NpParticleFluidReadData.h */,
FFFD24014f987fed24014f98 /* particles/NpParticleSystem.h */,
FFFD240150007fed24015000 /* particles/NpParticleFluid.cpp */,
FFFD240150687fed24015068 /* particles/NpParticleSystem.cpp */,
FFFD240150d07fed240150d0 /* buffering/ScbActor.h */,
FFFD240151387fed24015138 /* buffering/ScbAggregate.h */,
FFFD240151a07fed240151a0 /* buffering/ScbArticulation.h */,
FFFD240152087fed24015208 /* buffering/ScbArticulationJoint.h */,
FFFD240152707fed24015270 /* buffering/ScbBase.h */,
FFFD240152d87fed240152d8 /* buffering/ScbBody.h */,
FFFD240153407fed24015340 /* buffering/ScbCloth.h */,
FFFD240153a87fed240153a8 /* buffering/ScbConstraint.h */,
FFFD240154107fed24015410 /* buffering/ScbDefs.h */,
FFFD240154787fed24015478 /* buffering/ScbNpDeps.h */,
FFFD240154e07fed240154e0 /* buffering/ScbParticleSystem.h */,
FFFD240155487fed24015548 /* buffering/ScbRigidObject.h */,
FFFD240155b07fed240155b0 /* buffering/ScbRigidStatic.h */,
FFFD240156187fed24015618 /* buffering/ScbScene.h */,
FFFD240156807fed24015680 /* buffering/ScbSceneBuffer.h */,
FFFD240156e87fed240156e8 /* buffering/ScbScenePvdClient.h */,
FFFD240157507fed24015750 /* buffering/ScbShape.h */,
FFFD240157b87fed240157b8 /* buffering/ScbType.h */,
FFFD240158207fed24015820 /* buffering/ScbActor.cpp */,
FFFD240158887fed24015888 /* buffering/ScbAggregate.cpp */,
FFFD240158f07fed240158f0 /* buffering/ScbBase.cpp */,
FFFD240159587fed24015958 /* buffering/ScbCloth.cpp */,
FFFD240159c07fed240159c0 /* buffering/ScbMetaData.cpp */,
FFFD24015a287fed24015a28 /* buffering/ScbParticleSystem.cpp */,
FFFD24015a907fed24015a90 /* buffering/ScbScene.cpp */,
FFFD24015af87fed24015af8 /* buffering/ScbScenePvdClient.cpp */,
FFFD24015b607fed24015b60 /* buffering/ScbShape.cpp */,
FFFD24015bc87fed24015bc8 /* cloth/NpCloth.h */,
FFFD24015c307fed24015c30 /* cloth/NpClothFabric.h */,
FFFD24015c987fed24015c98 /* cloth/NpClothParticleData.h */,
FFFD24015d007fed24015d00 /* cloth/NpCloth.cpp */,
FFFD24015d687fed24015d68 /* cloth/NpClothFabric.cpp */,
FFFD24015dd07fed24015dd0 /* cloth/NpClothParticleData.cpp */,
FFFD24015e387fed24015e38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFB23d188287fed23d18828 /* include */ = {
isa = PBXGroup;
children = (
FFFD240110007fed24011000 /* PxActor.h */,
FFFD240110687fed24011068 /* PxAggregate.h */,
FFFD240110d07fed240110d0 /* PxArticulation.h */,
FFFD240111387fed24011138 /* PxArticulationJoint.h */,
FFFD240111a07fed240111a0 /* PxArticulationLink.h */,
FFFD240112087fed24011208 /* PxBatchQuery.h */,
FFFD240112707fed24011270 /* PxBatchQueryDesc.h */,
FFFD240112d87fed240112d8 /* PxBroadPhase.h */,
FFFD240113407fed24011340 /* PxClient.h */,
FFFD240113a87fed240113a8 /* PxConstraint.h */,
FFFD240114107fed24011410 /* PxConstraintDesc.h */,
FFFD240114787fed24011478 /* PxContact.h */,
FFFD240114e07fed240114e0 /* PxContactModifyCallback.h */,
FFFD240115487fed24011548 /* PxDeletionListener.h */,
FFFD240115b07fed240115b0 /* PxFiltering.h */,
FFFD240116187fed24011618 /* PxForceMode.h */,
FFFD240116807fed24011680 /* PxImmediateMode.h */,
FFFD240116e87fed240116e8 /* PxLockedData.h */,
FFFD240117507fed24011750 /* PxMaterial.h */,
FFFD240117b87fed240117b8 /* PxPhysXConfig.h */,
FFFD240118207fed24011820 /* PxPhysics.h */,
FFFD240118887fed24011888 /* PxPhysicsAPI.h */,
FFFD240118f07fed240118f0 /* PxPhysicsSerialization.h */,
FFFD240119587fed24011958 /* PxPhysicsVersion.h */,
FFFD240119c07fed240119c0 /* PxPruningStructure.h */,
FFFD24011a287fed24011a28 /* PxQueryFiltering.h */,
FFFD24011a907fed24011a90 /* PxQueryReport.h */,
FFFD24011af87fed24011af8 /* PxRigidActor.h */,
FFFD24011b607fed24011b60 /* PxRigidBody.h */,
FFFD24011bc87fed24011bc8 /* PxRigidDynamic.h */,
FFFD24011c307fed24011c30 /* PxRigidStatic.h */,
FFFD24011c987fed24011c98 /* PxScene.h */,
FFFD24011d007fed24011d00 /* PxSceneDesc.h */,
FFFD24011d687fed24011d68 /* PxSceneLock.h */,
FFFD24011dd07fed24011dd0 /* PxShape.h */,
FFFD24011e387fed24011e38 /* PxSimulationEventCallback.h */,
FFFD24011ea07fed24011ea0 /* PxSimulationStatistics.h */,
FFFD24011f087fed24011f08 /* PxSpatialIndex.h */,
FFFD24011f707fed24011f70 /* PxVisualizationParameter.h */,
FFFD24011fd87fed24011fd8 /* PxVolumeCache.h */,
FFFD240120407fed24012040 /* particles/PxParticleBase.h */,
FFFD240120a87fed240120a8 /* particles/PxParticleBaseFlag.h */,
FFFD240121107fed24012110 /* particles/PxParticleCreationData.h */,
FFFD240121787fed24012178 /* particles/PxParticleFlag.h */,
FFFD240121e07fed240121e0 /* particles/PxParticleFluid.h */,
FFFD240122487fed24012248 /* particles/PxParticleFluidReadData.h */,
FFFD240122b07fed240122b0 /* particles/PxParticleReadData.h */,
FFFD240123187fed24012318 /* particles/PxParticleSystem.h */,
FFFD240123807fed24012380 /* pvd/PxPvdSceneClient.h */,
FFFD240123e87fed240123e8 /* cloth/PxCloth.h */,
FFFD240124507fed24012450 /* cloth/PxClothCollisionData.h */,
FFFD240124b87fed240124b8 /* cloth/PxClothFabric.h */,
FFFD240125207fed24012520 /* cloth/PxClothParticleData.h */,
FFFD240125887fed24012588 /* cloth/PxClothTypes.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB23d188507fed23d18850 /* metadata */ = {
isa = PBXGroup;
children = (
FFFD240100007fed24010000 /* core/include/PvdMetaDataDefineProperties.h */,
FFFD240100687fed24010068 /* core/include/PvdMetaDataExtensions.h */,
FFFD240100d07fed240100d0 /* core/include/PvdMetaDataPropertyVisitor.h */,
FFFD240101387fed24010138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */,
FFFD240101a07fed240101a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */,
FFFD240102087fed24010208 /* core/include/PxMetaDataCompare.h */,
FFFD240102707fed24010270 /* core/include/PxMetaDataCppPrefix.h */,
FFFD240102d87fed240102d8 /* core/include/PxMetaDataObjects.h */,
FFFD240103407fed24010340 /* core/include/RepXMetaDataPropertyVisitor.h */,
FFFD240103a87fed240103a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */,
FFFD240104107fed24010410 /* core/src/PxMetaDataObjects.cpp */,
);
name = "metadata";
sourceTree = SOURCE_ROOT;
};
FFFB23d191e07fed23d191e0 /* PhysXCharacterKinematic */ = {
isa = PBXGroup;
children = (
FFFB23d1a9407fed23d1a940 /* include */,
FFFB23d1a9687fed23d1a968 /* src */,
);
name = "PhysXCharacterKinematic";
sourceTree = "<group>";
};
FFFB23d1a9407fed23d1a940 /* include */ = {
isa = PBXGroup;
children = (
FFFD23d1c2007fed23d1c200 /* PxBoxController.h */,
FFFD23d1c2687fed23d1c268 /* PxCapsuleController.h */,
FFFD23d1c2d07fed23d1c2d0 /* PxCharacter.h */,
FFFD23d1c3387fed23d1c338 /* PxController.h */,
FFFD23d1c3a07fed23d1c3a0 /* PxControllerBehavior.h */,
FFFD23d1c4087fed23d1c408 /* PxControllerManager.h */,
FFFD23d1c4707fed23d1c470 /* PxControllerObstacles.h */,
FFFD23d1c4d87fed23d1c4d8 /* PxExtended.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB23d1a9687fed23d1a968 /* src */ = {
isa = PBXGroup;
children = (
FFFD2400d6007fed2400d600 /* CctBoxController.h */,
FFFD2400d6687fed2400d668 /* CctCapsuleController.h */,
FFFD2400d6d07fed2400d6d0 /* CctCharacterController.h */,
FFFD2400d7387fed2400d738 /* CctCharacterControllerManager.h */,
FFFD2400d7a07fed2400d7a0 /* CctController.h */,
FFFD2400d8087fed2400d808 /* CctInternalStructs.h */,
FFFD2400d8707fed2400d870 /* CctObstacleContext.h */,
FFFD2400d8d87fed2400d8d8 /* CctSweptBox.h */,
FFFD2400d9407fed2400d940 /* CctSweptCapsule.h */,
FFFD2400d9a87fed2400d9a8 /* CctSweptVolume.h */,
FFFD2400da107fed2400da10 /* CctUtils.h */,
FFFD2400da787fed2400da78 /* CctBoxController.cpp */,
FFFD2400dae07fed2400dae0 /* CctCapsuleController.cpp */,
FFFD2400db487fed2400db48 /* CctCharacterController.cpp */,
FFFD2400dbb07fed2400dbb0 /* CctCharacterControllerCallbacks.cpp */,
FFFD2400dc187fed2400dc18 /* CctCharacterControllerManager.cpp */,
FFFD2400dc807fed2400dc80 /* CctController.cpp */,
FFFD2400dce87fed2400dce8 /* CctObstacleContext.cpp */,
FFFD2400dd507fed2400dd50 /* CctSweptBox.cpp */,
FFFD2400ddb87fed2400ddb8 /* CctSweptCapsule.cpp */,
FFFD2400de207fed2400de20 /* CctSweptVolume.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFB23d165107fed23d16510 /* PhysXVehicle */ = {
isa = PBXGroup;
children = (
FFFB23d26d607fed23d26d60 /* include */,
FFFB23d26d887fed23d26d88 /* src */,
FFFB23d26db07fed23d26db0 /* metadata */,
);
name = "PhysXVehicle";
sourceTree = "<group>";
};
FFFB23d26d607fed23d26d60 /* include */ = {
isa = PBXGroup;
children = (
FFFD2400f4007fed2400f400 /* PxVehicleComponents.h */,
FFFD2400f4687fed2400f468 /* PxVehicleDrive.h */,
FFFD2400f4d07fed2400f4d0 /* PxVehicleDrive4W.h */,
FFFD2400f5387fed2400f538 /* PxVehicleDriveNW.h */,
FFFD2400f5a07fed2400f5a0 /* PxVehicleDriveTank.h */,
FFFD2400f6087fed2400f608 /* PxVehicleNoDrive.h */,
FFFD2400f6707fed2400f670 /* PxVehicleSDK.h */,
FFFD2400f6d87fed2400f6d8 /* PxVehicleShaders.h */,
FFFD2400f7407fed2400f740 /* PxVehicleTireFriction.h */,
FFFD2400f7a87fed2400f7a8 /* PxVehicleUpdate.h */,
FFFD2400f8107fed2400f810 /* PxVehicleUtil.h */,
FFFD2400f8787fed2400f878 /* PxVehicleUtilControl.h */,
FFFD2400f8e07fed2400f8e0 /* PxVehicleUtilSetup.h */,
FFFD2400f9487fed2400f948 /* PxVehicleUtilTelemetry.h */,
FFFD2400f9b07fed2400f9b0 /* PxVehicleWheels.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB23d26d887fed23d26d88 /* src */ = {
isa = PBXGroup;
children = (
FFFD240186007fed24018600 /* PxVehicleDefaults.h */,
FFFD240186687fed24018668 /* PxVehicleLinearMath.h */,
FFFD240186d07fed240186d0 /* PxVehicleSerialization.h */,
FFFD240187387fed24018738 /* PxVehicleSuspLimitConstraintShader.h */,
FFFD240187a07fed240187a0 /* PxVehicleSuspWheelTire4.h */,
FFFD240188087fed24018808 /* PxVehicleComponents.cpp */,
FFFD240188707fed24018870 /* PxVehicleDrive.cpp */,
FFFD240188d87fed240188d8 /* PxVehicleDrive4W.cpp */,
FFFD240189407fed24018940 /* PxVehicleDriveNW.cpp */,
FFFD240189a87fed240189a8 /* PxVehicleDriveTank.cpp */,
FFFD24018a107fed24018a10 /* PxVehicleMetaData.cpp */,
FFFD24018a787fed24018a78 /* PxVehicleNoDrive.cpp */,
FFFD24018ae07fed24018ae0 /* PxVehicleSDK.cpp */,
FFFD24018b487fed24018b48 /* PxVehicleSerialization.cpp */,
FFFD24018bb07fed24018bb0 /* PxVehicleSuspWheelTire4.cpp */,
FFFD24018c187fed24018c18 /* PxVehicleTireFriction.cpp */,
FFFD24018c807fed24018c80 /* PxVehicleUpdate.cpp */,
FFFD24018ce87fed24018ce8 /* PxVehicleWheels.cpp */,
FFFD24018d507fed24018d50 /* VehicleUtilControl.cpp */,
FFFD24018db87fed24018db8 /* VehicleUtilSetup.cpp */,
FFFD24018e207fed24018e20 /* VehicleUtilTelemetry.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFB23d26db07fed23d26db0 /* metadata */ = {
isa = PBXGroup;
children = (
FFFD23d280107fed23d28010 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */,
FFFD23d280787fed23d28078 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */,
FFFD23d280e07fed23d280e0 /* include/PxVehicleMetaDataObjects.h */,
FFFD23d281487fed23d28148 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */,
FFFD23d281b07fed23d281b0 /* src/PxVehicleMetaDataObjects.cpp */,
);
name = "metadata";
sourceTree = SOURCE_ROOT;
};
FFFB23d27c207fed23d27c20 /* PhysXExtensions */ = {
isa = PBXGroup;
children = (
FFFB23d2f3007fed23d2f300 /* include */,
FFFB23d2f3287fed23d2f328 /* src */,
FFFB23d2f3507fed23d2f350 /* serialization */,
FFFB23d2f3787fed23d2f378 /* metadata */,
);
name = "PhysXExtensions";
sourceTree = "<group>";
};
FFFB23d2f3007fed23d2f300 /* include */ = {
isa = PBXGroup;
children = (
FFFD2401be007fed2401be00 /* PxBinaryConverter.h */,
FFFD2401be687fed2401be68 /* PxBroadPhaseExt.h */,
FFFD2401bed07fed2401bed0 /* PxClothFabricCooker.h */,
FFFD2401bf387fed2401bf38 /* PxClothMeshDesc.h */,
FFFD2401bfa07fed2401bfa0 /* PxClothMeshQuadifier.h */,
FFFD2401c0087fed2401c008 /* PxClothTetherCooker.h */,
FFFD2401c0707fed2401c070 /* PxCollectionExt.h */,
FFFD2401c0d87fed2401c0d8 /* PxConstraintExt.h */,
FFFD2401c1407fed2401c140 /* PxConvexMeshExt.h */,
FFFD2401c1a87fed2401c1a8 /* PxD6Joint.h */,
FFFD2401c2107fed2401c210 /* PxDefaultAllocator.h */,
FFFD2401c2787fed2401c278 /* PxDefaultCpuDispatcher.h */,
FFFD2401c2e07fed2401c2e0 /* PxDefaultErrorCallback.h */,
FFFD2401c3487fed2401c348 /* PxDefaultSimulationFilterShader.h */,
FFFD2401c3b07fed2401c3b0 /* PxDefaultStreams.h */,
FFFD2401c4187fed2401c418 /* PxDistanceJoint.h */,
FFFD2401c4807fed2401c480 /* PxExtensionsAPI.h */,
FFFD2401c4e87fed2401c4e8 /* PxFixedJoint.h */,
FFFD2401c5507fed2401c550 /* PxJoint.h */,
FFFD2401c5b87fed2401c5b8 /* PxJointLimit.h */,
FFFD2401c6207fed2401c620 /* PxMassProperties.h */,
FFFD2401c6887fed2401c688 /* PxParticleExt.h */,
FFFD2401c6f07fed2401c6f0 /* PxPrismaticJoint.h */,
FFFD2401c7587fed2401c758 /* PxRaycastCCD.h */,
FFFD2401c7c07fed2401c7c0 /* PxRepXSerializer.h */,
FFFD2401c8287fed2401c828 /* PxRepXSimpleType.h */,
FFFD2401c8907fed2401c890 /* PxRevoluteJoint.h */,
FFFD2401c8f87fed2401c8f8 /* PxRigidActorExt.h */,
FFFD2401c9607fed2401c960 /* PxRigidBodyExt.h */,
FFFD2401c9c87fed2401c9c8 /* PxSceneQueryExt.h */,
FFFD2401ca307fed2401ca30 /* PxSerialization.h */,
FFFD2401ca987fed2401ca98 /* PxShapeExt.h */,
FFFD2401cb007fed2401cb00 /* PxSimpleFactory.h */,
FFFD2401cb687fed2401cb68 /* PxSmoothNormals.h */,
FFFD2401cbd07fed2401cbd0 /* PxSphericalJoint.h */,
FFFD2401cc387fed2401cc38 /* PxStringTableExt.h */,
FFFD2401cca07fed2401cca0 /* PxTriangleMeshExt.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB23d2f3287fed23d2f328 /* src */ = {
isa = PBXGroup;
children = (
FFFD2401a8007fed2401a800 /* ExtConstraintHelper.h */,
FFFD2401a8687fed2401a868 /* ExtCpuWorkerThread.h */,
FFFD2401a8d07fed2401a8d0 /* ExtD6Joint.h */,
FFFD2401a9387fed2401a938 /* ExtDefaultCpuDispatcher.h */,
FFFD2401a9a07fed2401a9a0 /* ExtDistanceJoint.h */,
FFFD2401aa087fed2401aa08 /* ExtFixedJoint.h */,
FFFD2401aa707fed2401aa70 /* ExtInertiaTensor.h */,
FFFD2401aad87fed2401aad8 /* ExtJoint.h */,
FFFD2401ab407fed2401ab40 /* ExtJointMetaDataExtensions.h */,
FFFD2401aba87fed2401aba8 /* ExtPlatform.h */,
FFFD2401ac107fed2401ac10 /* ExtPrismaticJoint.h */,
FFFD2401ac787fed2401ac78 /* ExtPvd.h */,
FFFD2401ace07fed2401ace0 /* ExtRevoluteJoint.h */,
FFFD2401ad487fed2401ad48 /* ExtSerialization.h */,
FFFD2401adb07fed2401adb0 /* ExtSharedQueueEntryPool.h */,
FFFD2401ae187fed2401ae18 /* ExtSphericalJoint.h */,
FFFD2401ae807fed2401ae80 /* ExtTaskQueueHelper.h */,
FFFD2401aee87fed2401aee8 /* ExtBroadPhase.cpp */,
FFFD2401af507fed2401af50 /* ExtClothFabricCooker.cpp */,
FFFD2401afb87fed2401afb8 /* ExtClothGeodesicTetherCooker.cpp */,
FFFD2401b0207fed2401b020 /* ExtClothMeshQuadifier.cpp */,
FFFD2401b0887fed2401b088 /* ExtClothSimpleTetherCooker.cpp */,
FFFD2401b0f07fed2401b0f0 /* ExtCollection.cpp */,
FFFD2401b1587fed2401b158 /* ExtConvexMeshExt.cpp */,
FFFD2401b1c07fed2401b1c0 /* ExtCpuWorkerThread.cpp */,
FFFD2401b2287fed2401b228 /* ExtD6Joint.cpp */,
FFFD2401b2907fed2401b290 /* ExtD6JointSolverPrep.cpp */,
FFFD2401b2f87fed2401b2f8 /* ExtDefaultCpuDispatcher.cpp */,
FFFD2401b3607fed2401b360 /* ExtDefaultErrorCallback.cpp */,
FFFD2401b3c87fed2401b3c8 /* ExtDefaultSimulationFilterShader.cpp */,
FFFD2401b4307fed2401b430 /* ExtDefaultStreams.cpp */,
FFFD2401b4987fed2401b498 /* ExtDistanceJoint.cpp */,
FFFD2401b5007fed2401b500 /* ExtDistanceJointSolverPrep.cpp */,
FFFD2401b5687fed2401b568 /* ExtExtensions.cpp */,
FFFD2401b5d07fed2401b5d0 /* ExtFixedJoint.cpp */,
FFFD2401b6387fed2401b638 /* ExtFixedJointSolverPrep.cpp */,
FFFD2401b6a07fed2401b6a0 /* ExtJoint.cpp */,
FFFD2401b7087fed2401b708 /* ExtMetaData.cpp */,
FFFD2401b7707fed2401b770 /* ExtParticleExt.cpp */,
FFFD2401b7d87fed2401b7d8 /* ExtPrismaticJoint.cpp */,
FFFD2401b8407fed2401b840 /* ExtPrismaticJointSolverPrep.cpp */,
FFFD2401b8a87fed2401b8a8 /* ExtPvd.cpp */,
FFFD2401b9107fed2401b910 /* ExtPxStringTable.cpp */,
FFFD2401b9787fed2401b978 /* ExtRaycastCCD.cpp */,
FFFD2401b9e07fed2401b9e0 /* ExtRevoluteJoint.cpp */,
FFFD2401ba487fed2401ba48 /* ExtRevoluteJointSolverPrep.cpp */,
FFFD2401bab07fed2401bab0 /* ExtRigidBodyExt.cpp */,
FFFD2401bb187fed2401bb18 /* ExtSceneQueryExt.cpp */,
FFFD2401bb807fed2401bb80 /* ExtSimpleFactory.cpp */,
FFFD2401bbe87fed2401bbe8 /* ExtSmoothNormals.cpp */,
FFFD2401bc507fed2401bc50 /* ExtSphericalJoint.cpp */,
FFFD2401bcb87fed2401bcb8 /* ExtSphericalJointSolverPrep.cpp */,
FFFD2401bd207fed2401bd20 /* ExtTriangleMeshExt.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFB23d2f3507fed23d2f350 /* serialization */ = {
isa = PBXGroup;
children = (
FFFD2401f2007fed2401f200 /* SnSerialUtils.h */,
FFFD2401f2687fed2401f268 /* SnSerializationRegistry.h */,
FFFD2401f2d07fed2401f2d0 /* SnSerialUtils.cpp */,
FFFD2401f3387fed2401f338 /* SnSerialization.cpp */,
FFFD2401f3a07fed2401f3a0 /* SnSerializationRegistry.cpp */,
FFFD2401f4087fed2401f408 /* Binary/SnConvX.h */,
FFFD2401f4707fed2401f470 /* Binary/SnConvX_Align.h */,
FFFD2401f4d87fed2401f4d8 /* Binary/SnConvX_Common.h */,
FFFD2401f5407fed2401f540 /* Binary/SnConvX_MetaData.h */,
FFFD2401f5a87fed2401f5a8 /* Binary/SnConvX_Output.h */,
FFFD2401f6107fed2401f610 /* Binary/SnConvX_Union.h */,
FFFD2401f6787fed2401f678 /* Binary/SnSerializationContext.h */,
FFFD2401f6e07fed2401f6e0 /* Binary/SnBinaryDeserialization.cpp */,
FFFD2401f7487fed2401f748 /* Binary/SnBinarySerialization.cpp */,
FFFD2401f7b07fed2401f7b0 /* Binary/SnConvX.cpp */,
FFFD2401f8187fed2401f818 /* Binary/SnConvX_Align.cpp */,
FFFD2401f8807fed2401f880 /* Binary/SnConvX_Convert.cpp */,
FFFD2401f8e87fed2401f8e8 /* Binary/SnConvX_Error.cpp */,
FFFD2401f9507fed2401f950 /* Binary/SnConvX_MetaData.cpp */,
FFFD2401f9b87fed2401f9b8 /* Binary/SnConvX_Output.cpp */,
FFFD2401fa207fed2401fa20 /* Binary/SnConvX_Union.cpp */,
FFFD2401fa887fed2401fa88 /* Binary/SnSerializationContext.cpp */,
FFFD2401faf07fed2401faf0 /* Xml/SnJointRepXSerializer.h */,
FFFD2401fb587fed2401fb58 /* Xml/SnPxStreamOperators.h */,
FFFD2401fbc07fed2401fbc0 /* Xml/SnRepX1_0Defaults.h */,
FFFD2401fc287fed2401fc28 /* Xml/SnRepX3_1Defaults.h */,
FFFD2401fc907fed2401fc90 /* Xml/SnRepX3_2Defaults.h */,
FFFD2401fcf87fed2401fcf8 /* Xml/SnRepXCollection.h */,
FFFD2401fd607fed2401fd60 /* Xml/SnRepXCoreSerializer.h */,
FFFD2401fdc87fed2401fdc8 /* Xml/SnRepXSerializerImpl.h */,
FFFD2401fe307fed2401fe30 /* Xml/SnRepXUpgrader.h */,
FFFD2401fe987fed2401fe98 /* Xml/SnSimpleXmlWriter.h */,
FFFD2401ff007fed2401ff00 /* Xml/SnXmlDeserializer.h */,
FFFD2401ff687fed2401ff68 /* Xml/SnXmlImpl.h */,
FFFD2401ffd07fed2401ffd0 /* Xml/SnXmlMemoryAllocator.h */,
FFFD240200387fed24020038 /* Xml/SnXmlMemoryPool.h */,
FFFD240200a07fed240200a0 /* Xml/SnXmlMemoryPoolStreams.h */,
FFFD240201087fed24020108 /* Xml/SnXmlReader.h */,
FFFD240201707fed24020170 /* Xml/SnXmlSerializer.h */,
FFFD240201d87fed240201d8 /* Xml/SnXmlSimpleXmlWriter.h */,
FFFD240202407fed24020240 /* Xml/SnXmlStringToType.h */,
FFFD240202a87fed240202a8 /* Xml/SnXmlVisitorReader.h */,
FFFD240203107fed24020310 /* Xml/SnXmlVisitorWriter.h */,
FFFD240203787fed24020378 /* Xml/SnXmlWriter.h */,
FFFD240203e07fed240203e0 /* Xml/SnJointRepXSerializer.cpp */,
FFFD240204487fed24020448 /* Xml/SnRepXCoreSerializer.cpp */,
FFFD240204b07fed240204b0 /* Xml/SnRepXUpgrader.cpp */,
FFFD240205187fed24020518 /* Xml/SnXmlSerialization.cpp */,
FFFD240205807fed24020580 /* File/SnFile.h */,
);
name = "serialization";
sourceTree = SOURCE_ROOT;
};
FFFB23d2f3787fed23d2f378 /* metadata */ = {
isa = PBXGroup;
children = (
FFFD2401ce007fed2401ce00 /* core/include/PvdMetaDataDefineProperties.h */,
FFFD2401ce687fed2401ce68 /* core/include/PvdMetaDataExtensions.h */,
FFFD2401ced07fed2401ced0 /* core/include/PvdMetaDataPropertyVisitor.h */,
FFFD2401cf387fed2401cf38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */,
FFFD2401cfa07fed2401cfa0 /* core/include/PxAutoGeneratedMetaDataObjects.h */,
FFFD2401d0087fed2401d008 /* core/include/PxMetaDataCompare.h */,
FFFD2401d0707fed2401d070 /* core/include/PxMetaDataCppPrefix.h */,
FFFD2401d0d87fed2401d0d8 /* core/include/PxMetaDataObjects.h */,
FFFD2401d1407fed2401d140 /* core/include/RepXMetaDataPropertyVisitor.h */,
FFFD2401d1a87fed2401d1a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */,
FFFD2401d2107fed2401d210 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */,
FFFD2401d2787fed2401d278 /* extensions/include/PxExtensionMetaDataObjects.h */,
FFFD2401d2e07fed2401d2e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */,
);
name = "metadata";
sourceTree = SOURCE_ROOT;
};
FFFB23d38e307fed23d38e30 /* SceneQuery */ = {
isa = PBXGroup;
children = (
FFFB23d3a9707fed23d3a970 /* src */,
FFFB23d3a9987fed23d3a998 /* include */,
);
name = "SceneQuery";
sourceTree = "<group>";
};
FFFB23d3a9707fed23d3a970 /* src */ = {
isa = PBXGroup;
children = (
FFFD240232007fed24023200 /* SqAABBPruner.cpp */,
FFFD240232687fed24023268 /* SqAABBTree.cpp */,
FFFD240232d07fed240232d0 /* SqAABBTreeBuild.cpp */,
FFFD240233387fed24023338 /* SqAABBTreeUpdateMap.cpp */,
FFFD240233a07fed240233a0 /* SqBounds.cpp */,
FFFD240234087fed24023408 /* SqBucketPruner.cpp */,
FFFD240234707fed24023470 /* SqExtendedBucketPruner.cpp */,
FFFD240234d87fed240234d8 /* SqIncrementalAABBPrunerCore.cpp */,
FFFD240235407fed24023540 /* SqIncrementalAABBTree.cpp */,
FFFD240235a87fed240235a8 /* SqMetaData.cpp */,
FFFD240236107fed24023610 /* SqPruningPool.cpp */,
FFFD240236787fed24023678 /* SqPruningStructure.cpp */,
FFFD240236e07fed240236e0 /* SqSceneQueryManager.cpp */,
FFFD240237487fed24023748 /* SqAABBPruner.h */,
FFFD240237b07fed240237b0 /* SqAABBTree.h */,
FFFD240238187fed24023818 /* SqAABBTreeBuild.h */,
FFFD240238807fed24023880 /* SqAABBTreeQuery.h */,
FFFD240238e87fed240238e8 /* SqAABBTreeUpdateMap.h */,
FFFD240239507fed24023950 /* SqBounds.h */,
FFFD240239b87fed240239b8 /* SqBucketPruner.h */,
FFFD24023a207fed24023a20 /* SqExtendedBucketPruner.h */,
FFFD24023a887fed24023a88 /* SqIncrementalAABBPrunerCore.h */,
FFFD24023af07fed24023af0 /* SqIncrementalAABBTree.h */,
FFFD24023b587fed24023b58 /* SqPrunerTestsSIMD.h */,
FFFD24023bc07fed24023bc0 /* SqPruningPool.h */,
FFFD24023c287fed24023c28 /* SqTypedef.h */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFB23d3a9987fed23d3a998 /* include */ = {
isa = PBXGroup;
children = (
FFFD23d3d1807fed23d3d180 /* SqPruner.h */,
FFFD23d3d1e87fed23d3d1e8 /* SqPrunerMergeData.h */,
FFFD23d3d2507fed23d3d250 /* SqPruningStructure.h */,
FFFD23d3d2b87fed23d3d2b8 /* SqSceneQueryManager.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB23d3d4407fed23d3d440 /* SimulationController */ = {
isa = PBXGroup;
children = (
FFFB23d3ffb07fed23d3ffb0 /* include */,
FFFB23d3ffd87fed23d3ffd8 /* src */,
);
name = "SimulationController";
sourceTree = "<group>";
};
FFFB23d3ffb07fed23d3ffb0 /* include */ = {
isa = PBXGroup;
children = (
FFFD24025e007fed24025e00 /* ScActorCore.h */,
FFFD24025e687fed24025e68 /* ScArticulationCore.h */,
FFFD24025ed07fed24025ed0 /* ScArticulationJointCore.h */,
FFFD24025f387fed24025f38 /* ScBodyCore.h */,
FFFD24025fa07fed24025fa0 /* ScClothCore.h */,
FFFD240260087fed24026008 /* ScClothFabricCore.h */,
FFFD240260707fed24026070 /* ScConstraintCore.h */,
FFFD240260d87fed240260d8 /* ScIterators.h */,
FFFD240261407fed24026140 /* ScMaterialCore.h */,
FFFD240261a87fed240261a8 /* ScParticleSystemCore.h */,
FFFD240262107fed24026210 /* ScPhysics.h */,
FFFD240262787fed24026278 /* ScRigidCore.h */,
FFFD240262e07fed240262e0 /* ScScene.h */,
FFFD240263487fed24026348 /* ScShapeCore.h */,
FFFD240263b07fed240263b0 /* ScStaticCore.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB23d3ffd87fed23d3ffd8 /* src */ = {
isa = PBXGroup;
children = (
FFFD221e5c007fed221e5c00 /* ScActorElementPair.h */,
FFFD221e5c687fed221e5c68 /* ScActorInteraction.h */,
FFFD221e5cd07fed221e5cd0 /* ScActorPair.h */,
FFFD221e5d387fed221e5d38 /* ScActorSim.h */,
FFFD221e5da07fed221e5da0 /* ScArticulationJointSim.h */,
FFFD221e5e087fed221e5e08 /* ScArticulationSim.h */,
FFFD221e5e707fed221e5e70 /* ScBodySim.h */,
FFFD221e5ed87fed221e5ed8 /* ScClient.h */,
FFFD221e5f407fed221e5f40 /* ScConstraintGroupNode.h */,
FFFD221e5fa87fed221e5fa8 /* ScConstraintInteraction.h */,
FFFD221e60107fed221e6010 /* ScConstraintProjectionManager.h */,
FFFD221e60787fed221e6078 /* ScConstraintProjectionTree.h */,
FFFD221e60e07fed221e60e0 /* ScConstraintSim.h */,
FFFD221e61487fed221e6148 /* ScContactReportBuffer.h */,
FFFD221e61b07fed221e61b0 /* ScContactStream.h */,
FFFD221e62187fed221e6218 /* ScElementInteractionMarker.h */,
FFFD221e62807fed221e6280 /* ScElementSim.h */,
FFFD221e62e87fed221e62e8 /* ScElementSimInteraction.h */,
FFFD221e63507fed221e6350 /* ScInteraction.h */,
FFFD221e63b87fed221e63b8 /* ScInteractionFlags.h */,
FFFD221e64207fed221e6420 /* ScNPhaseCore.h */,
FFFD221e64887fed221e6488 /* ScObjectIDTracker.h */,
FFFD221e64f07fed221e64f0 /* ScRbElementInteraction.h */,
FFFD221e65587fed221e6558 /* ScRigidSim.h */,
FFFD221e65c07fed221e65c0 /* ScShapeInteraction.h */,
FFFD221e66287fed221e6628 /* ScShapeIterator.h */,
FFFD221e66907fed221e6690 /* ScShapeSim.h */,
FFFD221e66f87fed221e66f8 /* ScSimStateData.h */,
FFFD221e67607fed221e6760 /* ScSimStats.h */,
FFFD221e67c87fed221e67c8 /* ScSimulationController.h */,
FFFD221e68307fed221e6830 /* ScSqBoundsManager.h */,
FFFD221e68987fed221e6898 /* ScStaticSim.h */,
FFFD221e69007fed221e6900 /* ScTriggerInteraction.h */,
FFFD221e69687fed221e6968 /* ScTriggerPairs.h */,
FFFD221e69d07fed221e69d0 /* ScActorCore.cpp */,
FFFD221e6a387fed221e6a38 /* ScActorSim.cpp */,
FFFD221e6aa07fed221e6aa0 /* ScArticulationCore.cpp */,
FFFD221e6b087fed221e6b08 /* ScArticulationJointCore.cpp */,
FFFD221e6b707fed221e6b70 /* ScArticulationJointSim.cpp */,
FFFD221e6bd87fed221e6bd8 /* ScArticulationSim.cpp */,
FFFD221e6c407fed221e6c40 /* ScBodyCore.cpp */,
FFFD221e6ca87fed221e6ca8 /* ScBodyCoreKinematic.cpp */,
FFFD221e6d107fed221e6d10 /* ScBodySim.cpp */,
FFFD221e6d787fed221e6d78 /* ScConstraintCore.cpp */,
FFFD221e6de07fed221e6de0 /* ScConstraintGroupNode.cpp */,
FFFD221e6e487fed221e6e48 /* ScConstraintInteraction.cpp */,
FFFD221e6eb07fed221e6eb0 /* ScConstraintProjectionManager.cpp */,
FFFD221e6f187fed221e6f18 /* ScConstraintProjectionTree.cpp */,
FFFD221e6f807fed221e6f80 /* ScConstraintSim.cpp */,
FFFD221e6fe87fed221e6fe8 /* ScElementInteractionMarker.cpp */,
FFFD221e70507fed221e7050 /* ScElementSim.cpp */,
FFFD221e70b87fed221e70b8 /* ScInteraction.cpp */,
FFFD221e71207fed221e7120 /* ScIterators.cpp */,
FFFD221e71887fed221e7188 /* ScMaterialCore.cpp */,
FFFD221e71f07fed221e71f0 /* ScMetaData.cpp */,
FFFD221e72587fed221e7258 /* ScNPhaseCore.cpp */,
FFFD221e72c07fed221e72c0 /* ScPhysics.cpp */,
FFFD221e73287fed221e7328 /* ScRigidCore.cpp */,
FFFD221e73907fed221e7390 /* ScRigidSim.cpp */,
FFFD221e73f87fed221e73f8 /* ScScene.cpp */,
FFFD221e74607fed221e7460 /* ScShapeCore.cpp */,
FFFD221e74c87fed221e74c8 /* ScShapeInteraction.cpp */,
FFFD221e75307fed221e7530 /* ScShapeSim.cpp */,
FFFD221e75987fed221e7598 /* ScSimStats.cpp */,
FFFD221e76007fed221e7600 /* ScSimulationController.cpp */,
FFFD221e76687fed221e7668 /* ScSqBoundsManager.cpp */,
FFFD221e76d07fed221e76d0 /* ScStaticCore.cpp */,
FFFD221e77387fed221e7738 /* ScStaticSim.cpp */,
FFFD221e77a07fed221e77a0 /* ScTriggerInteraction.cpp */,
FFFD221e78087fed221e7808 /* particles/ScParticleBodyInteraction.h */,
FFFD221e78707fed221e7870 /* particles/ScParticlePacketShape.h */,
FFFD221e78d87fed221e78d8 /* particles/ScParticleSystemSim.h */,
FFFD221e79407fed221e7940 /* particles/ScParticleBodyInteraction.cpp */,
FFFD221e79a87fed221e79a8 /* particles/ScParticlePacketShape.cpp */,
FFFD221e7a107fed221e7a10 /* particles/ScParticleSystemCore.cpp */,
FFFD221e7a787fed221e7a78 /* particles/ScParticleSystemSim.cpp */,
FFFD221e7ae07fed221e7ae0 /* cloth/ScClothShape.h */,
FFFD221e7b487fed221e7b48 /* cloth/ScClothSim.h */,
FFFD221e7bb07fed221e7bb0 /* cloth/ScClothCore.cpp */,
FFFD221e7c187fed221e7c18 /* cloth/ScClothFabricCore.cpp */,
FFFD221e7c807fed221e7c80 /* cloth/ScClothShape.cpp */,
FFFD221e7ce87fed221e7ce8 /* cloth/ScClothSim.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFB238940707fed23894070 /* PhysXCooking */ = {
isa = PBXGroup;
children = (
FFFB2388dce07fed2388dce0 /* include */,
FFFB2388dd087fed2388dd08 /* src */,
);
name = "PhysXCooking";
sourceTree = "<group>";
};
FFFB2388dce07fed2388dce0 /* include */ = {
isa = PBXGroup;
children = (
FFFD2388c2607fed2388c260 /* PxBVH33MidphaseDesc.h */,
FFFD2388c2c87fed2388c2c8 /* PxBVH34MidphaseDesc.h */,
FFFD2388c3307fed2388c330 /* PxConvexMeshDesc.h */,
FFFD2388c3987fed2388c398 /* PxCooking.h */,
FFFD2388c4007fed2388c400 /* PxMidphaseDesc.h */,
FFFD2388c4687fed2388c468 /* PxTriangleMeshDesc.h */,
FFFD2388c4d07fed2388c4d0 /* Pxc.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB2388dd087fed2388dd08 /* src */ = {
isa = PBXGroup;
children = (
FFFD221ede007fed221ede00 /* Adjacencies.cpp */,
FFFD221ede687fed221ede68 /* Cooking.cpp */,
FFFD221eded07fed221eded0 /* CookingUtils.cpp */,
FFFD221edf387fed221edf38 /* EdgeList.cpp */,
FFFD221edfa07fed221edfa0 /* MeshCleaner.cpp */,
FFFD221ee0087fed221ee008 /* Quantizer.cpp */,
FFFD221ee0707fed221ee070 /* Adjacencies.h */,
FFFD221ee0d87fed221ee0d8 /* Cooking.h */,
FFFD221ee1407fed221ee140 /* CookingUtils.h */,
FFFD221ee1a87fed221ee1a8 /* EdgeList.h */,
FFFD221ee2107fed221ee210 /* MeshCleaner.h */,
FFFD221ee2787fed221ee278 /* Quantizer.h */,
FFFD221ee2e07fed221ee2e0 /* mesh/GrbTriangleMeshCooking.cpp */,
FFFD221ee3487fed221ee348 /* mesh/HeightFieldCooking.cpp */,
FFFD221ee3b07fed221ee3b0 /* mesh/RTreeCooking.cpp */,
FFFD221ee4187fed221ee418 /* mesh/TriangleMeshBuilder.cpp */,
FFFD221ee4807fed221ee480 /* mesh/GrbTriangleMeshCooking.h */,
FFFD221ee4e87fed221ee4e8 /* mesh/HeightFieldCooking.h */,
FFFD221ee5507fed221ee550 /* mesh/QuickSelect.h */,
FFFD221ee5b87fed221ee5b8 /* mesh/RTreeCooking.h */,
FFFD221ee6207fed221ee620 /* mesh/TriangleMeshBuilder.h */,
FFFD221ee6887fed221ee688 /* convex/BigConvexDataBuilder.cpp */,
FFFD221ee6f07fed221ee6f0 /* convex/ConvexHullBuilder.cpp */,
FFFD221ee7587fed221ee758 /* convex/ConvexHullLib.cpp */,
FFFD221ee7c07fed221ee7c0 /* convex/ConvexHullUtils.cpp */,
FFFD221ee8287fed221ee828 /* convex/ConvexMeshBuilder.cpp */,
FFFD221ee8907fed221ee890 /* convex/ConvexPolygonsBuilder.cpp */,
FFFD221ee8f87fed221ee8f8 /* convex/InflationConvexHullLib.cpp */,
FFFD221ee9607fed221ee960 /* convex/QuickHullConvexHullLib.cpp */,
FFFD221ee9c87fed221ee9c8 /* convex/VolumeIntegration.cpp */,
FFFD221eea307fed221eea30 /* convex/BigConvexDataBuilder.h */,
FFFD221eea987fed221eea98 /* convex/ConvexHullBuilder.h */,
FFFD221eeb007fed221eeb00 /* convex/ConvexHullLib.h */,
FFFD221eeb687fed221eeb68 /* convex/ConvexHullUtils.h */,
FFFD221eebd07fed221eebd0 /* convex/ConvexMeshBuilder.h */,
FFFD221eec387fed221eec38 /* convex/ConvexPolygonsBuilder.h */,
FFFD221eeca07fed221eeca0 /* convex/InflationConvexHullLib.h */,
FFFD221eed087fed221eed08 /* convex/QuickHullConvexHullLib.h */,
FFFD221eed707fed221eed70 /* convex/VolumeIntegration.h */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFB2292ec707fed2292ec70 /* PhysXCommon */ = {
isa = PBXGroup;
children = (
FFFB2147d1707fed2147d170 /* include */,
FFFB2147d1987fed2147d198 /* common */,
FFFB2147d1c07fed2147d1c0 /* geomutils */,
);
name = "PhysXCommon";
sourceTree = "<group>";
};
FFFB2147d1707fed2147d170 /* include */ = {
isa = PBXGroup;
children = (
FFFD2181d6007fed2181d600 /* common/PxBase.h */,
FFFD2181d6687fed2181d668 /* common/PxCollection.h */,
FFFD2181d6d07fed2181d6d0 /* common/PxCoreUtilityTypes.h */,
FFFD2181d7387fed2181d738 /* common/PxMetaData.h */,
FFFD2181d7a07fed2181d7a0 /* common/PxMetaDataFlags.h */,
FFFD2181d8087fed2181d808 /* common/PxPhysXCommonConfig.h */,
FFFD2181d8707fed2181d870 /* common/PxPhysicsInsertionCallback.h */,
FFFD2181d8d87fed2181d8d8 /* common/PxRenderBuffer.h */,
FFFD2181d9407fed2181d940 /* common/PxSerialFramework.h */,
FFFD2181d9a87fed2181d9a8 /* common/PxSerializer.h */,
FFFD2181da107fed2181da10 /* common/PxStringTable.h */,
FFFD2181da787fed2181da78 /* common/PxTolerancesScale.h */,
FFFD2181dae07fed2181dae0 /* common/PxTypeInfo.h */,
FFFD2181db487fed2181db48 /* geometry/PxBoxGeometry.h */,
FFFD2181dbb07fed2181dbb0 /* geometry/PxCapsuleGeometry.h */,
FFFD2181dc187fed2181dc18 /* geometry/PxConvexMesh.h */,
FFFD2181dc807fed2181dc80 /* geometry/PxConvexMeshGeometry.h */,
FFFD2181dce87fed2181dce8 /* geometry/PxGeometry.h */,
FFFD2181dd507fed2181dd50 /* geometry/PxGeometryHelpers.h */,
FFFD2181ddb87fed2181ddb8 /* geometry/PxGeometryQuery.h */,
FFFD2181de207fed2181de20 /* geometry/PxHeightField.h */,
FFFD2181de887fed2181de88 /* geometry/PxHeightFieldDesc.h */,
FFFD2181def07fed2181def0 /* geometry/PxHeightFieldFlag.h */,
FFFD2181df587fed2181df58 /* geometry/PxHeightFieldGeometry.h */,
FFFD2181dfc07fed2181dfc0 /* geometry/PxHeightFieldSample.h */,
FFFD2181e0287fed2181e028 /* geometry/PxMeshQuery.h */,
FFFD2181e0907fed2181e090 /* geometry/PxMeshScale.h */,
FFFD2181e0f87fed2181e0f8 /* geometry/PxPlaneGeometry.h */,
FFFD2181e1607fed2181e160 /* geometry/PxSimpleTriangleMesh.h */,
FFFD2181e1c87fed2181e1c8 /* geometry/PxSphereGeometry.h */,
FFFD2181e2307fed2181e230 /* geometry/PxTriangle.h */,
FFFD2181e2987fed2181e298 /* geometry/PxTriangleMesh.h */,
FFFD2181e3007fed2181e300 /* geometry/PxTriangleMeshGeometry.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB2147d1987fed2147d198 /* common */ = {
isa = PBXGroup;
children = (
FFFD2181c6007fed2181c600 /* src/CmBoxPruning.cpp */,
FFFD2181c6687fed2181c668 /* src/CmCollection.cpp */,
FFFD2181c6d07fed2181c6d0 /* src/CmMathUtils.cpp */,
FFFD2181c7387fed2181c738 /* src/CmPtrTable.cpp */,
FFFD2181c7a07fed2181c7a0 /* src/CmRadixSort.cpp */,
FFFD2181c8087fed2181c808 /* src/CmRadixSortBuffered.cpp */,
FFFD2181c8707fed2181c870 /* src/CmRenderOutput.cpp */,
FFFD2181c8d87fed2181c8d8 /* src/CmVisualization.cpp */,
FFFD2181c9407fed2181c940 /* src/CmBitMap.h */,
FFFD2181c9a87fed2181c9a8 /* src/CmBoxPruning.h */,
FFFD2181ca107fed2181ca10 /* src/CmCollection.h */,
FFFD2181ca787fed2181ca78 /* src/CmConeLimitHelper.h */,
FFFD2181cae07fed2181cae0 /* src/CmFlushPool.h */,
FFFD2181cb487fed2181cb48 /* src/CmIDPool.h */,
FFFD2181cbb07fed2181cbb0 /* src/CmIO.h */,
FFFD2181cc187fed2181cc18 /* src/CmMatrix34.h */,
FFFD2181cc807fed2181cc80 /* src/CmPhysXCommon.h */,
FFFD2181cce87fed2181cce8 /* src/CmPool.h */,
FFFD2181cd507fed2181cd50 /* src/CmPreallocatingPool.h */,
FFFD2181cdb87fed2181cdb8 /* src/CmPriorityQueue.h */,
FFFD2181ce207fed2181ce20 /* src/CmPtrTable.h */,
FFFD2181ce887fed2181ce88 /* src/CmQueue.h */,
FFFD2181cef07fed2181cef0 /* src/CmRadixSort.h */,
FFFD2181cf587fed2181cf58 /* src/CmRadixSortBuffered.h */,
FFFD2181cfc07fed2181cfc0 /* src/CmRefCountable.h */,
FFFD2181d0287fed2181d028 /* src/CmRenderBuffer.h */,
FFFD2181d0907fed2181d090 /* src/CmRenderOutput.h */,
FFFD2181d0f87fed2181d0f8 /* src/CmScaling.h */,
FFFD2181d1607fed2181d160 /* src/CmSpatialVector.h */,
FFFD2181d1c87fed2181d1c8 /* src/CmTask.h */,
FFFD2181d2307fed2181d230 /* src/CmTaskPool.h */,
FFFD2181d2987fed2181d298 /* src/CmTmpMem.h */,
FFFD2181d3007fed2181d300 /* src/CmTransformUtils.h */,
FFFD2181d3687fed2181d368 /* src/CmUtils.h */,
FFFD2181d3d07fed2181d3d0 /* src/CmVisualization.h */,
);
name = "common";
sourceTree = SOURCE_ROOT;
};
FFFB2147d1c07fed2147d1c0 /* geomutils */ = {
isa = PBXGroup;
children = (
FFFD2182d0007fed2182d000 /* headers/GuAxes.h */,
FFFD2182d0687fed2182d068 /* headers/GuBox.h */,
FFFD2182d0d07fed2182d0d0 /* headers/GuDistanceSegmentBox.h */,
FFFD2182d1387fed2182d138 /* headers/GuDistanceSegmentSegment.h */,
FFFD2182d1a07fed2182d1a0 /* headers/GuIntersectionBoxBox.h */,
FFFD2182d2087fed2182d208 /* headers/GuIntersectionTriangleBox.h */,
FFFD2182d2707fed2182d270 /* headers/GuRaycastTests.h */,
FFFD2182d2d87fed2182d2d8 /* headers/GuSIMDHelpers.h */,
FFFD2182d3407fed2182d340 /* headers/GuSegment.h */,
FFFD2182d3a87fed2182d3a8 /* ../../Include/GeomUtils */,
FFFD2182d4107fed2182d410 /* src/GuBounds.h */,
FFFD2182d4787fed2182d478 /* src/GuCapsule.h */,
FFFD2182d4e07fed2182d4e0 /* src/GuCenterExtents.h */,
FFFD2182d5487fed2182d548 /* src/GuGeometryUnion.h */,
FFFD2182d5b07fed2182d5b0 /* src/GuInternal.h */,
FFFD2182d6187fed2182d618 /* src/GuMTD.h */,
FFFD2182d6807fed2182d680 /* src/GuMeshFactory.h */,
FFFD2182d6e87fed2182d6e8 /* src/GuOverlapTests.h */,
FFFD2182d7507fed2182d750 /* src/GuSerialize.h */,
FFFD2182d7b87fed2182d7b8 /* src/GuSphere.h */,
FFFD2182d8207fed2182d820 /* src/GuSweepMTD.h */,
FFFD2182d8887fed2182d888 /* src/GuSweepSharedTests.h */,
FFFD2182d8f07fed2182d8f0 /* src/GuSweepTests.h */,
FFFD2182d9587fed2182d958 /* src/contact/GuContactMethodImpl.h */,
FFFD2182d9c07fed2182d9c0 /* src/contact/GuContactPolygonPolygon.h */,
FFFD2182da287fed2182da28 /* src/contact/GuFeatureCode.h */,
FFFD2182da907fed2182da90 /* src/contact/GuLegacyTraceLineCallback.h */,
FFFD2182daf87fed2182daf8 /* src/common/GuBarycentricCoordinates.h */,
FFFD2182db607fed2182db60 /* src/common/GuBoxConversion.h */,
FFFD2182dbc87fed2182dbc8 /* src/common/GuEdgeCache.h */,
FFFD2182dc307fed2182dc30 /* src/common/GuEdgeListData.h */,
FFFD2182dc987fed2182dc98 /* src/common/GuSeparatingAxes.h */,
FFFD2182dd007fed2182dd00 /* src/convex/GuBigConvexData.h */,
FFFD2182dd687fed2182dd68 /* src/convex/GuBigConvexData2.h */,
FFFD2182ddd07fed2182ddd0 /* src/convex/GuConvexEdgeFlags.h */,
FFFD2182de387fed2182de38 /* src/convex/GuConvexHelper.h */,
FFFD2182dea07fed2182dea0 /* src/convex/GuConvexMesh.h */,
FFFD2182df087fed2182df08 /* src/convex/GuConvexMeshData.h */,
FFFD2182df707fed2182df70 /* src/convex/GuConvexSupportTable.h */,
FFFD2182dfd87fed2182dfd8 /* src/convex/GuConvexUtilsInternal.h */,
FFFD2182e0407fed2182e040 /* src/convex/GuCubeIndex.h */,
FFFD2182e0a87fed2182e0a8 /* src/convex/GuHillClimbing.h */,
FFFD2182e1107fed2182e110 /* src/convex/GuShapeConvex.h */,
FFFD2182e1787fed2182e178 /* src/distance/GuDistancePointBox.h */,
FFFD2182e1e07fed2182e1e0 /* src/distance/GuDistancePointSegment.h */,
FFFD2182e2487fed2182e248 /* src/distance/GuDistancePointTriangle.h */,
FFFD2182e2b07fed2182e2b0 /* src/distance/GuDistancePointTriangleSIMD.h */,
FFFD2182e3187fed2182e318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */,
FFFD2182e3807fed2182e380 /* src/distance/GuDistanceSegmentTriangle.h */,
FFFD2182e3e87fed2182e3e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */,
FFFD2182e4507fed2182e450 /* src/sweep/GuSweepBoxBox.h */,
FFFD2182e4b87fed2182e4b8 /* src/sweep/GuSweepBoxSphere.h */,
FFFD2182e5207fed2182e520 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */,
FFFD2182e5887fed2182e588 /* src/sweep/GuSweepBoxTriangle_SAT.h */,
FFFD2182e5f07fed2182e5f0 /* src/sweep/GuSweepCapsuleBox.h */,
FFFD2182e6587fed2182e658 /* src/sweep/GuSweepCapsuleCapsule.h */,
FFFD2182e6c07fed2182e6c0 /* src/sweep/GuSweepCapsuleTriangle.h */,
FFFD2182e7287fed2182e728 /* src/sweep/GuSweepSphereCapsule.h */,
FFFD2182e7907fed2182e790 /* src/sweep/GuSweepSphereSphere.h */,
FFFD2182e7f87fed2182e7f8 /* src/sweep/GuSweepSphereTriangle.h */,
FFFD2182e8607fed2182e860 /* src/sweep/GuSweepTriangleUtils.h */,
FFFD2182e8c87fed2182e8c8 /* src/gjk/GuEPA.h */,
FFFD2182e9307fed2182e930 /* src/gjk/GuEPAFacet.h */,
FFFD2182e9987fed2182e998 /* src/gjk/GuGJK.h */,
FFFD2182ea007fed2182ea00 /* src/gjk/GuGJKPenetration.h */,
FFFD2182ea687fed2182ea68 /* src/gjk/GuGJKRaycast.h */,
FFFD2182ead07fed2182ead0 /* src/gjk/GuGJKSimplex.h */,
FFFD2182eb387fed2182eb38 /* src/gjk/GuGJKTest.h */,
FFFD2182eba07fed2182eba0 /* src/gjk/GuGJKType.h */,
FFFD2182ec087fed2182ec08 /* src/gjk/GuGJKUtil.h */,
FFFD2182ec707fed2182ec70 /* src/gjk/GuVecBox.h */,
FFFD2182ecd87fed2182ecd8 /* src/gjk/GuVecCapsule.h */,
FFFD2182ed407fed2182ed40 /* src/gjk/GuVecConvex.h */,
FFFD2182eda87fed2182eda8 /* src/gjk/GuVecConvexHull.h */,
FFFD2182ee107fed2182ee10 /* src/gjk/GuVecConvexHullNoScale.h */,
FFFD2182ee787fed2182ee78 /* src/gjk/GuVecPlane.h */,
FFFD2182eee07fed2182eee0 /* src/gjk/GuVecShrunkBox.h */,
FFFD2182ef487fed2182ef48 /* src/gjk/GuVecShrunkConvexHull.h */,
FFFD2182efb07fed2182efb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */,
FFFD2182f0187fed2182f018 /* src/gjk/GuVecSphere.h */,
FFFD2182f0807fed2182f080 /* src/gjk/GuVecTriangle.h */,
FFFD2182f0e87fed2182f0e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */,
FFFD2182f1507fed2182f150 /* src/intersection/GuIntersectionEdgeEdge.h */,
FFFD2182f1b87fed2182f1b8 /* src/intersection/GuIntersectionRay.h */,
FFFD2182f2207fed2182f220 /* src/intersection/GuIntersectionRayBox.h */,
FFFD2182f2887fed2182f288 /* src/intersection/GuIntersectionRayBoxSIMD.h */,
FFFD2182f2f07fed2182f2f0 /* src/intersection/GuIntersectionRayCapsule.h */,
FFFD2182f3587fed2182f358 /* src/intersection/GuIntersectionRayPlane.h */,
FFFD2182f3c07fed2182f3c0 /* src/intersection/GuIntersectionRaySphere.h */,
FFFD2182f4287fed2182f428 /* src/intersection/GuIntersectionRayTriangle.h */,
FFFD2182f4907fed2182f490 /* src/intersection/GuIntersectionSphereBox.h */,
FFFD2182f4f87fed2182f4f8 /* src/mesh/GuBV32.h */,
FFFD2182f5607fed2182f560 /* src/mesh/GuBV32Build.h */,
FFFD2182f5c87fed2182f5c8 /* src/mesh/GuBV4.h */,
FFFD2182f6307fed2182f630 /* src/mesh/GuBV4Build.h */,
FFFD2182f6987fed2182f698 /* src/mesh/GuBV4Settings.h */,
FFFD2182f7007fed2182f700 /* src/mesh/GuBV4_AABBAABBSweepTest.h */,
FFFD2182f7687fed2182f768 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */,
FFFD2182f7d07fed2182f7d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */,
FFFD2182f8387fed2182f838 /* src/mesh/GuBV4_BoxSweep_Internal.h */,
FFFD2182f8a07fed2182f8a0 /* src/mesh/GuBV4_BoxSweep_Params.h */,
FFFD2182f9087fed2182f908 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */,
FFFD2182f9707fed2182f970 /* src/mesh/GuBV4_Common.h */,
FFFD2182f9d87fed2182f9d8 /* src/mesh/GuBV4_Internal.h */,
FFFD2182fa407fed2182fa40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */,
FFFD2182faa87fed2182faa8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */,
FFFD2182fb107fed2182fb10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */,
FFFD2182fb787fed2182fb78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */,
FFFD2182fbe07fed2182fbe0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */,
FFFD2182fc487fed2182fc48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */,
FFFD2182fcb07fed2182fcb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */,
FFFD2182fd187fed2182fd18 /* src/mesh/GuBV4_Slabs.h */,
FFFD2182fd807fed2182fd80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */,
FFFD2182fde87fed2182fde8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */,
FFFD2182fe507fed2182fe50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */,
FFFD2182feb87fed2182feb8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */,
FFFD2182ff207fed2182ff20 /* src/mesh/GuBVConstants.h */,
FFFD2182ff887fed2182ff88 /* src/mesh/GuMeshData.h */,
FFFD2182fff07fed2182fff0 /* src/mesh/GuMidphaseInterface.h */,
FFFD218300587fed21830058 /* src/mesh/GuRTree.h */,
FFFD218300c07fed218300c0 /* src/mesh/GuSweepConvexTri.h */,
FFFD218301287fed21830128 /* src/mesh/GuSweepMesh.h */,
FFFD218301907fed21830190 /* src/mesh/GuTriangle32.h */,
FFFD218301f87fed218301f8 /* src/mesh/GuTriangleCache.h */,
FFFD218302607fed21830260 /* src/mesh/GuTriangleMesh.h */,
FFFD218302c87fed218302c8 /* src/mesh/GuTriangleMeshBV4.h */,
FFFD218303307fed21830330 /* src/mesh/GuTriangleMeshRTree.h */,
FFFD218303987fed21830398 /* src/mesh/GuTriangleVertexPointers.h */,
FFFD218304007fed21830400 /* src/hf/GuEntityReport.h */,
FFFD218304687fed21830468 /* src/hf/GuHeightField.h */,
FFFD218304d07fed218304d0 /* src/hf/GuHeightFieldData.h */,
FFFD218305387fed21830538 /* src/hf/GuHeightFieldUtil.h */,
FFFD218305a07fed218305a0 /* src/pcm/GuPCMContactConvexCommon.h */,
FFFD218306087fed21830608 /* src/pcm/GuPCMContactGen.h */,
FFFD218306707fed21830670 /* src/pcm/GuPCMContactGenUtil.h */,
FFFD218306d87fed218306d8 /* src/pcm/GuPCMContactMeshCallback.h */,
FFFD218307407fed21830740 /* src/pcm/GuPCMShapeConvex.h */,
FFFD218307a87fed218307a8 /* src/pcm/GuPCMTriangleContactGen.h */,
FFFD218308107fed21830810 /* src/pcm/GuPersistentContactManifold.h */,
FFFD218308787fed21830878 /* src/ccd/GuCCDSweepConvexMesh.h */,
FFFD218308e07fed218308e0 /* src/GuBounds.cpp */,
FFFD218309487fed21830948 /* src/GuBox.cpp */,
FFFD218309b07fed218309b0 /* src/GuCCTSweepTests.cpp */,
FFFD21830a187fed21830a18 /* src/GuCapsule.cpp */,
FFFD21830a807fed21830a80 /* src/GuGeometryQuery.cpp */,
FFFD21830ae87fed21830ae8 /* src/GuGeometryUnion.cpp */,
FFFD21830b507fed21830b50 /* src/GuInternal.cpp */,
FFFD21830bb87fed21830bb8 /* src/GuMTD.cpp */,
FFFD21830c207fed21830c20 /* src/GuMeshFactory.cpp */,
FFFD21830c887fed21830c88 /* src/GuMetaData.cpp */,
FFFD21830cf07fed21830cf0 /* src/GuOverlapTests.cpp */,
FFFD21830d587fed21830d58 /* src/GuRaycastTests.cpp */,
FFFD21830dc07fed21830dc0 /* src/GuSerialize.cpp */,
FFFD21830e287fed21830e28 /* src/GuSweepMTD.cpp */,
FFFD21830e907fed21830e90 /* src/GuSweepSharedTests.cpp */,
FFFD21830ef87fed21830ef8 /* src/GuSweepTests.cpp */,
FFFD21830f607fed21830f60 /* src/contact/GuContactBoxBox.cpp */,
FFFD21830fc87fed21830fc8 /* src/contact/GuContactCapsuleBox.cpp */,
FFFD218310307fed21831030 /* src/contact/GuContactCapsuleCapsule.cpp */,
FFFD218310987fed21831098 /* src/contact/GuContactCapsuleConvex.cpp */,
FFFD218311007fed21831100 /* src/contact/GuContactCapsuleMesh.cpp */,
FFFD218311687fed21831168 /* src/contact/GuContactConvexConvex.cpp */,
FFFD218311d07fed218311d0 /* src/contact/GuContactConvexMesh.cpp */,
FFFD218312387fed21831238 /* src/contact/GuContactPlaneBox.cpp */,
FFFD218312a07fed218312a0 /* src/contact/GuContactPlaneCapsule.cpp */,
FFFD218313087fed21831308 /* src/contact/GuContactPlaneConvex.cpp */,
FFFD218313707fed21831370 /* src/contact/GuContactPolygonPolygon.cpp */,
FFFD218313d87fed218313d8 /* src/contact/GuContactSphereBox.cpp */,
FFFD218314407fed21831440 /* src/contact/GuContactSphereCapsule.cpp */,
FFFD218314a87fed218314a8 /* src/contact/GuContactSphereMesh.cpp */,
FFFD218315107fed21831510 /* src/contact/GuContactSpherePlane.cpp */,
FFFD218315787fed21831578 /* src/contact/GuContactSphereSphere.cpp */,
FFFD218315e07fed218315e0 /* src/contact/GuFeatureCode.cpp */,
FFFD218316487fed21831648 /* src/contact/GuLegacyContactBoxHeightField.cpp */,
FFFD218316b07fed218316b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */,
FFFD218317187fed21831718 /* src/contact/GuLegacyContactConvexHeightField.cpp */,
FFFD218317807fed21831780 /* src/contact/GuLegacyContactSphereHeightField.cpp */,
FFFD218317e87fed218317e8 /* src/common/GuBarycentricCoordinates.cpp */,
FFFD218318507fed21831850 /* src/common/GuSeparatingAxes.cpp */,
FFFD218318b87fed218318b8 /* src/convex/GuBigConvexData.cpp */,
FFFD218319207fed21831920 /* src/convex/GuConvexHelper.cpp */,
FFFD218319887fed21831988 /* src/convex/GuConvexMesh.cpp */,
FFFD218319f07fed218319f0 /* src/convex/GuConvexSupportTable.cpp */,
FFFD21831a587fed21831a58 /* src/convex/GuConvexUtilsInternal.cpp */,
FFFD21831ac07fed21831ac0 /* src/convex/GuHillClimbing.cpp */,
FFFD21831b287fed21831b28 /* src/convex/GuShapeConvex.cpp */,
FFFD21831b907fed21831b90 /* src/distance/GuDistancePointBox.cpp */,
FFFD21831bf87fed21831bf8 /* src/distance/GuDistancePointTriangle.cpp */,
FFFD21831c607fed21831c60 /* src/distance/GuDistanceSegmentBox.cpp */,
FFFD21831cc87fed21831cc8 /* src/distance/GuDistanceSegmentSegment.cpp */,
FFFD21831d307fed21831d30 /* src/distance/GuDistanceSegmentTriangle.cpp */,
FFFD21831d987fed21831d98 /* src/sweep/GuSweepBoxBox.cpp */,
FFFD21831e007fed21831e00 /* src/sweep/GuSweepBoxSphere.cpp */,
FFFD21831e687fed21831e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */,
FFFD21831ed07fed21831ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */,
FFFD21831f387fed21831f38 /* src/sweep/GuSweepCapsuleBox.cpp */,
FFFD21831fa07fed21831fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */,
FFFD218320087fed21832008 /* src/sweep/GuSweepCapsuleTriangle.cpp */,
FFFD218320707fed21832070 /* src/sweep/GuSweepSphereCapsule.cpp */,
FFFD218320d87fed218320d8 /* src/sweep/GuSweepSphereSphere.cpp */,
FFFD218321407fed21832140 /* src/sweep/GuSweepSphereTriangle.cpp */,
FFFD218321a87fed218321a8 /* src/sweep/GuSweepTriangleUtils.cpp */,
FFFD218322107fed21832210 /* src/gjk/GuEPA.cpp */,
FFFD218322787fed21832278 /* src/gjk/GuGJKSimplex.cpp */,
FFFD218322e07fed218322e0 /* src/gjk/GuGJKTest.cpp */,
FFFD218323487fed21832348 /* src/intersection/GuIntersectionBoxBox.cpp */,
FFFD218323b07fed218323b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */,
FFFD218324187fed21832418 /* src/intersection/GuIntersectionEdgeEdge.cpp */,
FFFD218324807fed21832480 /* src/intersection/GuIntersectionRayBox.cpp */,
FFFD218324e87fed218324e8 /* src/intersection/GuIntersectionRayCapsule.cpp */,
FFFD218325507fed21832550 /* src/intersection/GuIntersectionRaySphere.cpp */,
FFFD218325b87fed218325b8 /* src/intersection/GuIntersectionSphereBox.cpp */,
FFFD218326207fed21832620 /* src/intersection/GuIntersectionTriangleBox.cpp */,
FFFD218326887fed21832688 /* src/mesh/GuBV32.cpp */,
FFFD218326f07fed218326f0 /* src/mesh/GuBV32Build.cpp */,
FFFD218327587fed21832758 /* src/mesh/GuBV4.cpp */,
FFFD218327c07fed218327c0 /* src/mesh/GuBV4Build.cpp */,
FFFD218328287fed21832828 /* src/mesh/GuBV4_AABBSweep.cpp */,
FFFD218328907fed21832890 /* src/mesh/GuBV4_BoxOverlap.cpp */,
FFFD218328f87fed218328f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */,
FFFD218329607fed21832960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */,
FFFD218329c87fed218329c8 /* src/mesh/GuBV4_OBBSweep.cpp */,
FFFD21832a307fed21832a30 /* src/mesh/GuBV4_Raycast.cpp */,
FFFD21832a987fed21832a98 /* src/mesh/GuBV4_SphereOverlap.cpp */,
FFFD21832b007fed21832b00 /* src/mesh/GuBV4_SphereSweep.cpp */,
FFFD21832b687fed21832b68 /* src/mesh/GuMeshQuery.cpp */,
FFFD21832bd07fed21832bd0 /* src/mesh/GuMidphaseBV4.cpp */,
FFFD21832c387fed21832c38 /* src/mesh/GuMidphaseRTree.cpp */,
FFFD21832ca07fed21832ca0 /* src/mesh/GuOverlapTestsMesh.cpp */,
FFFD21832d087fed21832d08 /* src/mesh/GuRTree.cpp */,
FFFD21832d707fed21832d70 /* src/mesh/GuRTreeQueries.cpp */,
FFFD21832dd87fed21832dd8 /* src/mesh/GuSweepsMesh.cpp */,
FFFD21832e407fed21832e40 /* src/mesh/GuTriangleMesh.cpp */,
FFFD21832ea87fed21832ea8 /* src/mesh/GuTriangleMeshBV4.cpp */,
FFFD21832f107fed21832f10 /* src/mesh/GuTriangleMeshRTree.cpp */,
FFFD21832f787fed21832f78 /* src/hf/GuHeightField.cpp */,
FFFD21832fe07fed21832fe0 /* src/hf/GuHeightFieldUtil.cpp */,
FFFD218330487fed21833048 /* src/hf/GuOverlapTestsHF.cpp */,
FFFD218330b07fed218330b0 /* src/hf/GuSweepsHF.cpp */,
FFFD218331187fed21833118 /* src/pcm/GuPCMContactBoxBox.cpp */,
FFFD218331807fed21833180 /* src/pcm/GuPCMContactBoxConvex.cpp */,
FFFD218331e87fed218331e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */,
FFFD218332507fed21833250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */,
FFFD218332b87fed218332b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */,
FFFD218333207fed21833320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */,
FFFD218333887fed21833388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */,
FFFD218333f07fed218333f0 /* src/pcm/GuPCMContactConvexCommon.cpp */,
FFFD218334587fed21833458 /* src/pcm/GuPCMContactConvexConvex.cpp */,
FFFD218334c07fed218334c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */,
FFFD218335287fed21833528 /* src/pcm/GuPCMContactConvexMesh.cpp */,
FFFD218335907fed21833590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */,
FFFD218335f87fed218335f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */,
FFFD218336607fed21833660 /* src/pcm/GuPCMContactPlaneBox.cpp */,
FFFD218336c87fed218336c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */,
FFFD218337307fed21833730 /* src/pcm/GuPCMContactPlaneConvex.cpp */,
FFFD218337987fed21833798 /* src/pcm/GuPCMContactSphereBox.cpp */,
FFFD218338007fed21833800 /* src/pcm/GuPCMContactSphereCapsule.cpp */,
FFFD218338687fed21833868 /* src/pcm/GuPCMContactSphereConvex.cpp */,
FFFD218338d07fed218338d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */,
FFFD218339387fed21833938 /* src/pcm/GuPCMContactSphereMesh.cpp */,
FFFD218339a07fed218339a0 /* src/pcm/GuPCMContactSpherePlane.cpp */,
FFFD21833a087fed21833a08 /* src/pcm/GuPCMContactSphereSphere.cpp */,
FFFD21833a707fed21833a70 /* src/pcm/GuPCMShapeConvex.cpp */,
FFFD21833ad87fed21833ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */,
FFFD21833b407fed21833b40 /* src/pcm/GuPersistentContactManifold.cpp */,
FFFD21833ba87fed21833ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */,
FFFD21833c107fed21833c10 /* src/ccd/GuCCDSweepPrimitives.cpp */,
);
name = "geomutils";
sourceTree = SOURCE_ROOT;
};
FFFB22914a507fed22914a50 /* PxFoundation */ = {
isa = PBXGroup;
children = (
FFFB229254607fed22925460 /* include */,
FFFB229254887fed22925488 /* src */,
);
name = "PxFoundation";
sourceTree = "<group>";
};
FFFB229254607fed22925460 /* include */ = {
isa = PBXGroup;
children = (
FFFD221706007fed22170600 /* Px.h */,
FFFD221706687fed22170668 /* PxAllocatorCallback.h */,
FFFD221706d07fed221706d0 /* PxAssert.h */,
FFFD221707387fed22170738 /* PxBitAndData.h */,
FFFD221707a07fed221707a0 /* PxBounds3.h */,
FFFD221708087fed22170808 /* PxErrorCallback.h */,
FFFD221708707fed22170870 /* PxErrors.h */,
FFFD221708d87fed221708d8 /* PxFlags.h */,
FFFD221709407fed22170940 /* PxFoundation.h */,
FFFD221709a87fed221709a8 /* PxFoundationVersion.h */,
FFFD22170a107fed22170a10 /* PxIO.h */,
FFFD22170a787fed22170a78 /* PxIntrinsics.h */,
FFFD22170ae07fed22170ae0 /* PxMat33.h */,
FFFD22170b487fed22170b48 /* PxMat44.h */,
FFFD22170bb07fed22170bb0 /* PxMath.h */,
FFFD22170c187fed22170c18 /* PxMathUtils.h */,
FFFD22170c807fed22170c80 /* PxMemory.h */,
FFFD22170ce87fed22170ce8 /* PxPlane.h */,
FFFD22170d507fed22170d50 /* PxPreprocessor.h */,
FFFD22170db87fed22170db8 /* PxProfiler.h */,
FFFD22170e207fed22170e20 /* PxQuat.h */,
FFFD22170e887fed22170e88 /* PxSimpleTypes.h */,
FFFD22170ef07fed22170ef0 /* PxStrideIterator.h */,
FFFD22170f587fed22170f58 /* PxTransform.h */,
FFFD22170fc07fed22170fc0 /* PxUnionCast.h */,
FFFD221710287fed22171028 /* PxVec2.h */,
FFFD221710907fed22171090 /* PxVec3.h */,
FFFD221710f87fed221710f8 /* PxVec4.h */,
FFFD221711607fed22171160 /* unix/PxUnixIntrinsics.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB229254887fed22925488 /* src */ = {
isa = PBXGroup;
children = (
FFFD2217ac007fed2217ac00 /* include/Ps.h */,
FFFD2217ac687fed2217ac68 /* include/PsAlignedMalloc.h */,
FFFD2217acd07fed2217acd0 /* include/PsAlloca.h */,
FFFD2217ad387fed2217ad38 /* include/PsAllocator.h */,
FFFD2217ada07fed2217ada0 /* include/PsAoS.h */,
FFFD2217ae087fed2217ae08 /* include/PsArray.h */,
FFFD2217ae707fed2217ae70 /* include/PsAtomic.h */,
FFFD2217aed87fed2217aed8 /* include/PsBasicTemplates.h */,
FFFD2217af407fed2217af40 /* include/PsBitUtils.h */,
FFFD2217afa87fed2217afa8 /* include/PsBroadcast.h */,
FFFD2217b0107fed2217b010 /* include/PsCpu.h */,
FFFD2217b0787fed2217b078 /* include/PsFPU.h */,
FFFD2217b0e07fed2217b0e0 /* include/PsFoundation.h */,
FFFD2217b1487fed2217b148 /* include/PsHash.h */,
FFFD2217b1b07fed2217b1b0 /* include/PsHashInternals.h */,
FFFD2217b2187fed2217b218 /* include/PsHashMap.h */,
FFFD2217b2807fed2217b280 /* include/PsHashSet.h */,
FFFD2217b2e87fed2217b2e8 /* include/PsInlineAllocator.h */,
FFFD2217b3507fed2217b350 /* include/PsInlineAoS.h */,
FFFD2217b3b87fed2217b3b8 /* include/PsInlineArray.h */,
FFFD2217b4207fed2217b420 /* include/PsIntrinsics.h */,
FFFD2217b4887fed2217b488 /* include/PsMathUtils.h */,
FFFD2217b4f07fed2217b4f0 /* include/PsMutex.h */,
FFFD2217b5587fed2217b558 /* include/PsPool.h */,
FFFD2217b5c07fed2217b5c0 /* include/PsSList.h */,
FFFD2217b6287fed2217b628 /* include/PsSocket.h */,
FFFD2217b6907fed2217b690 /* include/PsSort.h */,
FFFD2217b6f87fed2217b6f8 /* include/PsSortInternals.h */,
FFFD2217b7607fed2217b760 /* include/PsString.h */,
FFFD2217b7c87fed2217b7c8 /* include/PsSync.h */,
FFFD2217b8307fed2217b830 /* include/PsTempAllocator.h */,
FFFD2217b8987fed2217b898 /* include/PsThread.h */,
FFFD2217b9007fed2217b900 /* include/PsTime.h */,
FFFD2217b9687fed2217b968 /* include/PsUserAllocated.h */,
FFFD2217b9d07fed2217b9d0 /* include/PsUtilities.h */,
FFFD2217ba387fed2217ba38 /* include/PsVecMath.h */,
FFFD2217baa07fed2217baa0 /* include/PsVecMathAoSScalar.h */,
FFFD2217bb087fed2217bb08 /* include/PsVecMathAoSScalarInline.h */,
FFFD2217bb707fed2217bb70 /* include/PsVecMathSSE.h */,
FFFD2217bbd87fed2217bbd8 /* include/PsVecMathUtilities.h */,
FFFD2217bc407fed2217bc40 /* include/PsVecQuat.h */,
FFFD2217bca87fed2217bca8 /* include/PsVecTransform.h */,
FFFD2217bd107fed2217bd10 /* include/unix/PsUnixAoS.h */,
FFFD2217bd787fed2217bd78 /* include/unix/PsUnixFPU.h */,
FFFD2217bde07fed2217bde0 /* include/unix/PsUnixInlineAoS.h */,
FFFD2217be487fed2217be48 /* include/unix/PsUnixIntrinsics.h */,
FFFD2217beb07fed2217beb0 /* include/unix/PsUnixTrigConstants.h */,
FFFD2217bf187fed2217bf18 /* src/PsAllocator.cpp */,
FFFD2217bf807fed2217bf80 /* src/PsAssert.cpp */,
FFFD2217bfe87fed2217bfe8 /* src/PsFoundation.cpp */,
FFFD2217c0507fed2217c050 /* src/PsMathUtils.cpp */,
FFFD2217c0b87fed2217c0b8 /* src/PsString.cpp */,
FFFD2217c1207fed2217c120 /* src/PsTempAllocator.cpp */,
FFFD2217c1887fed2217c188 /* src/PsUtilities.cpp */,
FFFD2217c1f07fed2217c1f0 /* src/unix/PsUnixAtomic.cpp */,
FFFD2217c2587fed2217c258 /* src/unix/PsUnixCpu.cpp */,
FFFD2217c2c07fed2217c2c0 /* src/unix/PsUnixFPU.cpp */,
FFFD2217c3287fed2217c328 /* src/unix/PsUnixMutex.cpp */,
FFFD2217c3907fed2217c390 /* src/unix/PsUnixPrintString.cpp */,
FFFD2217c3f87fed2217c3f8 /* src/unix/PsUnixSList.cpp */,
FFFD2217c4607fed2217c460 /* src/unix/PsUnixSocket.cpp */,
FFFD2217c4c87fed2217c4c8 /* src/unix/PsUnixSync.cpp */,
FFFD2217c5307fed2217c530 /* src/unix/PsUnixThread.cpp */,
FFFD2217c5987fed2217c598 /* src/unix/PsUnixTime.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFB22e098707fed22e09870 /* PxPvdSDK */ = {
isa = PBXGroup;
children = (
FFFB22e0c9507fed22e0c950 /* include */,
FFFB22e0c9787fed22e0c978 /* src */,
);
name = "PxPvdSDK";
sourceTree = "<group>";
};
FFFB22e0c9507fed22e0c950 /* include */ = {
isa = PBXGroup;
children = (
FFFD22e0ce507fed22e0ce50 /* PxPvd.h */,
FFFD22e0ceb87fed22e0ceb8 /* PxPvdTransport.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB22e0c9787fed22e0c978 /* src */ = {
isa = PBXGroup;
children = (
FFFD2300f2007fed2300f200 /* include/PsPvd.h */,
FFFD2300f2687fed2300f268 /* include/PxProfileAllocatorWrapper.h */,
FFFD2300f2d07fed2300f2d0 /* include/PxPvdClient.h */,
FFFD2300f3387fed2300f338 /* include/PxPvdDataStream.h */,
FFFD2300f3a07fed2300f3a0 /* include/PxPvdDataStreamHelpers.h */,
FFFD2300f4087fed2300f408 /* include/PxPvdErrorCodes.h */,
FFFD2300f4707fed2300f470 /* include/PxPvdObjectModelBaseTypes.h */,
FFFD2300f4d87fed2300f4d8 /* include/PxPvdRenderBuffer.h */,
FFFD2300f5407fed2300f540 /* include/PxPvdUserRenderer.h */,
FFFD2300f5a87fed2300f5a8 /* src/PxProfileEventImpl.cpp */,
FFFD2300f6107fed2300f610 /* src/PxPvd.cpp */,
FFFD2300f6787fed2300f678 /* src/PxPvdDataStream.cpp */,
FFFD2300f6e07fed2300f6e0 /* src/PxPvdDefaultFileTransport.cpp */,
FFFD2300f7487fed2300f748 /* src/PxPvdDefaultSocketTransport.cpp */,
FFFD2300f7b07fed2300f7b0 /* src/PxPvdImpl.cpp */,
FFFD2300f8187fed2300f818 /* src/PxPvdMemClient.cpp */,
FFFD2300f8807fed2300f880 /* src/PxPvdObjectModelMetaData.cpp */,
FFFD2300f8e87fed2300f8e8 /* src/PxPvdObjectRegistrar.cpp */,
FFFD2300f9507fed2300f950 /* src/PxPvdProfileZoneClient.cpp */,
FFFD2300f9b87fed2300f9b8 /* src/PxPvdUserRenderer.cpp */,
FFFD2300fa207fed2300fa20 /* src/PxProfileBase.h */,
FFFD2300fa887fed2300fa88 /* src/PxProfileCompileTimeEventFilter.h */,
FFFD2300faf07fed2300faf0 /* src/PxProfileContextProvider.h */,
FFFD2300fb587fed2300fb58 /* src/PxProfileContextProviderImpl.h */,
FFFD2300fbc07fed2300fbc0 /* src/PxProfileDataBuffer.h */,
FFFD2300fc287fed2300fc28 /* src/PxProfileDataParsing.h */,
FFFD2300fc907fed2300fc90 /* src/PxProfileEventBuffer.h */,
FFFD2300fcf87fed2300fcf8 /* src/PxProfileEventBufferAtomic.h */,
FFFD2300fd607fed2300fd60 /* src/PxProfileEventBufferClient.h */,
FFFD2300fdc87fed2300fdc8 /* src/PxProfileEventBufferClientManager.h */,
FFFD2300fe307fed2300fe30 /* src/PxProfileEventFilter.h */,
FFFD2300fe987fed2300fe98 /* src/PxProfileEventHandler.h */,
FFFD2300ff007fed2300ff00 /* src/PxProfileEventId.h */,
FFFD2300ff687fed2300ff68 /* src/PxProfileEventMutex.h */,
FFFD2300ffd07fed2300ffd0 /* src/PxProfileEventNames.h */,
FFFD230100387fed23010038 /* src/PxProfileEventParser.h */,
FFFD230100a07fed230100a0 /* src/PxProfileEventSender.h */,
FFFD230101087fed23010108 /* src/PxProfileEventSerialization.h */,
FFFD230101707fed23010170 /* src/PxProfileEventSystem.h */,
FFFD230101d87fed230101d8 /* src/PxProfileEvents.h */,
FFFD230102407fed23010240 /* src/PxProfileMemory.h */,
FFFD230102a87fed230102a8 /* src/PxProfileMemoryBuffer.h */,
FFFD230103107fed23010310 /* src/PxProfileMemoryEventBuffer.h */,
FFFD230103787fed23010378 /* src/PxProfileMemoryEventParser.h */,
FFFD230103e07fed230103e0 /* src/PxProfileMemoryEventRecorder.h */,
FFFD230104487fed23010448 /* src/PxProfileMemoryEventReflexiveWriter.h */,
FFFD230104b07fed230104b0 /* src/PxProfileMemoryEventSummarizer.h */,
FFFD230105187fed23010518 /* src/PxProfileMemoryEventTypes.h */,
FFFD230105807fed23010580 /* src/PxProfileMemoryEvents.h */,
FFFD230105e87fed230105e8 /* src/PxProfileScopedEvent.h */,
FFFD230106507fed23010650 /* src/PxProfileScopedMutexLock.h */,
FFFD230106b87fed230106b8 /* src/PxProfileZone.h */,
FFFD230107207fed23010720 /* src/PxProfileZoneImpl.h */,
FFFD230107887fed23010788 /* src/PxProfileZoneManager.h */,
FFFD230107f07fed230107f0 /* src/PxProfileZoneManagerImpl.h */,
FFFD230108587fed23010858 /* src/PxPvdBits.h */,
FFFD230108c07fed230108c0 /* src/PxPvdByteStreams.h */,
FFFD230109287fed23010928 /* src/PxPvdCommStreamEventSink.h */,
FFFD230109907fed23010990 /* src/PxPvdCommStreamEvents.h */,
FFFD230109f87fed230109f8 /* src/PxPvdCommStreamSDKEventTypes.h */,
FFFD23010a607fed23010a60 /* src/PxPvdCommStreamTypes.h */,
FFFD23010ac87fed23010ac8 /* src/PxPvdDefaultFileTransport.h */,
FFFD23010b307fed23010b30 /* src/PxPvdDefaultSocketTransport.h */,
FFFD23010b987fed23010b98 /* src/PxPvdFoundation.h */,
FFFD23010c007fed23010c00 /* src/PxPvdImpl.h */,
FFFD23010c687fed23010c68 /* src/PxPvdInternalByteStreams.h */,
FFFD23010cd07fed23010cd0 /* src/PxPvdMarshalling.h */,
FFFD23010d387fed23010d38 /* src/PxPvdMemClient.h */,
FFFD23010da07fed23010da0 /* src/PxPvdObjectModel.h */,
FFFD23010e087fed23010e08 /* src/PxPvdObjectModelInternalTypeDefs.h */,
FFFD23010e707fed23010e70 /* src/PxPvdObjectModelInternalTypes.h */,
FFFD23010ed87fed23010ed8 /* src/PxPvdObjectModelMetaData.h */,
FFFD23010f407fed23010f40 /* src/PxPvdObjectRegistrar.h */,
FFFD23010fa87fed23010fa8 /* src/PxPvdProfileZoneClient.h */,
FFFD230110107fed23011010 /* src/PxPvdUserRenderImpl.h */,
FFFD230110787fed23011078 /* src/PxPvdUserRenderTypes.h */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFB22e271907fed22e27190 /* LowLevel */ = {
isa = PBXGroup;
children = (
FFFB22e2c0707fed22e2c070 /* API Source */,
FFFB22e2c0987fed22e2c098 /* API Includes */,
FFFB22e2c0c07fed22e2c0c0 /* Software Source */,
FFFB22e2c0e87fed22e2c0e8 /* Software Includes */,
FFFB22e2c1107fed22e2c110 /* Common Source */,
FFFB22e2c1387fed22e2c138 /* Common Includes */,
);
name = "LowLevel";
sourceTree = "<group>";
};
FFFB22e2c0707fed22e2c070 /* API Source */ = {
isa = PBXGroup;
children = (
FFFD22e28e807fed22e28e80 /* px_globals.cpp */,
);
name = "API Source";
sourceTree = SOURCE_ROOT;
};
FFFB22e2c0987fed22e2c098 /* API Includes */ = {
isa = PBXGroup;
children = (
FFFD22e2baf07fed22e2baf0 /* PxsMaterialCore.h */,
FFFD22e2bb587fed22e2bb58 /* PxsMaterialManager.h */,
FFFD22e2bbc07fed22e2bbc0 /* PxvConfig.h */,
FFFD22e2bc287fed22e2bc28 /* PxvContext.h */,
FFFD22e2bc907fed22e2bc90 /* PxvDynamics.h */,
FFFD22e2bcf87fed22e2bcf8 /* PxvGeometry.h */,
FFFD22e2bd607fed22e2bd60 /* PxvGlobals.h */,
FFFD22e2bdc87fed22e2bdc8 /* PxvManager.h */,
FFFD22e2be307fed22e2be30 /* PxvSimStats.h */,
);
name = "API Includes";
sourceTree = SOURCE_ROOT;
};
FFFB22e2c0c07fed22e2c0c0 /* Software Source */ = {
isa = PBXGroup;
children = (
FFFD22e2e4a07fed22e2e4a0 /* PxsCCD.cpp */,
FFFD22e2e5087fed22e2e508 /* PxsContactManager.cpp */,
FFFD22e2e5707fed22e2e570 /* PxsContext.cpp */,
FFFD22e2e5d87fed22e2e5d8 /* PxsDefaultMemoryManager.cpp */,
FFFD22e2e6407fed22e2e640 /* PxsIslandSim.cpp */,
FFFD22e2e6a87fed22e2e6a8 /* PxsMaterialCombiner.cpp */,
FFFD22e2e7107fed22e2e710 /* PxsNphaseImplementationContext.cpp */,
FFFD22e2e7787fed22e2e778 /* PxsSimpleIslandManager.cpp */,
);
name = "Software Source";
sourceTree = SOURCE_ROOT;
};
FFFB22e2c0e87fed22e2c0e8 /* Software Includes */ = {
isa = PBXGroup;
children = (
FFFD23018e007fed23018e00 /* PxsBodySim.h */,
FFFD23018e687fed23018e68 /* PxsCCD.h */,
FFFD23018ed07fed23018ed0 /* PxsContactManager.h */,
FFFD23018f387fed23018f38 /* PxsContactManagerState.h */,
FFFD23018fa07fed23018fa0 /* PxsContext.h */,
FFFD230190087fed23019008 /* PxsDefaultMemoryManager.h */,
FFFD230190707fed23019070 /* PxsHeapMemoryAllocator.h */,
FFFD230190d87fed230190d8 /* PxsIncrementalConstraintPartitioning.h */,
FFFD230191407fed23019140 /* PxsIslandManagerTypes.h */,
FFFD230191a87fed230191a8 /* PxsIslandSim.h */,
FFFD230192107fed23019210 /* PxsKernelWrangler.h */,
FFFD230192787fed23019278 /* PxsMaterialCombiner.h */,
FFFD230192e07fed230192e0 /* PxsMemoryManager.h */,
FFFD230193487fed23019348 /* PxsNphaseImplementationContext.h */,
FFFD230193b07fed230193b0 /* PxsRigidBody.h */,
FFFD230194187fed23019418 /* PxsShapeSim.h */,
FFFD230194807fed23019480 /* PxsSimpleIslandManager.h */,
FFFD230194e87fed230194e8 /* PxsSimulationController.h */,
FFFD230195507fed23019550 /* PxsTransformCache.h */,
FFFD230195b87fed230195b8 /* PxvNphaseImplementationContext.h */,
);
name = "Software Includes";
sourceTree = SOURCE_ROOT;
};
FFFB22e2c1107fed22e2c110 /* Common Source */ = {
isa = PBXGroup;
children = (
FFFD230142007fed23014200 /* collision/PxcContact.cpp */,
FFFD230142687fed23014268 /* pipeline/PxcContactCache.cpp */,
FFFD230142d07fed230142d0 /* pipeline/PxcContactMethodImpl.cpp */,
FFFD230143387fed23014338 /* pipeline/PxcMaterialHeightField.cpp */,
FFFD230143a07fed230143a0 /* pipeline/PxcMaterialMesh.cpp */,
FFFD230144087fed23014408 /* pipeline/PxcMaterialMethodImpl.cpp */,
FFFD230144707fed23014470 /* pipeline/PxcMaterialShape.cpp */,
FFFD230144d87fed230144d8 /* pipeline/PxcNpBatch.cpp */,
FFFD230145407fed23014540 /* pipeline/PxcNpCacheStreamPair.cpp */,
FFFD230145a87fed230145a8 /* pipeline/PxcNpContactPrepShared.cpp */,
FFFD230146107fed23014610 /* pipeline/PxcNpMemBlockPool.cpp */,
FFFD230146787fed23014678 /* pipeline/PxcNpThreadContext.cpp */,
);
name = "Common Source";
sourceTree = SOURCE_ROOT;
};
FFFB22e2c1387fed22e2c138 /* Common Includes */ = {
isa = PBXGroup;
children = (
FFFD230180007fed23018000 /* collision/PxcContactMethodImpl.h */,
FFFD230180687fed23018068 /* pipeline/PxcCCDStateStreamPair.h */,
FFFD230180d07fed230180d0 /* pipeline/PxcConstraintBlockStream.h */,
FFFD230181387fed23018138 /* pipeline/PxcContactCache.h */,
FFFD230181a07fed230181a0 /* pipeline/PxcMaterialMethodImpl.h */,
FFFD230182087fed23018208 /* pipeline/PxcNpBatch.h */,
FFFD230182707fed23018270 /* pipeline/PxcNpCache.h */,
FFFD230182d87fed230182d8 /* pipeline/PxcNpCacheStreamPair.h */,
FFFD230183407fed23018340 /* pipeline/PxcNpContactPrepShared.h */,
FFFD230183a87fed230183a8 /* pipeline/PxcNpMemBlockPool.h */,
FFFD230184107fed23018410 /* pipeline/PxcNpThreadContext.h */,
FFFD230184787fed23018478 /* pipeline/PxcNpWorkUnit.h */,
FFFD230184e07fed230184e0 /* pipeline/PxcRigidBody.h */,
FFFD230185487fed23018548 /* utils/PxcScratchAllocator.h */,
FFFD230185b07fed230185b0 /* utils/PxcThreadCoherentCache.h */,
);
name = "Common Includes";
sourceTree = SOURCE_ROOT;
};
FFFB22dbccc07fed22dbccc0 /* LowLevelAABB */ = {
isa = PBXGroup;
children = (
FFFB22dc5a407fed22dc5a40 /* include */,
FFFB22dc5a687fed22dc5a68 /* src */,
);
name = "LowLevelAABB";
sourceTree = "<group>";
};
FFFB22dc5a407fed22dc5a40 /* include */ = {
isa = PBXGroup;
children = (
FFFD22dc5a907fed22dc5a90 /* BpAABBManagerTasks.h */,
FFFD22dc5af87fed22dc5af8 /* BpBroadPhase.h */,
FFFD22dc5b607fed22dc5b60 /* BpBroadPhaseUpdate.h */,
FFFD22dc5bc87fed22dc5bc8 /* BpSimpleAABBManager.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB22dc5a687fed22dc5a68 /* src */ = {
isa = PBXGroup;
children = (
FFFD221bc2007fed221bc200 /* BpBroadPhaseMBP.h */,
FFFD221bc2687fed221bc268 /* BpBroadPhaseMBPCommon.h */,
FFFD221bc2d07fed221bc2d0 /* BpBroadPhaseSap.h */,
FFFD221bc3387fed221bc338 /* BpBroadPhaseSapAux.h */,
FFFD221bc3a07fed221bc3a0 /* BpMBPTasks.h */,
FFFD221bc4087fed221bc408 /* BpSAPTasks.h */,
FFFD221bc4707fed221bc470 /* BpBroadPhase.cpp */,
FFFD221bc4d87fed221bc4d8 /* BpBroadPhaseMBP.cpp */,
FFFD221bc5407fed221bc540 /* BpBroadPhaseSap.cpp */,
FFFD221bc5a87fed221bc5a8 /* BpBroadPhaseSapAux.cpp */,
FFFD221bc6107fed221bc610 /* BpMBPTasks.cpp */,
FFFD221bc6787fed221bc678 /* BpSAPTasks.cpp */,
FFFD221bc6e07fed221bc6e0 /* BpSimpleAABBManager.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFB22e511a07fed22e511a0 /* LowLevelDynamics */ = {
isa = PBXGroup;
children = (
FFFB22e48e707fed22e48e70 /* Dynamics Source */,
FFFB22e48e987fed22e48e98 /* Dynamics Includes */,
FFFB22e48ec07fed22e48ec0 /* Dynamics Internal Includes */,
);
name = "LowLevelDynamics";
sourceTree = "<group>";
};
FFFB22e48e707fed22e48e70 /* Dynamics Source */ = {
isa = PBXGroup;
children = (
FFFD230226007fed23022600 /* DyArticulation.cpp */,
FFFD230226687fed23022668 /* DyArticulationContactPrep.cpp */,
FFFD230226d07fed230226d0 /* DyArticulationContactPrepPF.cpp */,
FFFD230227387fed23022738 /* DyArticulationHelper.cpp */,
FFFD230227a07fed230227a0 /* DyArticulationSIMD.cpp */,
FFFD230228087fed23022808 /* DyArticulationScalar.cpp */,
FFFD230228707fed23022870 /* DyConstraintPartition.cpp */,
FFFD230228d87fed230228d8 /* DyConstraintSetup.cpp */,
FFFD230229407fed23022940 /* DyConstraintSetupBlock.cpp */,
FFFD230229a87fed230229a8 /* DyContactPrep.cpp */,
FFFD23022a107fed23022a10 /* DyContactPrep4.cpp */,
FFFD23022a787fed23022a78 /* DyContactPrep4PF.cpp */,
FFFD23022ae07fed23022ae0 /* DyContactPrepPF.cpp */,
FFFD23022b487fed23022b48 /* DyDynamics.cpp */,
FFFD23022bb07fed23022bb0 /* DyFrictionCorrelation.cpp */,
FFFD23022c187fed23022c18 /* DyRigidBodyToSolverBody.cpp */,
FFFD23022c807fed23022c80 /* DySolverConstraints.cpp */,
FFFD23022ce87fed23022ce8 /* DySolverConstraintsBlock.cpp */,
FFFD23022d507fed23022d50 /* DySolverControl.cpp */,
FFFD23022db87fed23022db8 /* DySolverControlPF.cpp */,
FFFD23022e207fed23022e20 /* DySolverPFConstraints.cpp */,
FFFD23022e887fed23022e88 /* DySolverPFConstraintsBlock.cpp */,
FFFD23022ef07fed23022ef0 /* DyThreadContext.cpp */,
FFFD23022f587fed23022f58 /* DyThresholdTable.cpp */,
);
name = "Dynamics Source";
sourceTree = SOURCE_ROOT;
};
FFFB22e48e987fed22e48e98 /* Dynamics Includes */ = {
isa = PBXGroup;
children = (
FFFD22e574207fed22e57420 /* DyArticulation.h */,
FFFD22e574887fed22e57488 /* DyConstraint.h */,
FFFD22e574f07fed22e574f0 /* DyConstraintWriteBack.h */,
FFFD22e575587fed22e57558 /* DyContext.h */,
FFFD22e575c07fed22e575c0 /* DySleepingConfigulation.h */,
FFFD22e576287fed22e57628 /* DyThresholdTable.h */,
);
name = "Dynamics Includes";
sourceTree = SOURCE_ROOT;
};
FFFB22e48ec07fed22e48ec0 /* Dynamics Internal Includes */ = {
isa = PBXGroup;
children = (
FFFD230238007fed23023800 /* DyArticulationContactPrep.h */,
FFFD230238687fed23023868 /* DyArticulationFnsDebug.h */,
FFFD230238d07fed230238d0 /* DyArticulationFnsScalar.h */,
FFFD230239387fed23023938 /* DyArticulationFnsSimd.h */,
FFFD230239a07fed230239a0 /* DyArticulationHelper.h */,
FFFD23023a087fed23023a08 /* DyArticulationPImpl.h */,
FFFD23023a707fed23023a70 /* DyArticulationReference.h */,
FFFD23023ad87fed23023ad8 /* DyArticulationScalar.h */,
FFFD23023b407fed23023b40 /* DyArticulationUtils.h */,
FFFD23023ba87fed23023ba8 /* DyBodyCoreIntegrator.h */,
FFFD23023c107fed23023c10 /* DyConstraintPartition.h */,
FFFD23023c787fed23023c78 /* DyConstraintPrep.h */,
FFFD23023ce07fed23023ce0 /* DyContactPrep.h */,
FFFD23023d487fed23023d48 /* DyContactPrepShared.h */,
FFFD23023db07fed23023db0 /* DyContactReduction.h */,
FFFD23023e187fed23023e18 /* DyCorrelationBuffer.h */,
FFFD23023e807fed23023e80 /* DyDynamics.h */,
FFFD23023ee87fed23023ee8 /* DyFrictionPatch.h */,
FFFD23023f507fed23023f50 /* DyFrictionPatchStreamPair.h */,
FFFD23023fb87fed23023fb8 /* DySolverBody.h */,
FFFD230240207fed23024020 /* DySolverConstraint1D.h */,
FFFD230240887fed23024088 /* DySolverConstraint1D4.h */,
FFFD230240f07fed230240f0 /* DySolverConstraintDesc.h */,
FFFD230241587fed23024158 /* DySolverConstraintExtShared.h */,
FFFD230241c07fed230241c0 /* DySolverConstraintTypes.h */,
FFFD230242287fed23024228 /* DySolverConstraintsShared.h */,
FFFD230242907fed23024290 /* DySolverContact.h */,
FFFD230242f87fed230242f8 /* DySolverContact4.h */,
FFFD230243607fed23024360 /* DySolverContactPF.h */,
FFFD230243c87fed230243c8 /* DySolverContactPF4.h */,
FFFD230244307fed23024430 /* DySolverContext.h */,
FFFD230244987fed23024498 /* DySolverControl.h */,
FFFD230245007fed23024500 /* DySolverControlPF.h */,
FFFD230245687fed23024568 /* DySolverCore.h */,
FFFD230245d07fed230245d0 /* DySolverExt.h */,
FFFD230246387fed23024638 /* DySpatial.h */,
FFFD230246a07fed230246a0 /* DyThreadContext.h */,
);
name = "Dynamics Internal Includes";
sourceTree = SOURCE_ROOT;
};
FFFB2167fad07fed2167fad0 /* LowLevelCloth */ = {
isa = PBXGroup;
children = (
FFFB214815a07fed214815a0 /* include */,
FFFB214815c87fed214815c8 /* src */,
);
name = "LowLevelCloth";
sourceTree = "<group>";
};
FFFB214815a07fed214815a0 /* include */ = {
isa = PBXGroup;
children = (
FFFD216811a07fed216811a0 /* Cloth.h */,
FFFD216812087fed21681208 /* Fabric.h */,
FFFD216812707fed21681270 /* Factory.h */,
FFFD216812d87fed216812d8 /* PhaseConfig.h */,
FFFD216813407fed21681340 /* Range.h */,
FFFD216813a87fed216813a8 /* Solver.h */,
FFFD216814107fed21681410 /* Types.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB214815c87fed214815c8 /* src */ = {
isa = PBXGroup;
children = (
FFFD21826e007fed21826e00 /* Allocator.h */,
FFFD21826e687fed21826e68 /* Array.h */,
FFFD21826ed07fed21826ed0 /* BoundingBox.h */,
FFFD21826f387fed21826f38 /* ClothBase.h */,
FFFD21826fa07fed21826fa0 /* ClothImpl.h */,
FFFD218270087fed21827008 /* IndexPair.h */,
FFFD218270707fed21827070 /* IterationState.h */,
FFFD218270d87fed218270d8 /* MovingAverage.h */,
FFFD218271407fed21827140 /* PointInterpolator.h */,
FFFD218271a87fed218271a8 /* Simd.h */,
FFFD218272107fed21827210 /* Simd4f.h */,
FFFD218272787fed21827278 /* Simd4i.h */,
FFFD218272e07fed218272e0 /* SimdTypes.h */,
FFFD218273487fed21827348 /* StackAllocator.h */,
FFFD218273b07fed218273b0 /* SwCloth.h */,
FFFD218274187fed21827418 /* SwClothData.h */,
FFFD218274807fed21827480 /* SwCollision.h */,
FFFD218274e87fed218274e8 /* SwCollisionHelpers.h */,
FFFD218275507fed21827550 /* SwFabric.h */,
FFFD218275b87fed218275b8 /* SwFactory.h */,
FFFD218276207fed21827620 /* SwInterCollision.h */,
FFFD218276887fed21827688 /* SwSelfCollision.h */,
FFFD218276f07fed218276f0 /* SwSolver.h */,
FFFD218277587fed21827758 /* SwSolverKernel.h */,
FFFD218277c07fed218277c0 /* TripletScheduler.h */,
FFFD218278287fed21827828 /* Vec4T.h */,
FFFD218278907fed21827890 /* Allocator.cpp */,
FFFD218278f87fed218278f8 /* Factory.cpp */,
FFFD218279607fed21827960 /* PhaseConfig.cpp */,
FFFD218279c87fed218279c8 /* SwCloth.cpp */,
FFFD21827a307fed21827a30 /* SwClothData.cpp */,
FFFD21827a987fed21827a98 /* SwCollision.cpp */,
FFFD21827b007fed21827b00 /* SwFabric.cpp */,
FFFD21827b687fed21827b68 /* SwFactory.cpp */,
FFFD21827bd07fed21827bd0 /* SwInterCollision.cpp */,
FFFD21827c387fed21827c38 /* SwSelfCollision.cpp */,
FFFD21827ca07fed21827ca0 /* SwSolver.cpp */,
FFFD21827d087fed21827d08 /* SwSolverKernel.cpp */,
FFFD21827d707fed21827d70 /* TripletScheduler.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFB22dd04c07fed22dd04c0 /* LowLevelParticles */ = {
isa = PBXGroup;
children = (
FFFB22ddb8507fed22ddb850 /* include */,
FFFB22ddb8787fed22ddb878 /* src */,
);
name = "LowLevelParticles";
sourceTree = "<group>";
};
FFFB22ddb8507fed22ddb850 /* include */ = {
isa = PBXGroup;
children = (
FFFD221bb2007fed221bb200 /* PtBodyTransformVault.h */,
FFFD221bb2687fed221bb268 /* PtContext.h */,
FFFD221bb2d07fed221bb2d0 /* PtGridCellVector.h */,
FFFD221bb3387fed221bb338 /* PtParticle.h */,
FFFD221bb3a07fed221bb3a0 /* PtParticleContactManagerStream.h */,
FFFD221bb4087fed221bb408 /* PtParticleData.h */,
FFFD221bb4707fed221bb470 /* PtParticleShape.h */,
FFFD221bb4d87fed221bb4d8 /* PtParticleSystemCore.h */,
FFFD221bb5407fed221bb540 /* PtParticleSystemFlags.h */,
FFFD221bb5a87fed221bb5a8 /* PtParticleSystemSim.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB22ddb8787fed22ddb878 /* src */ = {
isa = PBXGroup;
children = (
FFFD221c64007fed221c6400 /* PtBatcher.h */,
FFFD221c64687fed221c6468 /* PtCollision.h */,
FFFD221c64d07fed221c64d0 /* PtCollisionData.h */,
FFFD221c65387fed221c6538 /* PtCollisionHelper.h */,
FFFD221c65a07fed221c65a0 /* PtCollisionMethods.h */,
FFFD221c66087fed221c6608 /* PtCollisionParameters.h */,
FFFD221c66707fed221c6670 /* PtConfig.h */,
FFFD221c66d87fed221c66d8 /* PtConstants.h */,
FFFD221c67407fed221c6740 /* PtContextCpu.h */,
FFFD221c67a87fed221c67a8 /* PtDynamicHelper.h */,
FFFD221c68107fed221c6810 /* PtDynamics.h */,
FFFD221c68787fed221c6878 /* PtDynamicsKernels.h */,
FFFD221c68e07fed221c68e0 /* PtDynamicsParameters.h */,
FFFD221c69487fed221c6948 /* PtDynamicsTempBuffers.h */,
FFFD221c69b07fed221c69b0 /* PtHeightFieldAabbTest.h */,
FFFD221c6a187fed221c6a18 /* PtPacketSections.h */,
FFFD221c6a807fed221c6a80 /* PtParticleCell.h */,
FFFD221c6ae87fed221c6ae8 /* PtParticleOpcodeCache.h */,
FFFD221c6b507fed221c6b50 /* PtParticleShapeCpu.h */,
FFFD221c6bb87fed221c6bb8 /* PtParticleSystemSimCpu.h */,
FFFD221c6c207fed221c6c20 /* PtSpatialHash.h */,
FFFD221c6c887fed221c6c88 /* PtSpatialHashHelper.h */,
FFFD221c6cf07fed221c6cf0 /* PtTwoWayData.h */,
FFFD221c6d587fed221c6d58 /* PtBatcher.cpp */,
FFFD221c6dc07fed221c6dc0 /* PtBodyTransformVault.cpp */,
FFFD221c6e287fed221c6e28 /* PtCollision.cpp */,
FFFD221c6e907fed221c6e90 /* PtCollisionBox.cpp */,
FFFD221c6ef87fed221c6ef8 /* PtCollisionCapsule.cpp */,
FFFD221c6f607fed221c6f60 /* PtCollisionConvex.cpp */,
FFFD221c6fc87fed221c6fc8 /* PtCollisionMesh.cpp */,
FFFD221c70307fed221c7030 /* PtCollisionPlane.cpp */,
FFFD221c70987fed221c7098 /* PtCollisionSphere.cpp */,
FFFD221c71007fed221c7100 /* PtContextCpu.cpp */,
FFFD221c71687fed221c7168 /* PtDynamics.cpp */,
FFFD221c71d07fed221c71d0 /* PtParticleData.cpp */,
FFFD221c72387fed221c7238 /* PtParticleShapeCpu.cpp */,
FFFD221c72a07fed221c72a0 /* PtParticleSystemSimCpu.cpp */,
FFFD221c73087fed221c7308 /* PtSpatialHash.cpp */,
FFFD221c73707fed221c7370 /* PtSpatialLocalHash.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFB23a17ac07fed23a17ac0 /* PxTask */ = {
isa = PBXGroup;
children = (
FFFB23a180a07fed23a180a0 /* include */,
FFFB23a180c87fed23a180c8 /* src */,
);
name = "PxTask";
sourceTree = "<group>";
};
FFFB23a180a07fed23a180a0 /* include */ = {
isa = PBXGroup;
children = (
FFFD23a159707fed23a15970 /* PxCpuDispatcher.h */,
FFFD23a159d87fed23a159d8 /* PxGpuDispatcher.h */,
FFFD23a15a407fed23a15a40 /* PxGpuTask.h */,
FFFD23a15aa87fed23a15aa8 /* PxTask.h */,
FFFD23a15b107fed23a15b10 /* PxTaskDefine.h */,
FFFD23a15b787fed23a15b78 /* PxTaskManager.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB23a180c87fed23a180c8 /* src */ = {
isa = PBXGroup;
children = (
FFFD23a15c707fed23a15c70 /* src/TaskManager.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFB23d010307fed23d01030 /* PsFastXml */ = {
isa = PBXGroup;
children = (
FFFB23d016107fed23d01610 /* include */,
FFFB23d016387fed23d01638 /* src */,
);
name = "PsFastXml";
sourceTree = "<group>";
};
FFFB23d016107fed23d01610 /* include */ = {
isa = PBXGroup;
children = (
FFFD23d06ed07fed23d06ed0 /* PsFastXml.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB23d016387fed23d01638 /* src */ = {
isa = PBXGroup;
children = (
FFFD23d016a07fed23d016a0 /* PsFastXml.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
FFFA23d0c2e07fed23d0c2e0 /* PhysX */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF623d0c2e07fed23d0c2e0 /* Build configuration list for PBXNativeTarget "PhysX" */;
buildPhases = (
FFF223d0c2e07fed23d0c2e0,
FFF823d0c2e07fed23d0c2e0,
FFFC23d0c2e07fed23d0c2e0,
);
buildRules = (
);
dependencies = (
FFF423d13a207fed23d13a20, /* LowLevel */
FFF423d15da07fed23d15da0, /* LowLevelAABB */
FFF423d189107fed23d18910, /* LowLevelCloth */
FFF423d15e007fed23d15e00, /* LowLevelDynamics */
FFF423d189707fed23d18970, /* LowLevelParticles */
FFF423d18f007fed23d18f00, /* PhysXCommon */
FFF423d0c5d07fed23d0c5d0, /* PxFoundation */
FFF423d0c2807fed23d0c280, /* PxPvdSDK */
FFF423d191d07fed23d191d0, /* PxTask */
FFF423d191407fed23d19140, /* SceneQuery */
FFF423d191a07fed23d191a0, /* SimulationController */
);
name = "PhysX";
productName = "PhysX";
productReference = FFFD23d0c2e07fed23d0c2e0 /* PhysX */;
productType = "com.apple.product-type.library.static";
};
FFFA23d191e07fed23d191e0 /* PhysXCharacterKinematic */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF623d191e07fed23d191e0 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */;
buildPhases = (
FFF223d191e07fed23d191e0,
FFF823d191e07fed23d191e0,
FFFC23d191e07fed23d191e0,
);
buildRules = (
);
dependencies = (
FFF423d1c0807fed23d1c080, /* PhysXCommon */
FFF423d1ab007fed23d1ab00, /* PhysXExtensions */
FFF423d1b8607fed23d1b860, /* PxFoundation */
);
name = "PhysXCharacterKinematic";
productName = "PhysXCharacterKinematic";
productReference = FFFD23d191e07fed23d191e0 /* PhysXCharacterKinematic */;
productType = "com.apple.product-type.library.static";
};
FFFA23d165107fed23d16510 /* PhysXVehicle */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF623d165107fed23d16510 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */;
buildPhases = (
FFF223d165107fed23d16510,
FFF823d165107fed23d16510,
FFFC23d165107fed23d16510,
);
buildRules = (
);
dependencies = (
);
name = "PhysXVehicle";
productName = "PhysXVehicle";
productReference = FFFD23d165107fed23d16510 /* PhysXVehicle */;
productType = "com.apple.product-type.library.static";
};
FFFA23d27c207fed23d27c20 /* PhysXExtensions */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF623d27c207fed23d27c20 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */;
buildPhases = (
FFF223d27c207fed23d27c20,
FFF823d27c207fed23d27c20,
FFFC23d27c207fed23d27c20,
);
buildRules = (
);
dependencies = (
FFF423d25b007fed23d25b00, /* PsFastXml */
);
name = "PhysXExtensions";
productName = "PhysXExtensions";
productReference = FFFD23d27c207fed23d27c20 /* PhysXExtensions */;
productType = "com.apple.product-type.library.static";
};
FFFA23d38e307fed23d38e30 /* SceneQuery */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF623d38e307fed23d38e30 /* Build configuration list for PBXNativeTarget "SceneQuery" */;
buildPhases = (
FFF223d38e307fed23d38e30,
FFF823d38e307fed23d38e30,
FFFC23d38e307fed23d38e30,
);
buildRules = (
);
dependencies = (
);
name = "SceneQuery";
productName = "SceneQuery";
productReference = FFFD23d38e307fed23d38e30 /* SceneQuery */;
productType = "com.apple.product-type.library.static";
};
FFFA23d3d4407fed23d3d440 /* SimulationController */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF623d3d4407fed23d3d440 /* Build configuration list for PBXNativeTarget "SimulationController" */;
buildPhases = (
FFF223d3d4407fed23d3d440,
FFF823d3d4407fed23d3d440,
FFFC23d3d4407fed23d3d440,
);
buildRules = (
);
dependencies = (
);
name = "SimulationController";
productName = "SimulationController";
productReference = FFFD23d3d4407fed23d3d440 /* SimulationController */;
productType = "com.apple.product-type.library.static";
};
FFFA238940707fed23894070 /* PhysXCooking */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF6238940707fed23894070 /* Build configuration list for PBXNativeTarget "PhysXCooking" */;
buildPhases = (
FFF2238940707fed23894070,
FFF8238940707fed23894070,
FFFC238940707fed23894070,
);
buildRules = (
);
dependencies = (
FFF4238864a07fed238864a0, /* PhysXCommon */
FFF42388da007fed2388da00, /* PhysXExtensions */
FFF4238952407fed23895240, /* PxFoundation */
);
name = "PhysXCooking";
productName = "PhysXCooking";
productReference = FFFD238940707fed23894070 /* PhysXCooking */;
productType = "com.apple.product-type.library.static";
};
FFFA2292ec707fed2292ec70 /* PhysXCommon */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF62292ec707fed2292ec70 /* Build configuration list for PBXNativeTarget "PhysXCommon" */;
buildPhases = (
FFF22292ec707fed2292ec70,
FFF82292ec707fed2292ec70,
FFFC2292ec707fed2292ec70,
);
buildRules = (
);
dependencies = (
FFF4229275e07fed229275e0, /* PxFoundation */
);
name = "PhysXCommon";
productName = "PhysXCommon";
productReference = FFFD2292ec707fed2292ec70 /* PhysXCommon */;
productType = "com.apple.product-type.library.static";
};
FFFA22914a507fed22914a50 /* PxFoundation */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF622914a507fed22914a50 /* Build configuration list for PBXNativeTarget "PxFoundation" */;
buildPhases = (
FFF222914a507fed22914a50,
FFF822914a507fed22914a50,
FFFC22914a507fed22914a50,
);
buildRules = (
);
dependencies = (
);
name = "PxFoundation";
productName = "PxFoundation";
productReference = FFFD22914a507fed22914a50 /* PxFoundation */;
productType = "com.apple.product-type.library.static";
};
FFFA22e098707fed22e09870 /* PxPvdSDK */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF622e098707fed22e09870 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */;
buildPhases = (
FFF222e098707fed22e09870,
FFF822e098707fed22e09870,
FFFC22e098707fed22e09870,
);
buildRules = (
);
dependencies = (
FFF422e0a6907fed22e0a690, /* PxFoundation */
);
name = "PxPvdSDK";
productName = "PxPvdSDK";
productReference = FFFD22e098707fed22e09870 /* PxPvdSDK */;
productType = "com.apple.product-type.library.static";
};
FFFA22e271907fed22e27190 /* LowLevel */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF622e271907fed22e27190 /* Build configuration list for PBXNativeTarget "LowLevel" */;
buildPhases = (
FFF222e271907fed22e27190,
FFF822e271907fed22e27190,
FFFC22e271907fed22e27190,
);
buildRules = (
);
dependencies = (
);
name = "LowLevel";
productName = "LowLevel";
productReference = FFFD22e271907fed22e27190 /* LowLevel */;
productType = "com.apple.product-type.library.static";
};
FFFA22dbccc07fed22dbccc0 /* LowLevelAABB */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF622dbccc07fed22dbccc0 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */;
buildPhases = (
FFF222dbccc07fed22dbccc0,
FFF822dbccc07fed22dbccc0,
FFFC22dbccc07fed22dbccc0,
);
buildRules = (
);
dependencies = (
);
name = "LowLevelAABB";
productName = "LowLevelAABB";
productReference = FFFD22dbccc07fed22dbccc0 /* LowLevelAABB */;
productType = "com.apple.product-type.library.static";
};
FFFA22e511a07fed22e511a0 /* LowLevelDynamics */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF622e511a07fed22e511a0 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */;
buildPhases = (
FFF222e511a07fed22e511a0,
FFF822e511a07fed22e511a0,
FFFC22e511a07fed22e511a0,
);
buildRules = (
);
dependencies = (
);
name = "LowLevelDynamics";
productName = "LowLevelDynamics";
productReference = FFFD22e511a07fed22e511a0 /* LowLevelDynamics */;
productType = "com.apple.product-type.library.static";
};
FFFA2167fad07fed2167fad0 /* LowLevelCloth */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF62167fad07fed2167fad0 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */;
buildPhases = (
FFF22167fad07fed2167fad0,
FFF82167fad07fed2167fad0,
FFFC2167fad07fed2167fad0,
);
buildRules = (
);
dependencies = (
);
name = "LowLevelCloth";
productName = "LowLevelCloth";
productReference = FFFD2167fad07fed2167fad0 /* LowLevelCloth */;
productType = "com.apple.product-type.library.static";
};
FFFA22dd04c07fed22dd04c0 /* LowLevelParticles */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF622dd04c07fed22dd04c0 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */;
buildPhases = (
FFF222dd04c07fed22dd04c0,
FFF822dd04c07fed22dd04c0,
FFFC22dd04c07fed22dd04c0,
);
buildRules = (
);
dependencies = (
);
name = "LowLevelParticles";
productName = "LowLevelParticles";
productReference = FFFD22dd04c07fed22dd04c0 /* LowLevelParticles */;
productType = "com.apple.product-type.library.static";
};
FFFA23a17ac07fed23a17ac0 /* PxTask */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF623a17ac07fed23a17ac0 /* Build configuration list for PBXNativeTarget "PxTask" */;
buildPhases = (
FFF223a17ac07fed23a17ac0,
FFF823a17ac07fed23a17ac0,
FFFC23a17ac07fed23a17ac0,
);
buildRules = (
);
dependencies = (
);
name = "PxTask";
productName = "PxTask";
productReference = FFFD23a17ac07fed23a17ac0 /* PxTask */;
productType = "com.apple.product-type.library.static";
};
FFFA23d010307fed23d01030 /* PsFastXml */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF623d010307fed23d01030 /* Build configuration list for PBXNativeTarget "PsFastXml" */;
buildPhases = (
FFF223d010307fed23d01030,
FFF823d010307fed23d01030,
FFFC23d010307fed23d01030,
);
buildRules = (
);
dependencies = (
);
name = "PsFastXml";
productName = "PsFastXml";
productReference = FFFD23d010307fed23d01030 /* PsFastXml */;
productType = "com.apple.product-type.library.static";
};
/* End PBXNativeTarget section */
/* Begin XCConfigurationList section */
FFF623d0c2e07fed23d0c2e0 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7221ef8007fed221ef800,
FFF7221efef07fed221efef0,
FFF7221f05e07fed221f05e0,
FFF7221f0cd07fed221f0cd0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "release";
};
FFF623d191e07fed23d191e0 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7221f14007fed221f1400,
FFF7221f1af07fed221f1af0,
FFF7221f21e07fed221f21e0,
FFF7221f28d07fed221f28d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF623d165107fed23d16510 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7221f30007fed221f3000,
FFF7221f36f07fed221f36f0,
FFF7221f3de07fed221f3de0,
FFF7221f44d07fed221f44d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF623d27c207fed23d27c20 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7221f4c007fed221f4c00,
FFF7221f52f07fed221f52f0,
FFF7221f59e07fed221f59e0,
FFF7221f60d07fed221f60d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF623d38e307fed23d38e30 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7221f68007fed221f6800,
FFF7221f6ef07fed221f6ef0,
FFF7221f75e07fed221f75e0,
FFF7221f7cd07fed221f7cd0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF623d3d4407fed23d3d440 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7221f84007fed221f8400,
FFF7221f8af07fed221f8af0,
FFF7221f91e07fed221f91e0,
FFF7221f98d07fed221f98d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF6238940707fed23894070 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7221fa0007fed221fa000,
FFF7221fa6f07fed221fa6f0,
FFF7221fade07fed221fade0,
FFF7221fb4d07fed221fb4d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "release";
};
FFF62292ec707fed2292ec70 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF72181ec007fed2181ec00,
FFF72181f2f07fed2181f2f0,
FFF72181f9e07fed2181f9e0,
FFF7218200d07fed218200d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "release";
};
FFF622914a507fed22914a50 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF72218f6007fed2218f600,
FFF72218fcf07fed2218fcf0,
FFF7221903e07fed221903e0,
FFF722190ad07fed22190ad0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF622e098707fed22e09870 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7230126007fed23012600,
FFF723012cf07fed23012cf0,
FFF7230133e07fed230133e0,
FFF723013ad07fed23013ad0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF622e271907fed22e27190 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF72301ae007fed2301ae00,
FFF72301b4f07fed2301b4f0,
FFF72301bbe07fed2301bbe0,
FFF72301c2d07fed2301c2d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF622dbccc07fed22dbccc0 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7221be0007fed221be000,
FFF7221be6f07fed221be6f0,
FFF7221bede07fed221bede0,
FFF7221bf4d07fed221bf4d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF622e511a07fed22e511a0 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7230252007fed23025200,
FFF7230258f07fed230258f0,
FFF723025fe07fed23025fe0,
FFF7230266d07fed230266d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF62167fad07fed2167fad0 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7218288007fed21828800,
FFF721828ef07fed21828ef0,
FFF7218295e07fed218295e0,
FFF721829cd07fed21829cd0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF622dd04c07fed22dd04c0 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7221c7e007fed221c7e00,
FFF7221c84f07fed221c84f0,
FFF7221c8be07fed221c8be0,
FFF7221c92d07fed221c92d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF623a17ac07fed23a17ac0 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF72183ce007fed2183ce00,
FFF72183d4f07fed2183d4f0,
FFF72183dbe07fed2183dbe0,
FFF72183e2d07fed2183e2d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF623d010307fed23d01030 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF724008a007fed24008a00,
FFF7240090f07fed240090f0,
FFF7240097e07fed240097e0,
FFF724009ed07fed24009ed0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF621719ec07fed21719ec0 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF3221ef8007fed221ef800 /* release */,
FFF3221efef07fed221efef0 /* debug */,
FFF3221f05e07fed221f05e0 /* checked */,
FFF3221f0cd07fed221f0cd0 /* profile */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "release";
};
/* End XCConfigurationList section */
/* Begin XCBuildConfiguration section */
FFF7221ef8007fed221ef800 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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/ios64", "../../../Lib/ios64", "../../../Lib/ios64", "../../../Lib/ios64", "../../../Lib/ios64", "../../../Lib/ios64", "../../../../PxShared/lib/ios64", "../../../../PxShared/lib/ios64", "../../../../PxShared/lib/ios64", "../../../Lib/ios64", "../../../Lib/ios64",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3";
};
name = "release";
};
FFF7221efef07fed221efef0 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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/ios64", "../../../Lib/ios64", "../../../Lib/ios64", "../../../Lib/ios64", "../../../Lib/ios64", "../../../Lib/ios64", "../../../../PxShared/lib/ios64", "../../../../PxShared/lib/ios64", "../../../../PxShared/lib/ios64", "../../../Lib/ios64", "../../../Lib/ios64",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3DEBUG";
};
name = "debug";
};
FFF7221f05e07fed221f05e0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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/ios64", "../../../Lib/ios64", "../../../Lib/ios64", "../../../Lib/ios64", "../../../Lib/ios64", "../../../Lib/ios64", "../../../../PxShared/lib/ios64", "../../../../PxShared/lib/ios64", "../../../../PxShared/lib/ios64", "../../../Lib/ios64", "../../../Lib/ios64",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CHECKED";
};
name = "checked";
};
FFF7221f0cd07fed221f0cd0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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/ios64", "../../../Lib/ios64", "../../../Lib/ios64", "../../../Lib/ios64", "../../../Lib/ios64", "../../../Lib/ios64", "../../../../PxShared/lib/ios64", "../../../../PxShared/lib/ios64", "../../../../PxShared/lib/ios64", "../../../Lib/ios64", "../../../Lib/ios64",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3PROFILE";
};
name = "profile";
};
FFF7221f14007fed221f1400 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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/ios64", "../../../Lib/ios64", "../../../../PxShared/lib/ios64",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CharacterKinematicDEBUG";
};
name = "debug";
};
FFF7221f1af07fed221f1af0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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/ios64", "../../../Lib/ios64", "../../../../PxShared/lib/ios64",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CharacterKinematicCHECKED";
};
name = "checked";
};
FFF7221f21e07fed221f21e0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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/ios64", "../../../Lib/ios64", "../../../../PxShared/lib/ios64",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CharacterKinematicPROFILE";
};
name = "profile";
};
FFF7221f28d07fed221f28d0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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/ios64", "../../../Lib/ios64", "../../../../PxShared/lib/ios64",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CharacterKinematic";
};
name = "release";
};
FFF7221f30007fed221f3000 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF7221f36f07fed221f36f0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF7221f3de07fed221f3de0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF7221f44d07fed221f44d0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF7221f4c007fed221f4c00 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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/ios64",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3ExtensionsDEBUG";
};
name = "debug";
};
FFF7221f52f07fed221f52f0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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/ios64",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3ExtensionsCHECKED";
};
name = "checked";
};
FFF7221f59e07fed221f59e0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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/ios64",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3ExtensionsPROFILE";
};
name = "profile";
};
FFF7221f60d07fed221f60d0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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/ios64",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3Extensions";
};
name = "release";
};
FFF7221f68007fed221f6800 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF7221f6ef07fed221f6ef0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF7221f75e07fed221f75e0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF7221f7cd07fed221f7cd0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF7221f84007fed221f8400 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF7221f8af07fed221f8af0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF7221f91e07fed221f91e0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF7221f98d07fed221f98d0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF7221fa0007fed221fa000 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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/ios64", "../../../Lib/ios64", "../../../../PxShared/lib/ios64",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3Cooking";
};
name = "release";
};
FFF7221fa6f07fed221fa6f0 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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/ios64", "../../../Lib/ios64", "../../../../PxShared/lib/ios64",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CookingDEBUG";
};
name = "debug";
};
FFF7221fade07fed221fade0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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/ios64", "../../../Lib/ios64", "../../../../PxShared/lib/ios64",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CookingCHECKED";
};
name = "checked";
};
FFF7221fb4d07fed221fb4d0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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/ios64", "../../../Lib/ios64", "../../../../PxShared/lib/ios64",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CookingPROFILE";
};
name = "profile";
};
FFF72181ec007fed2181ec00 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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/ios64",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3Common";
};
name = "release";
};
FFF72181f2f07fed2181f2f0 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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/ios64",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CommonDEBUG";
};
name = "debug";
};
FFF72181f9e07fed2181f9e0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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/ios64",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CommonCHECKED";
};
name = "checked";
};
FFF7218200d07fed218200d0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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/ios64",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CommonPROFILE";
};
name = "profile";
};
FFF72218f6007fed2218f600 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios64";
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";
};
FFF72218fcf07fed2218fcf0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios64";
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";
};
FFF7221903e07fed221903e0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios64";
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";
};
FFF722190ad07fed22190ad0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios64";
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";
};
FFF7230126007fed23012600 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios64";
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/ios64",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PxPvdSDKDEBUG";
};
name = "debug";
};
FFF723012cf07fed23012cf0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios64";
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/ios64",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PxPvdSDK";
};
name = "release";
};
FFF7230133e07fed230133e0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios64";
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/ios64",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PxPvdSDKCHECKED";
};
name = "checked";
};
FFF723013ad07fed23013ad0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios64";
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/ios64",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PxPvdSDKPROFILE";
};
name = "profile";
};
FFF72301ae007fed2301ae00 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF72301b4f07fed2301b4f0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF72301bbe07fed2301bbe0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF72301c2d07fed2301c2d0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF7221be0007fed221be000 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF7221be6f07fed221be6f0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF7221bede07fed221bede0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF7221bf4d07fed221bf4d0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF7230252007fed23025200 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF7230258f07fed230258f0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF723025fe07fed23025fe0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF7230266d07fed230266d0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF7218288007fed21828800 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF721828ef07fed21828ef0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF7218295e07fed218295e0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF721829cd07fed21829cd0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF7221c7e007fed221c7e00 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF7221c84f07fed221c84f0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF7221c8be07fed221c8be0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF7221c92d07fed221c92d0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../Lib/ios64";
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";
};
FFF72183ce007fed2183ce00 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios64";
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";
};
FFF72183d4f07fed2183d4f0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios64";
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";
};
FFF72183dbe07fed2183dbe0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios64";
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";
};
FFF72183e2d07fed2183e2d0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios64";
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";
};
FFF724008a007fed24008a00 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios64";
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";
};
FFF7240090f07fed240090f0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios64";
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";
};
FFF7240097e07fed240097e0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios64";
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";
};
FFF724009ed07fed24009ed0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; SDKROOT = iphoneos; CLANG_CXX_LIBRARY = "libc++";
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/ios64";
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";
};
FFF3221ef8007fed221ef800 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
};
name = "release";
};
FFF3221efef07fed221efef0 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
};
name = "debug";
};
FFF3221f05e07fed221f05e0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
};
name = "checked";
};
FFF3221f0cd07fed221f0cd0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
};
name = "profile";
};
/* End XCBuildConfiguration section */
/* Begin PBXProject section */
FFF921719ec07fed21719ec0 /* Project object */ = {
isa = PBXProject;
buildConfigurationList = FFF621719ec07fed21719ec0 /* Build configuration list for PBXProject PhysX */;
compatibilityVersion = "Xcode 3.2";
hasScannedForEncodings = 1;
mainGroup = FFFB21719f287fed21719f28 /* PhysX */;
targets = (
FFFA23d0c2e07fed23d0c2e0,
FFFA23d191e07fed23d191e0,
FFFA23d165107fed23d16510,
FFFA23d27c207fed23d27c20,
FFFA23d38e307fed23d38e30,
FFFA23d3d4407fed23d3d440,
FFFA238940707fed23894070,
FFFA2292ec707fed2292ec70,
FFFA22914a507fed22914a50,
FFFA22e098707fed22e09870,
FFFA22e271907fed22e27190,
FFFA22dbccc07fed22dbccc0,
FFFA22e511a07fed22e511a0,
FFFA2167fad07fed2167fad0,
FFFA22dd04c07fed22dd04c0,
FFFA23a17ac07fed23a17ac0,
FFFA23d010307fed23d01030,
);
};
/* End PBXProject section */
};
rootObject = FFF921719ec07fed21719ec0 /* Project object */;
}
|