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 */
FFFF95d22e707f8e95d22e70 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD95d430907f8e95d43090 /* SceneQuery */; };
FFFF95d22ed07f8e95d22ed0 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD95d477007f8e95d47700 /* SimulationController */; };
FFFF9603b8387f8e9603b838 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603b8387f8e9603b838 /* NpActor.cpp */; };
FFFF9603b8a07f8e9603b8a0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603b8a07f8e9603b8a0 /* NpAggregate.cpp */; };
FFFF9603b9087f8e9603b908 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603b9087f8e9603b908 /* NpArticulation.cpp */; };
FFFF9603b9707f8e9603b970 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603b9707f8e9603b970 /* NpArticulationJoint.cpp */; };
FFFF9603b9d87f8e9603b9d8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603b9d87f8e9603b9d8 /* NpArticulationLink.cpp */; };
FFFF9603ba407f8e9603ba40 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603ba407f8e9603ba40 /* NpBatchQuery.cpp */; };
FFFF9603baa87f8e9603baa8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603baa87f8e9603baa8 /* NpConstraint.cpp */; };
FFFF9603bb107f8e9603bb10 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603bb107f8e9603bb10 /* NpFactory.cpp */; };
FFFF9603bb787f8e9603bb78 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603bb787f8e9603bb78 /* NpMaterial.cpp */; };
FFFF9603bbe07f8e9603bbe0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603bbe07f8e9603bbe0 /* NpMetaData.cpp */; };
FFFF9603bc487f8e9603bc48 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603bc487f8e9603bc48 /* NpPhysics.cpp */; };
FFFF9603bcb07f8e9603bcb0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603bcb07f8e9603bcb0 /* NpPvdSceneQueryCollector.cpp */; };
FFFF9603bd187f8e9603bd18 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603bd187f8e9603bd18 /* NpReadCheck.cpp */; };
FFFF9603bd807f8e9603bd80 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603bd807f8e9603bd80 /* NpRigidDynamic.cpp */; };
FFFF9603bde87f8e9603bde8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603bde87f8e9603bde8 /* NpRigidStatic.cpp */; };
FFFF9603be507f8e9603be50 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603be507f8e9603be50 /* NpScene.cpp */; };
FFFF9603beb87f8e9603beb8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603beb87f8e9603beb8 /* NpSceneQueries.cpp */; };
FFFF9603bf207f8e9603bf20 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603bf207f8e9603bf20 /* NpSerializerAdapter.cpp */; };
FFFF9603bf887f8e9603bf88 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603bf887f8e9603bf88 /* NpShape.cpp */; };
FFFF9603bff07f8e9603bff0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603bff07f8e9603bff0 /* NpShapeManager.cpp */; };
FFFF9603c0587f8e9603c058 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603c0587f8e9603c058 /* NpSpatialIndex.cpp */; };
FFFF9603c0c07f8e9603c0c0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603c0c07f8e9603c0c0 /* NpVolumeCache.cpp */; };
FFFF9603c1287f8e9603c128 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603c1287f8e9603c128 /* NpWriteCheck.cpp */; };
FFFF9603c1907f8e9603c190 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603c1907f8e9603c190 /* PvdMetaDataPvdBinding.cpp */; };
FFFF9603c1f87f8e9603c1f8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603c1f87f8e9603c1f8 /* PvdPhysicsClient.cpp */; };
FFFF9603c4007f8e9603c400 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603c4007f8e9603c400 /* particles/NpParticleFluid.cpp */; };
FFFF9603c4687f8e9603c468 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603c4687f8e9603c468 /* particles/NpParticleSystem.cpp */; };
FFFF9603cc207f8e9603cc20 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603cc207f8e9603cc20 /* buffering/ScbActor.cpp */; };
FFFF9603cc887f8e9603cc88 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603cc887f8e9603cc88 /* buffering/ScbAggregate.cpp */; };
FFFF9603ccf07f8e9603ccf0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603ccf07f8e9603ccf0 /* buffering/ScbBase.cpp */; };
FFFF9603cd587f8e9603cd58 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603cd587f8e9603cd58 /* buffering/ScbCloth.cpp */; };
FFFF9603cdc07f8e9603cdc0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603cdc07f8e9603cdc0 /* buffering/ScbMetaData.cpp */; };
FFFF9603ce287f8e9603ce28 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603ce287f8e9603ce28 /* buffering/ScbParticleSystem.cpp */; };
FFFF9603ce907f8e9603ce90 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603ce907f8e9603ce90 /* buffering/ScbScene.cpp */; };
FFFF9603cef87f8e9603cef8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603cef87f8e9603cef8 /* buffering/ScbScenePvdClient.cpp */; };
FFFF9603cf607f8e9603cf60 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603cf607f8e9603cf60 /* buffering/ScbShape.cpp */; };
FFFF9603d1007f8e9603d100 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603d1007f8e9603d100 /* cloth/NpCloth.cpp */; };
FFFF9603d1687f8e9603d168 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603d1687f8e9603d168 /* cloth/NpClothFabric.cpp */; };
FFFF9603d1d07f8e9603d1d0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603d1d07f8e9603d1d0 /* cloth/NpClothParticleData.cpp */; };
FFFF9603d2387f8e9603d238 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603d2387f8e9603d238 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; };
FFFF96039fa87f8e96039fa8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD96039fa87f8e96039fa8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; };
FFFF9603a0107f8e9603a010 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD9603a0107f8e9603a010 /* core/src/PxMetaDataObjects.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD95cf0bc07f8e95cf0bc0 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD9603aa007f8e9603aa00 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; };
FFFD9603aa687f8e9603aa68 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; };
FFFD9603aad07f8e9603aad0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; };
FFFD9603ab387f8e9603ab38 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; };
FFFD9603aba07f8e9603aba0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD9603ac087f8e9603ac08 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; };
FFFD9603ac707f8e9603ac70 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; };
FFFD9603acd87f8e9603acd8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; };
FFFD9603ad407f8e9603ad40 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; };
FFFD9603ada87f8e9603ada8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; };
FFFD9603ae107f8e9603ae10 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; };
FFFD9603ae787f8e9603ae78 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; };
FFFD9603aee07f8e9603aee0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; };
FFFD9603af487f8e9603af48 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; };
FFFD9603afb07f8e9603afb0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; };
FFFD9603b0187f8e9603b018 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; };
FFFD9603b0807f8e9603b080 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; };
FFFD9603b0e87f8e9603b0e8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; };
FFFD9603b1507f8e9603b150 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; };
FFFD9603b1b87f8e9603b1b8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; };
FFFD9603b2207f8e9603b220 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; };
FFFD9603b2887f8e9603b288 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; };
FFFD9603b2f07f8e9603b2f0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; };
FFFD9603b3587f8e9603b358 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; };
FFFD9603b3c07f8e9603b3c0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; };
FFFD9603b4287f8e9603b428 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; };
FFFD9603b4907f8e9603b490 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; };
FFFD9603b4f87f8e9603b4f8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; };
FFFD9603b5607f8e9603b560 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; };
FFFD9603b5c87f8e9603b5c8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; };
FFFD9603b6307f8e9603b630 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; };
FFFD9603b6987f8e9603b698 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; };
FFFD9603b7007f8e9603b700 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; };
FFFD9603b7687f8e9603b768 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; };
FFFD9603b7d07f8e9603b7d0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; };
FFFD9603b8387f8e9603b838 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603b8a07f8e9603b8a0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603b9087f8e9603b908 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603b9707f8e9603b970 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603b9d87f8e9603b9d8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603ba407f8e9603ba40 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603baa87f8e9603baa8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603bb107f8e9603bb10 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603bb787f8e9603bb78 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603bbe07f8e9603bbe0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603bc487f8e9603bc48 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603bcb07f8e9603bcb0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603bd187f8e9603bd18 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603bd807f8e9603bd80 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603bde87f8e9603bde8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603be507f8e9603be50 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603beb87f8e9603beb8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603bf207f8e9603bf20 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603bf887f8e9603bf88 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603bff07f8e9603bff0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603c0587f8e9603c058 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603c0c07f8e9603c0c0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603c1287f8e9603c128 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603c1907f8e9603c190 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603c1f87f8e9603c1f8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603c2607f8e9603c260 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; };
FFFD9603c2c87f8e9603c2c8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; };
FFFD9603c3307f8e9603c330 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; };
FFFD9603c3987f8e9603c398 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; };
FFFD9603c4007f8e9603c400 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603c4687f8e9603c468 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603c4d07f8e9603c4d0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; };
FFFD9603c5387f8e9603c538 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; };
FFFD9603c5a07f8e9603c5a0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; };
FFFD9603c6087f8e9603c608 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD9603c6707f8e9603c670 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; };
FFFD9603c6d87f8e9603c6d8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; };
FFFD9603c7407f8e9603c740 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; };
FFFD9603c7a87f8e9603c7a8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; };
FFFD9603c8107f8e9603c810 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; };
FFFD9603c8787f8e9603c878 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; };
FFFD9603c8e07f8e9603c8e0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; };
FFFD9603c9487f8e9603c948 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; };
FFFD9603c9b07f8e9603c9b0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; };
FFFD9603ca187f8e9603ca18 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; };
FFFD9603ca807f8e9603ca80 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFD9603cae87f8e9603cae8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; };
FFFD9603cb507f8e9603cb50 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; };
FFFD9603cbb87f8e9603cbb8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; };
FFFD9603cc207f8e9603cc20 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603cc887f8e9603cc88 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603ccf07f8e9603ccf0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603cd587f8e9603cd58 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603cdc07f8e9603cdc0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603ce287f8e9603ce28 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603ce907f8e9603ce90 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603cef87f8e9603cef8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603cf607f8e9603cf60 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603cfc87f8e9603cfc8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; };
FFFD9603d0307f8e9603d030 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; };
FFFD9603d0987f8e9603d098 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; };
FFFD9603d1007f8e9603d100 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603d1687f8e9603d168 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603d1d07f8e9603d1d0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603d2387f8e9603d238 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960300007f8e96030000 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; };
FFFD960300687f8e96030068 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; };
FFFD960300d07f8e960300d0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; };
FFFD960301387f8e96030138 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD960301a07f8e960301a0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; };
FFFD960302087f8e96030208 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; };
FFFD960302707f8e96030270 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; };
FFFD960302d87f8e960302d8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; };
FFFD960303407f8e96030340 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; };
FFFD960303a87f8e960303a8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; };
FFFD960304107f8e96030410 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; };
FFFD960304787f8e96030478 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; };
FFFD960304e07f8e960304e0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; };
FFFD960305487f8e96030548 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; };
FFFD960305b07f8e960305b0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; };
FFFD960306187f8e96030618 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; };
FFFD960306807f8e96030680 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; };
FFFD960306e87f8e960306e8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; };
FFFD960307507f8e96030750 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; };
FFFD960307b87f8e960307b8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; };
FFFD960308207f8e96030820 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; };
FFFD960308887f8e96030888 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; };
FFFD960308f07f8e960308f0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; };
FFFD960309587f8e96030958 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; };
FFFD960309c07f8e960309c0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; };
FFFD96030a287f8e96030a28 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; };
FFFD96030a907f8e96030a90 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; };
FFFD96030af87f8e96030af8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; };
FFFD96030b607f8e96030b60 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; };
FFFD96030bc87f8e96030bc8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; };
FFFD96030c307f8e96030c30 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; };
FFFD96030c987f8e96030c98 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; };
FFFD96030d007f8e96030d00 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; };
FFFD96030d687f8e96030d68 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; };
FFFD96030dd07f8e96030dd0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; };
FFFD96030e387f8e96030e38 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; };
FFFD96030ea07f8e96030ea0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; };
FFFD96030f087f8e96030f08 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; };
FFFD96030f707f8e96030f70 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; };
FFFD96030fd87f8e96030fd8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; };
FFFD960310407f8e96031040 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; };
FFFD960310a87f8e960310a8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; };
FFFD960311107f8e96031110 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; };
FFFD960311787f8e96031178 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; };
FFFD960311e07f8e960311e0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; };
FFFD960312487f8e96031248 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; };
FFFD960312b07f8e960312b0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; };
FFFD960313187f8e96031318 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; };
FFFD960313807f8e96031380 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; };
FFFD960313e87f8e960313e8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; };
FFFD960314507f8e96031450 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; };
FFFD960314b87f8e960314b8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; };
FFFD960315207f8e96031520 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; };
FFFD960315887f8e96031588 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; };
FFFD96039c007f8e96039c00 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; };
FFFD96039c687f8e96039c68 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
FFFD96039cd07f8e96039cd0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
FFFD96039d387f8e96039d38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
FFFD96039da07f8e96039da0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
FFFD96039e087f8e96039e08 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; };
FFFD96039e707f8e96039e70 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; };
FFFD96039ed87f8e96039ed8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
FFFD96039f407f8e96039f40 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
FFFD96039fa87f8e96039fa8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603a0107f8e9603a010 /* 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 */
FFF295cf0bc07f8e95cf0bc0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC95cf0bc07f8e95cf0bc0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF895cf0bc07f8e95cf0bc0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF9603b8387f8e9603b838,
FFFF9603b8a07f8e9603b8a0,
FFFF9603b9087f8e9603b908,
FFFF9603b9707f8e9603b970,
FFFF9603b9d87f8e9603b9d8,
FFFF9603ba407f8e9603ba40,
FFFF9603baa87f8e9603baa8,
FFFF9603bb107f8e9603bb10,
FFFF9603bb787f8e9603bb78,
FFFF9603bbe07f8e9603bbe0,
FFFF9603bc487f8e9603bc48,
FFFF9603bcb07f8e9603bcb0,
FFFF9603bd187f8e9603bd18,
FFFF9603bd807f8e9603bd80,
FFFF9603bde87f8e9603bde8,
FFFF9603be507f8e9603be50,
FFFF9603beb87f8e9603beb8,
FFFF9603bf207f8e9603bf20,
FFFF9603bf887f8e9603bf88,
FFFF9603bff07f8e9603bff0,
FFFF9603c0587f8e9603c058,
FFFF9603c0c07f8e9603c0c0,
FFFF9603c1287f8e9603c128,
FFFF9603c1907f8e9603c190,
FFFF9603c1f87f8e9603c1f8,
FFFF9603c4007f8e9603c400,
FFFF9603c4687f8e9603c468,
FFFF9603cc207f8e9603cc20,
FFFF9603cc887f8e9603cc88,
FFFF9603ccf07f8e9603ccf0,
FFFF9603cd587f8e9603cd58,
FFFF9603cdc07f8e9603cdc0,
FFFF9603ce287f8e9603ce28,
FFFF9603ce907f8e9603ce90,
FFFF9603cef87f8e9603cef8,
FFFF9603cf607f8e9603cf60,
FFFF9603d1007f8e9603d100,
FFFF9603d1687f8e9603d168,
FFFF9603d1d07f8e9603d1d0,
FFFF9603d2387f8e9603d238,
FFFF96039fa87f8e96039fa8,
FFFF9603a0107f8e9603a010,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
FFF495d225b07f8e95d225b0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA94626f907f8e94626f90 /* LowLevel */;
targetProxy = FFF594626f907f8e94626f90 /* PBXContainerItemProxy */;
};
FFF495d1f6907f8e95d1f690 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA940ccda07f8e940ccda0 /* LowLevelAABB */;
targetProxy = FFF5940ccda07f8e940ccda0 /* PBXContainerItemProxy */;
};
FFF495d1f7507f8e95d1f750 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA941173807f8e94117380 /* LowLevelCloth */;
targetProxy = FFF5941173807f8e94117380 /* PBXContainerItemProxy */;
};
FFF495d1f6f07f8e95d1f6f0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA941450a07f8e941450a0 /* LowLevelDynamics */;
targetProxy = FFF5941450a07f8e941450a0 /* PBXContainerItemProxy */;
};
FFF495d22e107f8e95d22e10 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA940bb1407f8e940bb140 /* LowLevelParticles */;
targetProxy = FFF5940bb1407f8e940bb140 /* PBXContainerItemProxy */;
};
FFF495d225507f8e95d22550 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA9415a1507f8e9415a150 /* PhysXCommon */;
targetProxy = FFF59415a1507f8e9415a150 /* PBXContainerItemProxy */;
};
FFF49405c1707f8e9405c170 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA94146ae07f8e94146ae0 /* PxFoundation */;
targetProxy = FFF594146ae07f8e94146ae0 /* PBXContainerItemProxy */;
};
FFF495cf08107f8e95cf0810 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA9440c6c07f8e9440c6c0 /* PxPvdSDK */;
targetProxy = FFF59440c6c07f8e9440c6c0 /* PBXContainerItemProxy */;
};
FFF495d1f1e07f8e95d1f1e0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA940815207f8e94081520 /* PxTask */;
targetProxy = FFF5940815207f8e94081520 /* PBXContainerItemProxy */;
};
FFF495d22e707f8e95d22e70 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA95d430907f8e95d43090 /* SceneQuery */;
targetProxy = FFF595d430907f8e95d43090 /* PBXContainerItemProxy */;
};
FFF495d22ed07f8e95d22ed0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA95d477007f8e95d47700 /* SimulationController */;
targetProxy = FFF595d477007f8e95d47700 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXCharacterKinematic */
FFFF95d25a707f8e95d25a70 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD95d305e07f8e95d305e0 /* PhysXExtensions */; };
FFFF960342787f8e96034278 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960342787f8e96034278 /* CctBoxController.cpp */; };
FFFF960342e07f8e960342e0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960342e07f8e960342e0 /* CctCapsuleController.cpp */; };
FFFF960343487f8e96034348 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960343487f8e96034348 /* CctCharacterController.cpp */; };
FFFF960343b07f8e960343b0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960343b07f8e960343b0 /* CctCharacterControllerCallbacks.cpp */; };
FFFF960344187f8e96034418 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960344187f8e96034418 /* CctCharacterControllerManager.cpp */; };
FFFF960344807f8e96034480 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960344807f8e96034480 /* CctController.cpp */; };
FFFF960344e87f8e960344e8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960344e87f8e960344e8 /* CctObstacleContext.cpp */; };
FFFF960345507f8e96034550 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960345507f8e96034550 /* CctSweptBox.cpp */; };
FFFF960345b87f8e960345b8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960345b87f8e960345b8 /* CctSweptCapsule.cpp */; };
FFFF960346207f8e96034620 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960346207f8e96034620 /* CctSweptVolume.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD95d1f3407f8e95d1f340 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD95d264307f8e95d26430 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; };
FFFD95d264987f8e95d26498 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; };
FFFD95d265007f8e95d26500 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; };
FFFD95d265687f8e95d26568 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; };
FFFD95d265d07f8e95d265d0 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; };
FFFD95d266387f8e95d26638 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; };
FFFD95d266a07f8e95d266a0 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; };
FFFD95d267087f8e95d26708 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; };
FFFD96033e007f8e96033e00 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; };
FFFD96033e687f8e96033e68 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; };
FFFD96033ed07f8e96033ed0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; };
FFFD96033f387f8e96033f38 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; };
FFFD96033fa07f8e96033fa0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; };
FFFD960340087f8e96034008 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; };
FFFD960340707f8e96034070 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; };
FFFD960340d87f8e960340d8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; };
FFFD960341407f8e96034140 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; };
FFFD960341a87f8e960341a8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; };
FFFD960342107f8e96034210 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; };
FFFD960342787f8e96034278 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960342e07f8e960342e0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960343487f8e96034348 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960343b07f8e960343b0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960344187f8e96034418 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960344807f8e96034480 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960344e87f8e960344e8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960345507f8e96034550 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960345b87f8e960345b8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960346207f8e96034620 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
FFF295d1f3407f8e95d1f340 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC95d1f3407f8e95d1f340 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF895d1f3407f8e95d1f340 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF960342787f8e96034278,
FFFF960342e07f8e960342e0,
FFFF960343487f8e96034348,
FFFF960343b07f8e960343b0,
FFFF960344187f8e96034418,
FFFF960344807f8e96034480,
FFFF960344e87f8e960344e8,
FFFF960345507f8e96034550,
FFFF960345b87f8e960345b8,
FFFF960346207f8e96034620,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
FFF495d206907f8e95d20690 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA9415a1507f8e9415a150 /* PhysXCommon */;
targetProxy = FFF59415a1507f8e9415a150 /* PBXContainerItemProxy */;
};
FFF495d25a707f8e95d25a70 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA95d305e07f8e95d305e0 /* PhysXExtensions */;
targetProxy = FFF595d305e07f8e95d305e0 /* PBXContainerItemProxy */;
};
FFF495d24c407f8e95d24c40 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA94146ae07f8e94146ae0 /* PxFoundation */;
targetProxy = FFF594146ae07f8e94146ae0 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXVehicle */
FFFF9603ec087f8e9603ec08 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603ec087f8e9603ec08 /* PxVehicleComponents.cpp */; };
FFFF9603ec707f8e9603ec70 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603ec707f8e9603ec70 /* PxVehicleDrive.cpp */; };
FFFF9603ecd87f8e9603ecd8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603ecd87f8e9603ecd8 /* PxVehicleDrive4W.cpp */; };
FFFF9603ed407f8e9603ed40 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603ed407f8e9603ed40 /* PxVehicleDriveNW.cpp */; };
FFFF9603eda87f8e9603eda8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603eda87f8e9603eda8 /* PxVehicleDriveTank.cpp */; };
FFFF9603ee107f8e9603ee10 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603ee107f8e9603ee10 /* PxVehicleMetaData.cpp */; };
FFFF9603ee787f8e9603ee78 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603ee787f8e9603ee78 /* PxVehicleNoDrive.cpp */; };
FFFF9603eee07f8e9603eee0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603eee07f8e9603eee0 /* PxVehicleSDK.cpp */; };
FFFF9603ef487f8e9603ef48 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603ef487f8e9603ef48 /* PxVehicleSerialization.cpp */; };
FFFF9603efb07f8e9603efb0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603efb07f8e9603efb0 /* PxVehicleSuspWheelTire4.cpp */; };
FFFF9603f0187f8e9603f018 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603f0187f8e9603f018 /* PxVehicleTireFriction.cpp */; };
FFFF9603f0807f8e9603f080 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603f0807f8e9603f080 /* PxVehicleUpdate.cpp */; };
FFFF9603f0e87f8e9603f0e8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603f0e87f8e9603f0e8 /* PxVehicleWheels.cpp */; };
FFFF9603f1507f8e9603f150 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603f1507f8e9603f150 /* VehicleUtilControl.cpp */; };
FFFF9603f1b87f8e9603f1b8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603f1b87f8e9603f1b8 /* VehicleUtilSetup.cpp */; };
FFFF9603f2207f8e9603f220 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9603f2207f8e9603f220 /* VehicleUtilTelemetry.cpp */; };
FFFF95d324b87f8e95d324b8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD95d324b87f8e95d324b8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; };
FFFF95d325207f8e95d32520 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD95d325207f8e95d32520 /* src/PxVehicleMetaDataObjects.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD95d207307f8e95d20730 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD96036c007f8e96036c00 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; };
FFFD96036c687f8e96036c68 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; };
FFFD96036cd07f8e96036cd0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; };
FFFD96036d387f8e96036d38 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; };
FFFD96036da07f8e96036da0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; };
FFFD96036e087f8e96036e08 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; };
FFFD96036e707f8e96036e70 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; };
FFFD96036ed87f8e96036ed8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; };
FFFD96036f407f8e96036f40 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; };
FFFD96036fa87f8e96036fa8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; };
FFFD960370107f8e96037010 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; };
FFFD960370787f8e96037078 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; };
FFFD960370e07f8e960370e0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; };
FFFD960371487f8e96037148 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; };
FFFD960371b07f8e960371b0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; };
FFFD9603ea007f8e9603ea00 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; };
FFFD9603ea687f8e9603ea68 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; };
FFFD9603ead07f8e9603ead0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; };
FFFD9603eb387f8e9603eb38 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; };
FFFD9603eba07f8e9603eba0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; };
FFFD9603ec087f8e9603ec08 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603ec707f8e9603ec70 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603ecd87f8e9603ecd8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603ed407f8e9603ed40 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603eda87f8e9603eda8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603ee107f8e9603ee10 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603ee787f8e9603ee78 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603eee07f8e9603eee0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603ef487f8e9603ef48 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603efb07f8e9603efb0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603f0187f8e9603f018 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603f0807f8e9603f080 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603f0e87f8e9603f0e8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603f1507f8e9603f150 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603f1b87f8e9603f1b8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9603f2207f8e9603f220 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; };
FFFD95d323807f8e95d32380 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
FFFD95d323e87f8e95d323e8 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
FFFD95d324507f8e95d32450 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
FFFD95d324b87f8e95d324b8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
FFFD95d325207f8e95d32520 /* 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 */
FFF295d207307f8e95d20730 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC95d207307f8e95d20730 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF895d207307f8e95d20730 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF9603ec087f8e9603ec08,
FFFF9603ec707f8e9603ec70,
FFFF9603ecd87f8e9603ecd8,
FFFF9603ed407f8e9603ed40,
FFFF9603eda87f8e9603eda8,
FFFF9603ee107f8e9603ee10,
FFFF9603ee787f8e9603ee78,
FFFF9603eee07f8e9603eee0,
FFFF9603ef487f8e9603ef48,
FFFF9603efb07f8e9603efb0,
FFFF9603f0187f8e9603f018,
FFFF9603f0807f8e9603f080,
FFFF9603f0e87f8e9603f0e8,
FFFF9603f1507f8e9603f150,
FFFF9603f1b87f8e9603f1b8,
FFFF9603f2207f8e9603f220,
FFFF95d324b87f8e95d324b8,
FFFF95d325207f8e95d32520,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXExtensions */
FFFF960412e87f8e960412e8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960412e87f8e960412e8 /* ExtBroadPhase.cpp */; };
FFFF960413507f8e96041350 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960413507f8e96041350 /* ExtClothFabricCooker.cpp */; };
FFFF960413b87f8e960413b8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960413b87f8e960413b8 /* ExtClothGeodesicTetherCooker.cpp */; };
FFFF960414207f8e96041420 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960414207f8e96041420 /* ExtClothMeshQuadifier.cpp */; };
FFFF960414887f8e96041488 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960414887f8e96041488 /* ExtClothSimpleTetherCooker.cpp */; };
FFFF960414f07f8e960414f0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960414f07f8e960414f0 /* ExtCollection.cpp */; };
FFFF960415587f8e96041558 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960415587f8e96041558 /* ExtConvexMeshExt.cpp */; };
FFFF960415c07f8e960415c0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960415c07f8e960415c0 /* ExtCpuWorkerThread.cpp */; };
FFFF960416287f8e96041628 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960416287f8e96041628 /* ExtD6Joint.cpp */; };
FFFF960416907f8e96041690 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960416907f8e96041690 /* ExtD6JointSolverPrep.cpp */; };
FFFF960416f87f8e960416f8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960416f87f8e960416f8 /* ExtDefaultCpuDispatcher.cpp */; };
FFFF960417607f8e96041760 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960417607f8e96041760 /* ExtDefaultErrorCallback.cpp */; };
FFFF960417c87f8e960417c8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960417c87f8e960417c8 /* ExtDefaultSimulationFilterShader.cpp */; };
FFFF960418307f8e96041830 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960418307f8e96041830 /* ExtDefaultStreams.cpp */; };
FFFF960418987f8e96041898 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960418987f8e96041898 /* ExtDistanceJoint.cpp */; };
FFFF960419007f8e96041900 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960419007f8e96041900 /* ExtDistanceJointSolverPrep.cpp */; };
FFFF960419687f8e96041968 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960419687f8e96041968 /* ExtExtensions.cpp */; };
FFFF960419d07f8e960419d0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960419d07f8e960419d0 /* ExtFixedJoint.cpp */; };
FFFF96041a387f8e96041a38 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD96041a387f8e96041a38 /* ExtFixedJointSolverPrep.cpp */; };
FFFF96041aa07f8e96041aa0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD96041aa07f8e96041aa0 /* ExtJoint.cpp */; };
FFFF96041b087f8e96041b08 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD96041b087f8e96041b08 /* ExtMetaData.cpp */; };
FFFF96041b707f8e96041b70 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD96041b707f8e96041b70 /* ExtParticleExt.cpp */; };
FFFF96041bd87f8e96041bd8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD96041bd87f8e96041bd8 /* ExtPrismaticJoint.cpp */; };
FFFF96041c407f8e96041c40 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD96041c407f8e96041c40 /* ExtPrismaticJointSolverPrep.cpp */; };
FFFF96041ca87f8e96041ca8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD96041ca87f8e96041ca8 /* ExtPvd.cpp */; };
FFFF96041d107f8e96041d10 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD96041d107f8e96041d10 /* ExtPxStringTable.cpp */; };
FFFF96041d787f8e96041d78 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD96041d787f8e96041d78 /* ExtRaycastCCD.cpp */; };
FFFF96041de07f8e96041de0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD96041de07f8e96041de0 /* ExtRevoluteJoint.cpp */; };
FFFF96041e487f8e96041e48 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD96041e487f8e96041e48 /* ExtRevoluteJointSolverPrep.cpp */; };
FFFF96041eb07f8e96041eb0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD96041eb07f8e96041eb0 /* ExtRigidBodyExt.cpp */; };
FFFF96041f187f8e96041f18 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD96041f187f8e96041f18 /* ExtSceneQueryExt.cpp */; };
FFFF96041f807f8e96041f80 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD96041f807f8e96041f80 /* ExtSimpleFactory.cpp */; };
FFFF96041fe87f8e96041fe8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD96041fe87f8e96041fe8 /* ExtSmoothNormals.cpp */; };
FFFF960420507f8e96042050 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960420507f8e96042050 /* ExtSphericalJoint.cpp */; };
FFFF960420b87f8e960420b8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960420b87f8e960420b8 /* ExtSphericalJointSolverPrep.cpp */; };
FFFF960421207f8e96042120 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960421207f8e96042120 /* ExtTriangleMeshExt.cpp */; };
FFFF960456d07f8e960456d0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD960456d07f8e960456d0 /* SnSerialUtils.cpp */; };
FFFF960457387f8e96045738 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD960457387f8e96045738 /* SnSerialization.cpp */; };
FFFF960457a07f8e960457a0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD960457a07f8e960457a0 /* SnSerializationRegistry.cpp */; };
FFFF96045ae07f8e96045ae0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD96045ae07f8e96045ae0 /* Binary/SnBinaryDeserialization.cpp */; };
FFFF96045b487f8e96045b48 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD96045b487f8e96045b48 /* Binary/SnBinarySerialization.cpp */; };
FFFF96045bb07f8e96045bb0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD96045bb07f8e96045bb0 /* Binary/SnConvX.cpp */; };
FFFF96045c187f8e96045c18 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD96045c187f8e96045c18 /* Binary/SnConvX_Align.cpp */; };
FFFF96045c807f8e96045c80 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD96045c807f8e96045c80 /* Binary/SnConvX_Convert.cpp */; };
FFFF96045ce87f8e96045ce8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD96045ce87f8e96045ce8 /* Binary/SnConvX_Error.cpp */; };
FFFF96045d507f8e96045d50 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD96045d507f8e96045d50 /* Binary/SnConvX_MetaData.cpp */; };
FFFF96045db87f8e96045db8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD96045db87f8e96045db8 /* Binary/SnConvX_Output.cpp */; };
FFFF96045e207f8e96045e20 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD96045e207f8e96045e20 /* Binary/SnConvX_Union.cpp */; };
FFFF96045e887f8e96045e88 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD96045e887f8e96045e88 /* Binary/SnSerializationContext.cpp */; };
FFFF960467e07f8e960467e0 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD960467e07f8e960467e0 /* Xml/SnJointRepXSerializer.cpp */; };
FFFF960468487f8e96046848 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD960468487f8e96046848 /* Xml/SnRepXCoreSerializer.cpp */; };
FFFF960468b07f8e960468b0 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD960468b07f8e960468b0 /* Xml/SnRepXUpgrader.cpp */; };
FFFF960469187f8e96046918 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD960469187f8e96046918 /* Xml/SnXmlSerialization.cpp */; };
FFFF960436e07f8e960436e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD960436e07f8e960436e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD95d305e07f8e95d305e0 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD960422007f8e96042200 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; };
FFFD960422687f8e96042268 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; };
FFFD960422d07f8e960422d0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; };
FFFD960423387f8e96042338 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; };
FFFD960423a07f8e960423a0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; };
FFFD960424087f8e96042408 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; };
FFFD960424707f8e96042470 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; };
FFFD960424d87f8e960424d8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; };
FFFD960425407f8e96042540 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; };
FFFD960425a87f8e960425a8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; };
FFFD960426107f8e96042610 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; };
FFFD960426787f8e96042678 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
FFFD960426e07f8e960426e0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; };
FFFD960427487f8e96042748 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; };
FFFD960427b07f8e960427b0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; };
FFFD960428187f8e96042818 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD960428807f8e96042880 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; };
FFFD960428e87f8e960428e8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD960429507f8e96042950 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD960429b87f8e960429b8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; };
FFFD96042a207f8e96042a20 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; };
FFFD96042a887f8e96042a88 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; };
FFFD96042af07f8e96042af0 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD96042b587f8e96042b58 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; };
FFFD96042bc07f8e96042bc0 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; };
FFFD96042c287f8e96042c28 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; };
FFFD96042c907f8e96042c90 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD96042cf87f8e96042cf8 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; };
FFFD96042d607f8e96042d60 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; };
FFFD96042dc87f8e96042dc8 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; };
FFFD96042e307f8e96042e30 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; };
FFFD96042e987f8e96042e98 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; };
FFFD96042f007f8e96042f00 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; };
FFFD96042f687f8e96042f68 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; };
FFFD96042fd07f8e96042fd0 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD960430387f8e96043038 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; };
FFFD960430a07f8e960430a0 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; };
FFFD96040c007f8e96040c00 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; };
FFFD96040c687f8e96040c68 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; };
FFFD96040cd07f8e96040cd0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; };
FFFD96040d387f8e96040d38 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
FFFD96040da07f8e96040da0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD96040e087f8e96040e08 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD96040e707f8e96040e70 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; };
FFFD96040ed87f8e96040ed8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD96040f407f8e96040f40 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
FFFD96040fa87f8e96040fa8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; };
FFFD960410107f8e96041010 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD960410787f8e96041078 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; };
FFFD960410e07f8e960410e0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD960411487f8e96041148 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; };
FFFD960411b07f8e960411b0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; };
FFFD960412187f8e96041218 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; };
FFFD960412807f8e96041280 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; };
FFFD960412e87f8e960412e8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960413507f8e96041350 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960413b87f8e960413b8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960414207f8e96041420 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960414887f8e96041488 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960414f07f8e960414f0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960415587f8e96041558 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960415c07f8e960415c0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960416287f8e96041628 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960416907f8e96041690 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960416f87f8e960416f8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960417607f8e96041760 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960417c87f8e960417c8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960418307f8e96041830 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960418987f8e96041898 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960419007f8e96041900 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960419687f8e96041968 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960419d07f8e960419d0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; };
FFFD96041a387f8e96041a38 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
FFFD96041aa07f8e96041aa0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; };
FFFD96041b087f8e96041b08 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; };
FFFD96041b707f8e96041b70 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; };
FFFD96041bd87f8e96041bd8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; };
FFFD96041c407f8e96041c40 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
FFFD96041ca87f8e96041ca8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; };
FFFD96041d107f8e96041d10 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; };
FFFD96041d787f8e96041d78 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; };
FFFD96041de07f8e96041de0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; };
FFFD96041e487f8e96041e48 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
FFFD96041eb07f8e96041eb0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; };
FFFD96041f187f8e96041f18 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; };
FFFD96041f807f8e96041f80 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; };
FFFD96041fe87f8e96041fe8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960420507f8e96042050 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960420b87f8e960420b8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960421207f8e96042120 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960456007f8e96045600 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; };
FFFD960456687f8e96045668 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; };
FFFD960456d07f8e960456d0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960457387f8e96045738 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960457a07f8e960457a0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960458087f8e96045808 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; };
FFFD960458707f8e96045870 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; };
FFFD960458d87f8e960458d8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; };
FFFD960459407f8e96045940 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; };
FFFD960459a87f8e960459a8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; };
FFFD96045a107f8e96045a10 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; };
FFFD96045a787f8e96045a78 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; };
FFFD96045ae07f8e96045ae0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; };
FFFD96045b487f8e96045b48 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; };
FFFD96045bb07f8e96045bb0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; };
FFFD96045c187f8e96045c18 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; };
FFFD96045c807f8e96045c80 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; };
FFFD96045ce87f8e96045ce8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; };
FFFD96045d507f8e96045d50 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; };
FFFD96045db87f8e96045db8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; };
FFFD96045e207f8e96045e20 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; };
FFFD96045e887f8e96045e88 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; };
FFFD96045ef07f8e96045ef0 /* Xml/SnJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; };
FFFD96045f587f8e96045f58 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; };
FFFD96045fc07f8e96045fc0 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; };
FFFD960460287f8e96046028 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; };
FFFD960460907f8e96046090 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; };
FFFD960460f87f8e960460f8 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; };
FFFD960461607f8e96046160 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; };
FFFD960461c87f8e960461c8 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; };
FFFD960462307f8e96046230 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; };
FFFD960462987f8e96046298 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; };
FFFD960463007f8e96046300 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; };
FFFD960463687f8e96046368 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; };
FFFD960463d07f8e960463d0 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; };
FFFD960464387f8e96046438 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; };
FFFD960464a07f8e960464a0 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; };
FFFD960465087f8e96046508 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; };
FFFD960465707f8e96046570 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; };
FFFD960465d87f8e960465d8 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; };
FFFD960466407f8e96046640 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; };
FFFD960466a87f8e960466a8 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; };
FFFD960467107f8e96046710 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; };
FFFD960467787f8e96046778 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; };
FFFD960467e07f8e960467e0 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960468487f8e96046848 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960468b07f8e960468b0 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960469187f8e96046918 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960469807f8e96046980 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; };
FFFD960432007f8e96043200 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; };
FFFD960432687f8e96043268 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
FFFD960432d07f8e960432d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
FFFD960433387f8e96043338 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
FFFD960433a07f8e960433a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
FFFD960434087f8e96043408 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; };
FFFD960434707f8e96043470 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; };
FFFD960434d87f8e960434d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
FFFD960435407f8e96043540 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
FFFD960435a87f8e960435a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
FFFD960436107f8e96043610 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
FFFD960436787f8e96043678 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
FFFD960436e07f8e960436e0 /* 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 */
FFF295d305e07f8e95d305e0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC95d305e07f8e95d305e0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF895d305e07f8e95d305e0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF960412e87f8e960412e8,
FFFF960413507f8e96041350,
FFFF960413b87f8e960413b8,
FFFF960414207f8e96041420,
FFFF960414887f8e96041488,
FFFF960414f07f8e960414f0,
FFFF960415587f8e96041558,
FFFF960415c07f8e960415c0,
FFFF960416287f8e96041628,
FFFF960416907f8e96041690,
FFFF960416f87f8e960416f8,
FFFF960417607f8e96041760,
FFFF960417c87f8e960417c8,
FFFF960418307f8e96041830,
FFFF960418987f8e96041898,
FFFF960419007f8e96041900,
FFFF960419687f8e96041968,
FFFF960419d07f8e960419d0,
FFFF96041a387f8e96041a38,
FFFF96041aa07f8e96041aa0,
FFFF96041b087f8e96041b08,
FFFF96041b707f8e96041b70,
FFFF96041bd87f8e96041bd8,
FFFF96041c407f8e96041c40,
FFFF96041ca87f8e96041ca8,
FFFF96041d107f8e96041d10,
FFFF96041d787f8e96041d78,
FFFF96041de07f8e96041de0,
FFFF96041e487f8e96041e48,
FFFF96041eb07f8e96041eb0,
FFFF96041f187f8e96041f18,
FFFF96041f807f8e96041f80,
FFFF96041fe87f8e96041fe8,
FFFF960420507f8e96042050,
FFFF960420b87f8e960420b8,
FFFF960421207f8e96042120,
FFFF960456d07f8e960456d0,
FFFF960457387f8e96045738,
FFFF960457a07f8e960457a0,
FFFF96045ae07f8e96045ae0,
FFFF96045b487f8e96045b48,
FFFF96045bb07f8e96045bb0,
FFFF96045c187f8e96045c18,
FFFF96045c807f8e96045c80,
FFFF96045ce87f8e96045ce8,
FFFF96045d507f8e96045d50,
FFFF96045db87f8e96045db8,
FFFF96045e207f8e96045e20,
FFFF96045e887f8e96045e88,
FFFF960467e07f8e960467e0,
FFFF960468487f8e96046848,
FFFF960468b07f8e960468b0,
FFFF960469187f8e96046918,
FFFF960436e07f8e960436e0,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
FFF495d2fce07f8e95d2fce0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA95d0cbc07f8e95d0cbc0 /* PsFastXml */;
targetProxy = FFF595d0cbc07f8e95d0cbc0 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of SceneQuery */
FFFF960496007f8e96049600 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960496007f8e96049600 /* SqAABBPruner.cpp */; };
FFFF960496687f8e96049668 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960496687f8e96049668 /* SqAABBTree.cpp */; };
FFFF960496d07f8e960496d0 /* SqAABBTreeBuild.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960496d07f8e960496d0 /* SqAABBTreeBuild.cpp */; };
FFFF960497387f8e96049738 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960497387f8e96049738 /* SqAABBTreeUpdateMap.cpp */; };
FFFF960497a07f8e960497a0 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960497a07f8e960497a0 /* SqBounds.cpp */; };
FFFF960498087f8e96049808 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960498087f8e96049808 /* SqBucketPruner.cpp */; };
FFFF960498707f8e96049870 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960498707f8e96049870 /* SqExtendedBucketPruner.cpp */; };
FFFF960498d87f8e960498d8 /* SqIncrementalAABBPrunerCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960498d87f8e960498d8 /* SqIncrementalAABBPrunerCore.cpp */; };
FFFF960499407f8e96049940 /* SqIncrementalAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960499407f8e96049940 /* SqIncrementalAABBTree.cpp */; };
FFFF960499a87f8e960499a8 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD960499a87f8e960499a8 /* SqMetaData.cpp */; };
FFFF96049a107f8e96049a10 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD96049a107f8e96049a10 /* SqPruningPool.cpp */; };
FFFF96049a787f8e96049a78 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD96049a787f8e96049a78 /* SqPruningStructure.cpp */; };
FFFF96049ae07f8e96049ae0 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD96049ae07f8e96049ae0 /* SqSceneQueryManager.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD95d430907f8e95d43090 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD960496007f8e96049600 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960496687f8e96049668 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960496d07f8e960496d0 /* SqAABBTreeBuild.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeBuild.cpp"; path = "../../SceneQuery/src/SqAABBTreeBuild.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960497387f8e96049738 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960497a07f8e960497a0 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960498087f8e96049808 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960498707f8e96049870 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960498d87f8e960498d8 /* SqIncrementalAABBPrunerCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBPrunerCore.cpp"; path = "../../SceneQuery/src/SqIncrementalAABBPrunerCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960499407f8e96049940 /* SqIncrementalAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBTree.cpp"; path = "../../SceneQuery/src/SqIncrementalAABBTree.cpp"; sourceTree = SOURCE_ROOT; };
FFFD960499a87f8e960499a8 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; };
FFFD96049a107f8e96049a10 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; };
FFFD96049a787f8e96049a78 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; };
FFFD96049ae07f8e96049ae0 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; };
FFFD96049b487f8e96049b48 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; };
FFFD96049bb07f8e96049bb0 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; };
FFFD96049c187f8e96049c18 /* SqAABBTreeBuild.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeBuild.h"; path = "../../SceneQuery/src/SqAABBTreeBuild.h"; sourceTree = SOURCE_ROOT; };
FFFD96049c807f8e96049c80 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; };
FFFD96049ce87f8e96049ce8 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; };
FFFD96049d507f8e96049d50 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; };
FFFD96049db87f8e96049db8 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; };
FFFD96049e207f8e96049e20 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; };
FFFD96049e887f8e96049e88 /* SqIncrementalAABBPrunerCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBPrunerCore.h"; path = "../../SceneQuery/src/SqIncrementalAABBPrunerCore.h"; sourceTree = SOURCE_ROOT; };
FFFD96049ef07f8e96049ef0 /* SqIncrementalAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBTree.h"; path = "../../SceneQuery/src/SqIncrementalAABBTree.h"; sourceTree = SOURCE_ROOT; };
FFFD96049f587f8e96049f58 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; };
FFFD96049fc07f8e96049fc0 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; };
FFFD9604a0287f8e9604a028 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; };
FFFD95d474407f8e95d47440 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; };
FFFD95d474a87f8e95d474a8 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; };
FFFD95d475107f8e95d47510 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; };
FFFD95d475787f8e95d47578 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
FFF295d430907f8e95d43090 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC95d430907f8e95d43090 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF895d430907f8e95d43090 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF960496007f8e96049600,
FFFF960496687f8e96049668,
FFFF960496d07f8e960496d0,
FFFF960497387f8e96049738,
FFFF960497a07f8e960497a0,
FFFF960498087f8e96049808,
FFFF960498707f8e96049870,
FFFF960498d87f8e960498d8,
FFFF960499407f8e96049940,
FFFF960499a87f8e960499a8,
FFFF96049a107f8e96049a10,
FFFF96049a787f8e96049a78,
FFFF96049ae07f8e96049ae0,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of SimulationController */
FFFF94840fd07f8e94840fd0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD94840fd07f8e94840fd0 /* ScActorCore.cpp */; };
FFFF948410387f8e94841038 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948410387f8e94841038 /* ScActorSim.cpp */; };
FFFF948410a07f8e948410a0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948410a07f8e948410a0 /* ScArticulationCore.cpp */; };
FFFF948411087f8e94841108 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948411087f8e94841108 /* ScArticulationJointCore.cpp */; };
FFFF948411707f8e94841170 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948411707f8e94841170 /* ScArticulationJointSim.cpp */; };
FFFF948411d87f8e948411d8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948411d87f8e948411d8 /* ScArticulationSim.cpp */; };
FFFF948412407f8e94841240 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948412407f8e94841240 /* ScBodyCore.cpp */; };
FFFF948412a87f8e948412a8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948412a87f8e948412a8 /* ScBodyCoreKinematic.cpp */; };
FFFF948413107f8e94841310 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948413107f8e94841310 /* ScBodySim.cpp */; };
FFFF948413787f8e94841378 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948413787f8e94841378 /* ScConstraintCore.cpp */; };
FFFF948413e07f8e948413e0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948413e07f8e948413e0 /* ScConstraintGroupNode.cpp */; };
FFFF948414487f8e94841448 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948414487f8e94841448 /* ScConstraintInteraction.cpp */; };
FFFF948414b07f8e948414b0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948414b07f8e948414b0 /* ScConstraintProjectionManager.cpp */; };
FFFF948415187f8e94841518 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948415187f8e94841518 /* ScConstraintProjectionTree.cpp */; };
FFFF948415807f8e94841580 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948415807f8e94841580 /* ScConstraintSim.cpp */; };
FFFF948415e87f8e948415e8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948415e87f8e948415e8 /* ScElementInteractionMarker.cpp */; };
FFFF948416507f8e94841650 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948416507f8e94841650 /* ScElementSim.cpp */; };
FFFF948416b87f8e948416b8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948416b87f8e948416b8 /* ScInteraction.cpp */; };
FFFF948417207f8e94841720 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948417207f8e94841720 /* ScIterators.cpp */; };
FFFF948417887f8e94841788 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948417887f8e94841788 /* ScMaterialCore.cpp */; };
FFFF948417f07f8e948417f0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948417f07f8e948417f0 /* ScMetaData.cpp */; };
FFFF948418587f8e94841858 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948418587f8e94841858 /* ScNPhaseCore.cpp */; };
FFFF948418c07f8e948418c0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948418c07f8e948418c0 /* ScPhysics.cpp */; };
FFFF948419287f8e94841928 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948419287f8e94841928 /* ScRigidCore.cpp */; };
FFFF948419907f8e94841990 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948419907f8e94841990 /* ScRigidSim.cpp */; };
FFFF948419f87f8e948419f8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948419f87f8e948419f8 /* ScScene.cpp */; };
FFFF94841a607f8e94841a60 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD94841a607f8e94841a60 /* ScShapeCore.cpp */; };
FFFF94841ac87f8e94841ac8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD94841ac87f8e94841ac8 /* ScShapeInteraction.cpp */; };
FFFF94841b307f8e94841b30 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD94841b307f8e94841b30 /* ScShapeSim.cpp */; };
FFFF94841b987f8e94841b98 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD94841b987f8e94841b98 /* ScSimStats.cpp */; };
FFFF94841c007f8e94841c00 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD94841c007f8e94841c00 /* ScSimulationController.cpp */; };
FFFF94841c687f8e94841c68 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD94841c687f8e94841c68 /* ScSqBoundsManager.cpp */; };
FFFF94841cd07f8e94841cd0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD94841cd07f8e94841cd0 /* ScStaticCore.cpp */; };
FFFF94841d387f8e94841d38 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD94841d387f8e94841d38 /* ScStaticSim.cpp */; };
FFFF94841da07f8e94841da0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD94841da07f8e94841da0 /* ScTriggerInteraction.cpp */; };
FFFF94841f407f8e94841f40 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD94841f407f8e94841f40 /* particles/ScParticleBodyInteraction.cpp */; };
FFFF94841fa87f8e94841fa8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD94841fa87f8e94841fa8 /* particles/ScParticlePacketShape.cpp */; };
FFFF948420107f8e94842010 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948420107f8e94842010 /* particles/ScParticleSystemCore.cpp */; };
FFFF948420787f8e94842078 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948420787f8e94842078 /* particles/ScParticleSystemSim.cpp */; };
FFFF948421b07f8e948421b0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948421b07f8e948421b0 /* cloth/ScClothCore.cpp */; };
FFFF948422187f8e94842218 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948422187f8e94842218 /* cloth/ScClothFabricCore.cpp */; };
FFFF948422807f8e94842280 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948422807f8e94842280 /* cloth/ScClothShape.cpp */; };
FFFF948422e87f8e948422e8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948422e87f8e948422e8 /* cloth/ScClothSim.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD95d477007f8e95d47700 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD9604c2007f8e9604c200 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; };
FFFD9604c2687f8e9604c268 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; };
FFFD9604c2d07f8e9604c2d0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; };
FFFD9604c3387f8e9604c338 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; };
FFFD9604c3a07f8e9604c3a0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; };
FFFD9604c4087f8e9604c408 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; };
FFFD9604c4707f8e9604c470 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; };
FFFD9604c4d87f8e9604c4d8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; };
FFFD9604c5407f8e9604c540 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; };
FFFD9604c5a87f8e9604c5a8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; };
FFFD9604c6107f8e9604c610 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; };
FFFD9604c6787f8e9604c678 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; };
FFFD9604c6e07f8e9604c6e0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; };
FFFD9604c7487f8e9604c748 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; };
FFFD9604c7b07f8e9604c7b0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; };
FFFD948402007f8e94840200 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; };
FFFD948402687f8e94840268 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; };
FFFD948402d07f8e948402d0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; };
FFFD948403387f8e94840338 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; };
FFFD948403a07f8e948403a0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; };
FFFD948404087f8e94840408 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; };
FFFD948404707f8e94840470 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; };
FFFD948404d87f8e948404d8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; };
FFFD948405407f8e94840540 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; };
FFFD948405a87f8e948405a8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; };
FFFD948406107f8e94840610 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; };
FFFD948406787f8e94840678 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; };
FFFD948406e07f8e948406e0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; };
FFFD948407487f8e94840748 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFD948407b07f8e948407b0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; };
FFFD948408187f8e94840818 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; };
FFFD948408807f8e94840880 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; };
FFFD948408e87f8e948408e8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; };
FFFD948409507f8e94840950 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; };
FFFD948409b87f8e948409b8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; };
FFFD94840a207f8e94840a20 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; };
FFFD94840a887f8e94840a88 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; };
FFFD94840af07f8e94840af0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; };
FFFD94840b587f8e94840b58 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; };
FFFD94840bc07f8e94840bc0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; };
FFFD94840c287f8e94840c28 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; };
FFFD94840c907f8e94840c90 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; };
FFFD94840cf87f8e94840cf8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; };
FFFD94840d607f8e94840d60 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; };
FFFD94840dc87f8e94840dc8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; };
FFFD94840e307f8e94840e30 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; };
FFFD94840e987f8e94840e98 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; };
FFFD94840f007f8e94840f00 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; };
FFFD94840f687f8e94840f68 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; };
FFFD94840fd07f8e94840fd0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948410387f8e94841038 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948410a07f8e948410a0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948411087f8e94841108 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948411707f8e94841170 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948411d87f8e948411d8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948412407f8e94841240 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948412a87f8e948412a8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948413107f8e94841310 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948413787f8e94841378 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948413e07f8e948413e0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948414487f8e94841448 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948414b07f8e948414b0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948415187f8e94841518 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948415807f8e94841580 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948415e87f8e948415e8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948416507f8e94841650 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948416b87f8e948416b8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948417207f8e94841720 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948417887f8e94841788 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948417f07f8e948417f0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948418587f8e94841858 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948418c07f8e948418c0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948419287f8e94841928 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948419907f8e94841990 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948419f87f8e948419f8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94841a607f8e94841a60 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94841ac87f8e94841ac8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94841b307f8e94841b30 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94841b987f8e94841b98 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94841c007f8e94841c00 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94841c687f8e94841c68 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94841cd07f8e94841cd0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94841d387f8e94841d38 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94841da07f8e94841da0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94841e087f8e94841e08 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; };
FFFD94841e707f8e94841e70 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; };
FFFD94841ed87f8e94841ed8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; };
FFFD94841f407f8e94841f40 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94841fa87f8e94841fa8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948420107f8e94842010 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948420787f8e94842078 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948420e07f8e948420e0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; };
FFFD948421487f8e94842148 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; };
FFFD948421b07f8e948421b0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948422187f8e94842218 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948422807f8e94842280 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948422e87f8e948422e8 /* 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 */
FFF295d477007f8e95d47700 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC95d477007f8e95d47700 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF895d477007f8e95d47700 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF94840fd07f8e94840fd0,
FFFF948410387f8e94841038,
FFFF948410a07f8e948410a0,
FFFF948411087f8e94841108,
FFFF948411707f8e94841170,
FFFF948411d87f8e948411d8,
FFFF948412407f8e94841240,
FFFF948412a87f8e948412a8,
FFFF948413107f8e94841310,
FFFF948413787f8e94841378,
FFFF948413e07f8e948413e0,
FFFF948414487f8e94841448,
FFFF948414b07f8e948414b0,
FFFF948415187f8e94841518,
FFFF948415807f8e94841580,
FFFF948415e87f8e948415e8,
FFFF948416507f8e94841650,
FFFF948416b87f8e948416b8,
FFFF948417207f8e94841720,
FFFF948417887f8e94841788,
FFFF948417f07f8e948417f0,
FFFF948418587f8e94841858,
FFFF948418c07f8e948418c0,
FFFF948419287f8e94841928,
FFFF948419907f8e94841990,
FFFF948419f87f8e948419f8,
FFFF94841a607f8e94841a60,
FFFF94841ac87f8e94841ac8,
FFFF94841b307f8e94841b30,
FFFF94841b987f8e94841b98,
FFFF94841c007f8e94841c00,
FFFF94841c687f8e94841c68,
FFFF94841cd07f8e94841cd0,
FFFF94841d387f8e94841d38,
FFFF94841da07f8e94841da0,
FFFF94841f407f8e94841f40,
FFFF94841fa87f8e94841fa8,
FFFF948420107f8e94842010,
FFFF948420787f8e94842078,
FFFF948421b07f8e948421b0,
FFFF948422187f8e94842218,
FFFF948422807f8e94842280,
FFFF948422e87f8e948422e8,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXCooking */
FFFF95adc8c07f8e95adc8c0 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD95d305e07f8e95d305e0 /* PhysXExtensions */; };
FFFF94848c007f8e94848c00 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD94848c007f8e94848c00 /* Adjacencies.cpp */; };
FFFF94848c687f8e94848c68 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD94848c687f8e94848c68 /* Cooking.cpp */; };
FFFF94848cd07f8e94848cd0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD94848cd07f8e94848cd0 /* CookingUtils.cpp */; };
FFFF94848d387f8e94848d38 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD94848d387f8e94848d38 /* EdgeList.cpp */; };
FFFF94848da07f8e94848da0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD94848da07f8e94848da0 /* MeshCleaner.cpp */; };
FFFF94848e087f8e94848e08 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD94848e087f8e94848e08 /* Quantizer.cpp */; };
FFFF948490e07f8e948490e0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948490e07f8e948490e0 /* mesh/GrbTriangleMeshCooking.cpp */; };
FFFF948491487f8e94849148 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948491487f8e94849148 /* mesh/HeightFieldCooking.cpp */; };
FFFF948491b07f8e948491b0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948491b07f8e948491b0 /* mesh/RTreeCooking.cpp */; };
FFFF948492187f8e94849218 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948492187f8e94849218 /* mesh/TriangleMeshBuilder.cpp */; };
FFFF948494887f8e94849488 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948494887f8e94849488 /* convex/BigConvexDataBuilder.cpp */; };
FFFF948494f07f8e948494f0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948494f07f8e948494f0 /* convex/ConvexHullBuilder.cpp */; };
FFFF948495587f8e94849558 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948495587f8e94849558 /* convex/ConvexHullLib.cpp */; };
FFFF948495c07f8e948495c0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948495c07f8e948495c0 /* convex/ConvexHullUtils.cpp */; };
FFFF948496287f8e94849628 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948496287f8e94849628 /* convex/ConvexMeshBuilder.cpp */; };
FFFF948496907f8e94849690 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948496907f8e94849690 /* convex/ConvexPolygonsBuilder.cpp */; };
FFFF948496f87f8e948496f8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948496f87f8e948496f8 /* convex/InflationConvexHullLib.cpp */; };
FFFF948497607f8e94849760 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948497607f8e94849760 /* convex/QuickHullConvexHullLib.cpp */; };
FFFF948497c87f8e948497c8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948497c87f8e948497c8 /* convex/VolumeIntegration.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD95ad90707f8e95ad9070 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD95adc0307f8e95adc030 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
FFFD95adc0987f8e95adc098 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
FFFD95adc1007f8e95adc100 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; };
FFFD95adc1687f8e95adc168 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; };
FFFD95adc1d07f8e95adc1d0 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
FFFD95adc2387f8e95adc238 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; };
FFFD95adc2a07f8e95adc2a0 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; };
FFFD94848c007f8e94848c00 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94848c687f8e94848c68 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94848cd07f8e94848cd0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94848d387f8e94848d38 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94848da07f8e94848da0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94848e087f8e94848e08 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94848e707f8e94848e70 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; };
FFFD94848ed87f8e94848ed8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; };
FFFD94848f407f8e94848f40 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; };
FFFD94848fa87f8e94848fa8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; };
FFFD948490107f8e94849010 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; };
FFFD948490787f8e94849078 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; };
FFFD948490e07f8e948490e0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948491487f8e94849148 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948491b07f8e948491b0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948492187f8e94849218 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948492807f8e94849280 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; };
FFFD948492e87f8e948492e8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; };
FFFD948493507f8e94849350 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; };
FFFD948493b87f8e948493b8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; };
FFFD948494207f8e94849420 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; };
FFFD948494887f8e94849488 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948494f07f8e948494f0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948495587f8e94849558 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948495c07f8e948495c0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948496287f8e94849628 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948496907f8e94849690 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948496f87f8e948496f8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948497607f8e94849760 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948497c87f8e948497c8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948498307f8e94849830 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; };
FFFD948498987f8e94849898 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; };
FFFD948499007f8e94849900 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
FFFD948499687f8e94849968 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; };
FFFD948499d07f8e948499d0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; };
FFFD94849a387f8e94849a38 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; };
FFFD94849aa07f8e94849aa0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
FFFD94849b087f8e94849b08 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
FFFD94849b707f8e94849b70 /* 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 */
FFF295ad90707f8e95ad9070 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC95ad90707f8e95ad9070 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF895ad90707f8e95ad9070 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF94848c007f8e94848c00,
FFFF94848c687f8e94848c68,
FFFF94848cd07f8e94848cd0,
FFFF94848d387f8e94848d38,
FFFF94848da07f8e94848da0,
FFFF94848e087f8e94848e08,
FFFF948490e07f8e948490e0,
FFFF948491487f8e94849148,
FFFF948491b07f8e948491b0,
FFFF948492187f8e94849218,
FFFF948494887f8e94849488,
FFFF948494f07f8e948494f0,
FFFF948495587f8e94849558,
FFFF948495c07f8e948495c0,
FFFF948496287f8e94849628,
FFFF948496907f8e94849690,
FFFF948496f87f8e948496f8,
FFFF948497607f8e94849760,
FFFF948497c87f8e948497c8,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
FFF495ad94907f8e95ad9490 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA9415a1507f8e9415a150 /* PhysXCommon */;
targetProxy = FFF59415a1507f8e9415a150 /* PBXContainerItemProxy */;
};
FFF495adc8c07f8e95adc8c0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA95d305e07f8e95d305e0 /* PhysXExtensions */;
targetProxy = FFF595d305e07f8e95d305e0 /* PBXContainerItemProxy */;
};
FFF495ad89407f8e95ad8940 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA94146ae07f8e94146ae0 /* PxFoundation */;
targetProxy = FFF594146ae07f8e94146ae0 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXCommon */
FFFF939982007f8e93998200 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD939982007f8e93998200 /* src/CmBoxPruning.cpp */; };
FFFF939982687f8e93998268 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD939982687f8e93998268 /* src/CmCollection.cpp */; };
FFFF939982d07f8e939982d0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD939982d07f8e939982d0 /* src/CmMathUtils.cpp */; };
FFFF939983387f8e93998338 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD939983387f8e93998338 /* src/CmPtrTable.cpp */; };
FFFF939983a07f8e939983a0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD939983a07f8e939983a0 /* src/CmRadixSort.cpp */; };
FFFF939984087f8e93998408 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD939984087f8e93998408 /* src/CmRadixSortBuffered.cpp */; };
FFFF939984707f8e93998470 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD939984707f8e93998470 /* src/CmRenderOutput.cpp */; };
FFFF939984d87f8e939984d8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD939984d87f8e939984d8 /* src/CmVisualization.cpp */; };
FFFF948013a87f8e948013a8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948013a87f8e948013a8 /* ../../Include/GeomUtils */; };
FFFF948048e07f8e948048e0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948048e07f8e948048e0 /* src/GuBounds.cpp */; };
FFFF948049487f8e94804948 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948049487f8e94804948 /* src/GuBox.cpp */; };
FFFF948049b07f8e948049b0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948049b07f8e948049b0 /* src/GuCCTSweepTests.cpp */; };
FFFF94804a187f8e94804a18 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94804a187f8e94804a18 /* src/GuCapsule.cpp */; };
FFFF94804a807f8e94804a80 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94804a807f8e94804a80 /* src/GuGeometryQuery.cpp */; };
FFFF94804ae87f8e94804ae8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94804ae87f8e94804ae8 /* src/GuGeometryUnion.cpp */; };
FFFF94804b507f8e94804b50 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94804b507f8e94804b50 /* src/GuInternal.cpp */; };
FFFF94804bb87f8e94804bb8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94804bb87f8e94804bb8 /* src/GuMTD.cpp */; };
FFFF94804c207f8e94804c20 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94804c207f8e94804c20 /* src/GuMeshFactory.cpp */; };
FFFF94804c887f8e94804c88 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94804c887f8e94804c88 /* src/GuMetaData.cpp */; };
FFFF94804cf07f8e94804cf0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94804cf07f8e94804cf0 /* src/GuOverlapTests.cpp */; };
FFFF94804d587f8e94804d58 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94804d587f8e94804d58 /* src/GuRaycastTests.cpp */; };
FFFF94804dc07f8e94804dc0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94804dc07f8e94804dc0 /* src/GuSerialize.cpp */; };
FFFF94804e287f8e94804e28 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94804e287f8e94804e28 /* src/GuSweepMTD.cpp */; };
FFFF94804e907f8e94804e90 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94804e907f8e94804e90 /* src/GuSweepSharedTests.cpp */; };
FFFF94804ef87f8e94804ef8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94804ef87f8e94804ef8 /* src/GuSweepTests.cpp */; };
FFFF94804f607f8e94804f60 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94804f607f8e94804f60 /* src/contact/GuContactBoxBox.cpp */; };
FFFF94804fc87f8e94804fc8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94804fc87f8e94804fc8 /* src/contact/GuContactCapsuleBox.cpp */; };
FFFF948050307f8e94805030 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948050307f8e94805030 /* src/contact/GuContactCapsuleCapsule.cpp */; };
FFFF948050987f8e94805098 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948050987f8e94805098 /* src/contact/GuContactCapsuleConvex.cpp */; };
FFFF948051007f8e94805100 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948051007f8e94805100 /* src/contact/GuContactCapsuleMesh.cpp */; };
FFFF948051687f8e94805168 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948051687f8e94805168 /* src/contact/GuContactConvexConvex.cpp */; };
FFFF948051d07f8e948051d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948051d07f8e948051d0 /* src/contact/GuContactConvexMesh.cpp */; };
FFFF948052387f8e94805238 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948052387f8e94805238 /* src/contact/GuContactPlaneBox.cpp */; };
FFFF948052a07f8e948052a0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948052a07f8e948052a0 /* src/contact/GuContactPlaneCapsule.cpp */; };
FFFF948053087f8e94805308 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948053087f8e94805308 /* src/contact/GuContactPlaneConvex.cpp */; };
FFFF948053707f8e94805370 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948053707f8e94805370 /* src/contact/GuContactPolygonPolygon.cpp */; };
FFFF948053d87f8e948053d8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948053d87f8e948053d8 /* src/contact/GuContactSphereBox.cpp */; };
FFFF948054407f8e94805440 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948054407f8e94805440 /* src/contact/GuContactSphereCapsule.cpp */; };
FFFF948054a87f8e948054a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948054a87f8e948054a8 /* src/contact/GuContactSphereMesh.cpp */; };
FFFF948055107f8e94805510 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948055107f8e94805510 /* src/contact/GuContactSpherePlane.cpp */; };
FFFF948055787f8e94805578 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948055787f8e94805578 /* src/contact/GuContactSphereSphere.cpp */; };
FFFF948055e07f8e948055e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948055e07f8e948055e0 /* src/contact/GuFeatureCode.cpp */; };
FFFF948056487f8e94805648 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948056487f8e94805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */; };
FFFF948056b07f8e948056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948056b07f8e948056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; };
FFFF948057187f8e94805718 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948057187f8e94805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */; };
FFFF948057807f8e94805780 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948057807f8e94805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */; };
FFFF948057e87f8e948057e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948057e87f8e948057e8 /* src/common/GuBarycentricCoordinates.cpp */; };
FFFF948058507f8e94805850 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948058507f8e94805850 /* src/common/GuSeparatingAxes.cpp */; };
FFFF948058b87f8e948058b8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948058b87f8e948058b8 /* src/convex/GuBigConvexData.cpp */; };
FFFF948059207f8e94805920 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948059207f8e94805920 /* src/convex/GuConvexHelper.cpp */; };
FFFF948059887f8e94805988 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948059887f8e94805988 /* src/convex/GuConvexMesh.cpp */; };
FFFF948059f07f8e948059f0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948059f07f8e948059f0 /* src/convex/GuConvexSupportTable.cpp */; };
FFFF94805a587f8e94805a58 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94805a587f8e94805a58 /* src/convex/GuConvexUtilsInternal.cpp */; };
FFFF94805ac07f8e94805ac0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94805ac07f8e94805ac0 /* src/convex/GuHillClimbing.cpp */; };
FFFF94805b287f8e94805b28 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94805b287f8e94805b28 /* src/convex/GuShapeConvex.cpp */; };
FFFF94805b907f8e94805b90 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94805b907f8e94805b90 /* src/distance/GuDistancePointBox.cpp */; };
FFFF94805bf87f8e94805bf8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94805bf87f8e94805bf8 /* src/distance/GuDistancePointTriangle.cpp */; };
FFFF94805c607f8e94805c60 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94805c607f8e94805c60 /* src/distance/GuDistanceSegmentBox.cpp */; };
FFFF94805cc87f8e94805cc8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94805cc87f8e94805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */; };
FFFF94805d307f8e94805d30 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94805d307f8e94805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */; };
FFFF94805d987f8e94805d98 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94805d987f8e94805d98 /* src/sweep/GuSweepBoxBox.cpp */; };
FFFF94805e007f8e94805e00 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94805e007f8e94805e00 /* src/sweep/GuSweepBoxSphere.cpp */; };
FFFF94805e687f8e94805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94805e687f8e94805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; };
FFFF94805ed07f8e94805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94805ed07f8e94805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; };
FFFF94805f387f8e94805f38 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94805f387f8e94805f38 /* src/sweep/GuSweepCapsuleBox.cpp */; };
FFFF94805fa07f8e94805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94805fa07f8e94805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; };
FFFF948060087f8e94806008 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948060087f8e94806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */; };
FFFF948060707f8e94806070 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948060707f8e94806070 /* src/sweep/GuSweepSphereCapsule.cpp */; };
FFFF948060d87f8e948060d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948060d87f8e948060d8 /* src/sweep/GuSweepSphereSphere.cpp */; };
FFFF948061407f8e94806140 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948061407f8e94806140 /* src/sweep/GuSweepSphereTriangle.cpp */; };
FFFF948061a87f8e948061a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948061a87f8e948061a8 /* src/sweep/GuSweepTriangleUtils.cpp */; };
FFFF948062107f8e94806210 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948062107f8e94806210 /* src/gjk/GuEPA.cpp */; };
FFFF948062787f8e94806278 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948062787f8e94806278 /* src/gjk/GuGJKSimplex.cpp */; };
FFFF948062e07f8e948062e0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948062e07f8e948062e0 /* src/gjk/GuGJKTest.cpp */; };
FFFF948063487f8e94806348 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948063487f8e94806348 /* src/intersection/GuIntersectionBoxBox.cpp */; };
FFFF948063b07f8e948063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948063b07f8e948063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; };
FFFF948064187f8e94806418 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948064187f8e94806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */; };
FFFF948064807f8e94806480 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948064807f8e94806480 /* src/intersection/GuIntersectionRayBox.cpp */; };
FFFF948064e87f8e948064e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948064e87f8e948064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; };
FFFF948065507f8e94806550 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948065507f8e94806550 /* src/intersection/GuIntersectionRaySphere.cpp */; };
FFFF948065b87f8e948065b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948065b87f8e948065b8 /* src/intersection/GuIntersectionSphereBox.cpp */; };
FFFF948066207f8e94806620 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948066207f8e94806620 /* src/intersection/GuIntersectionTriangleBox.cpp */; };
FFFF948066887f8e94806688 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948066887f8e94806688 /* src/mesh/GuBV32.cpp */; };
FFFF948066f07f8e948066f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948066f07f8e948066f0 /* src/mesh/GuBV32Build.cpp */; };
FFFF948067587f8e94806758 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948067587f8e94806758 /* src/mesh/GuBV4.cpp */; };
FFFF948067c07f8e948067c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948067c07f8e948067c0 /* src/mesh/GuBV4Build.cpp */; };
FFFF948068287f8e94806828 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948068287f8e94806828 /* src/mesh/GuBV4_AABBSweep.cpp */; };
FFFF948068907f8e94806890 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948068907f8e94806890 /* src/mesh/GuBV4_BoxOverlap.cpp */; };
FFFF948068f87f8e948068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948068f87f8e948068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; };
FFFF948069607f8e94806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948069607f8e94806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; };
FFFF948069c87f8e948069c8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948069c87f8e948069c8 /* src/mesh/GuBV4_OBBSweep.cpp */; };
FFFF94806a307f8e94806a30 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94806a307f8e94806a30 /* src/mesh/GuBV4_Raycast.cpp */; };
FFFF94806a987f8e94806a98 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94806a987f8e94806a98 /* src/mesh/GuBV4_SphereOverlap.cpp */; };
FFFF94806b007f8e94806b00 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94806b007f8e94806b00 /* src/mesh/GuBV4_SphereSweep.cpp */; };
FFFF94806b687f8e94806b68 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94806b687f8e94806b68 /* src/mesh/GuMeshQuery.cpp */; };
FFFF94806bd07f8e94806bd0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94806bd07f8e94806bd0 /* src/mesh/GuMidphaseBV4.cpp */; };
FFFF94806c387f8e94806c38 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94806c387f8e94806c38 /* src/mesh/GuMidphaseRTree.cpp */; };
FFFF94806ca07f8e94806ca0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94806ca07f8e94806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */; };
FFFF94806d087f8e94806d08 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94806d087f8e94806d08 /* src/mesh/GuRTree.cpp */; };
FFFF94806d707f8e94806d70 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94806d707f8e94806d70 /* src/mesh/GuRTreeQueries.cpp */; };
FFFF94806dd87f8e94806dd8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94806dd87f8e94806dd8 /* src/mesh/GuSweepsMesh.cpp */; };
FFFF94806e407f8e94806e40 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94806e407f8e94806e40 /* src/mesh/GuTriangleMesh.cpp */; };
FFFF94806ea87f8e94806ea8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94806ea87f8e94806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */; };
FFFF94806f107f8e94806f10 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94806f107f8e94806f10 /* src/mesh/GuTriangleMeshRTree.cpp */; };
FFFF94806f787f8e94806f78 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94806f787f8e94806f78 /* src/hf/GuHeightField.cpp */; };
FFFF94806fe07f8e94806fe0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94806fe07f8e94806fe0 /* src/hf/GuHeightFieldUtil.cpp */; };
FFFF948070487f8e94807048 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948070487f8e94807048 /* src/hf/GuOverlapTestsHF.cpp */; };
FFFF948070b07f8e948070b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948070b07f8e948070b0 /* src/hf/GuSweepsHF.cpp */; };
FFFF948071187f8e94807118 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948071187f8e94807118 /* src/pcm/GuPCMContactBoxBox.cpp */; };
FFFF948071807f8e94807180 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948071807f8e94807180 /* src/pcm/GuPCMContactBoxConvex.cpp */; };
FFFF948071e87f8e948071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948071e87f8e948071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; };
FFFF948072507f8e94807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948072507f8e94807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; };
FFFF948072b87f8e948072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948072b87f8e948072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; };
FFFF948073207f8e94807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948073207f8e94807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; };
FFFF948073887f8e94807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948073887f8e94807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; };
FFFF948073f07f8e948073f0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948073f07f8e948073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */; };
FFFF948074587f8e94807458 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948074587f8e94807458 /* src/pcm/GuPCMContactConvexConvex.cpp */; };
FFFF948074c07f8e948074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948074c07f8e948074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; };
FFFF948075287f8e94807528 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948075287f8e94807528 /* src/pcm/GuPCMContactConvexMesh.cpp */; };
FFFF948075907f8e94807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948075907f8e94807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; };
FFFF948075f87f8e948075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948075f87f8e948075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; };
FFFF948076607f8e94807660 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948076607f8e94807660 /* src/pcm/GuPCMContactPlaneBox.cpp */; };
FFFF948076c87f8e948076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948076c87f8e948076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; };
FFFF948077307f8e94807730 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948077307f8e94807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */; };
FFFF948077987f8e94807798 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948077987f8e94807798 /* src/pcm/GuPCMContactSphereBox.cpp */; };
FFFF948078007f8e94807800 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948078007f8e94807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */; };
FFFF948078687f8e94807868 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948078687f8e94807868 /* src/pcm/GuPCMContactSphereConvex.cpp */; };
FFFF948078d07f8e948078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948078d07f8e948078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; };
FFFF948079387f8e94807938 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948079387f8e94807938 /* src/pcm/GuPCMContactSphereMesh.cpp */; };
FFFF948079a07f8e948079a0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD948079a07f8e948079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */; };
FFFF94807a087f8e94807a08 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94807a087f8e94807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */; };
FFFF94807a707f8e94807a70 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94807a707f8e94807a70 /* src/pcm/GuPCMShapeConvex.cpp */; };
FFFF94807ad87f8e94807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94807ad87f8e94807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */; };
FFFF94807b407f8e94807b40 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94807b407f8e94807b40 /* src/pcm/GuPersistentContactManifold.cpp */; };
FFFF94807ba87f8e94807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94807ba87f8e94807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; };
FFFF94807c107f8e94807c10 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD94807c107f8e94807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD9415a1507f8e9415a150 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD9480ec007f8e9480ec00 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; };
FFFD9480ec687f8e9480ec68 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; };
FFFD9480ecd07f8e9480ecd0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; };
FFFD9480ed387f8e9480ed38 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; };
FFFD9480eda07f8e9480eda0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; };
FFFD9480ee087f8e9480ee08 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; };
FFFD9480ee707f8e9480ee70 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; };
FFFD9480eed87f8e9480eed8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFD9480ef407f8e9480ef40 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; };
FFFD9480efa87f8e9480efa8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; };
FFFD9480f0107f8e9480f010 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; };
FFFD9480f0787f8e9480f078 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; };
FFFD9480f0e07f8e9480f0e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; };
FFFD9480f1487f8e9480f148 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; };
FFFD9480f1b07f8e9480f1b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; };
FFFD9480f2187f8e9480f218 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; };
FFFD9480f2807f8e9480f280 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; };
FFFD9480f2e87f8e9480f2e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; };
FFFD9480f3507f8e9480f350 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; };
FFFD9480f3b87f8e9480f3b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; };
FFFD9480f4207f8e9480f420 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; };
FFFD9480f4887f8e9480f488 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; };
FFFD9480f4f07f8e9480f4f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; };
FFFD9480f5587f8e9480f558 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; };
FFFD9480f5c07f8e9480f5c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; };
FFFD9480f6287f8e9480f628 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; };
FFFD9480f6907f8e9480f690 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; };
FFFD9480f6f87f8e9480f6f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; };
FFFD9480f7607f8e9480f760 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
FFFD9480f7c87f8e9480f7c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; };
FFFD9480f8307f8e9480f830 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; };
FFFD9480f8987f8e9480f898 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
FFFD9480f9007f8e9480f900 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; };
FFFD939982007f8e93998200 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939982687f8e93998268 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939982d07f8e939982d0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939983387f8e93998338 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939983a07f8e939983a0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939984087f8e93998408 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939984707f8e93998470 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939984d87f8e939984d8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939985407f8e93998540 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; };
FFFD939985a87f8e939985a8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; };
FFFD939986107f8e93998610 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; };
FFFD939986787f8e93998678 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; };
FFFD939986e07f8e939986e0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; };
FFFD939987487f8e93998748 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; };
FFFD939987b07f8e939987b0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; };
FFFD939988187f8e93998818 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; };
FFFD939988807f8e93998880 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; };
FFFD939988e87f8e939988e8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; };
FFFD939989507f8e93998950 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; };
FFFD939989b87f8e939989b8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; };
FFFD93998a207f8e93998a20 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; };
FFFD93998a887f8e93998a88 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; };
FFFD93998af07f8e93998af0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; };
FFFD93998b587f8e93998b58 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; };
FFFD93998bc07f8e93998bc0 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; };
FFFD93998c287f8e93998c28 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFD93998c907f8e93998c90 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; };
FFFD93998cf87f8e93998cf8 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; };
FFFD93998d607f8e93998d60 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; };
FFFD93998dc87f8e93998dc8 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; };
FFFD93998e307f8e93998e30 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; };
FFFD93998e987f8e93998e98 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; };
FFFD93998f007f8e93998f00 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; };
FFFD93998f687f8e93998f68 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; };
FFFD93998fd07f8e93998fd0 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; };
FFFD948010007f8e94801000 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; };
FFFD948010687f8e94801068 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; };
FFFD948010d07f8e948010d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; };
FFFD948011387f8e94801138 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; };
FFFD948011a07f8e948011a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; };
FFFD948012087f8e94801208 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; };
FFFD948012707f8e94801270 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; };
FFFD948012d87f8e948012d8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; };
FFFD948013407f8e94801340 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; };
FFFD948013a87f8e948013a8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; };
FFFD948014107f8e94801410 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; };
FFFD948014787f8e94801478 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; };
FFFD948014e07f8e948014e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; };
FFFD948015487f8e94801548 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; };
FFFD948015b07f8e948015b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; };
FFFD948016187f8e94801618 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; };
FFFD948016807f8e94801680 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; };
FFFD948016e87f8e948016e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; };
FFFD948017507f8e94801750 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; };
FFFD948017b87f8e948017b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; };
FFFD948018207f8e94801820 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; };
FFFD948018887f8e94801888 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; };
FFFD948018f07f8e948018f0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; };
FFFD948019587f8e94801958 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; };
FFFD948019c07f8e948019c0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; };
FFFD94801a287f8e94801a28 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; };
FFFD94801a907f8e94801a90 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; };
FFFD94801af87f8e94801af8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; };
FFFD94801b607f8e94801b60 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; };
FFFD94801bc87f8e94801bc8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; };
FFFD94801c307f8e94801c30 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; };
FFFD94801c987f8e94801c98 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; };
FFFD94801d007f8e94801d00 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; };
FFFD94801d687f8e94801d68 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; };
FFFD94801dd07f8e94801dd0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; };
FFFD94801e387f8e94801e38 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; };
FFFD94801ea07f8e94801ea0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; };
FFFD94801f087f8e94801f08 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; };
FFFD94801f707f8e94801f70 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; };
FFFD94801fd87f8e94801fd8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; };
FFFD948020407f8e94802040 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; };
FFFD948020a87f8e948020a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; };
FFFD948021107f8e94802110 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; };
FFFD948021787f8e94802178 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; };
FFFD948021e07f8e948021e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; };
FFFD948022487f8e94802248 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; };
FFFD948022b07f8e948022b0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; };
FFFD948023187f8e94802318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; };
FFFD948023807f8e94802380 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; };
FFFD948023e87f8e948023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; };
FFFD948024507f8e94802450 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; };
FFFD948024b87f8e948024b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; };
FFFD948025207f8e94802520 /* 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; };
FFFD948025887f8e94802588 /* 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; };
FFFD948025f07f8e948025f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; };
FFFD948026587f8e94802658 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; };
FFFD948026c07f8e948026c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; };
FFFD948027287f8e94802728 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; };
FFFD948027907f8e94802790 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; };
FFFD948027f87f8e948027f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; };
FFFD948028607f8e94802860 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; };
FFFD948028c87f8e948028c8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; };
FFFD948029307f8e94802930 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; };
FFFD948029987f8e94802998 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; };
FFFD94802a007f8e94802a00 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; };
FFFD94802a687f8e94802a68 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; };
FFFD94802ad07f8e94802ad0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; };
FFFD94802b387f8e94802b38 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; };
FFFD94802ba07f8e94802ba0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; };
FFFD94802c087f8e94802c08 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; };
FFFD94802c707f8e94802c70 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; };
FFFD94802cd87f8e94802cd8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; };
FFFD94802d407f8e94802d40 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; };
FFFD94802da87f8e94802da8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; };
FFFD94802e107f8e94802e10 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; };
FFFD94802e787f8e94802e78 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; };
FFFD94802ee07f8e94802ee0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; };
FFFD94802f487f8e94802f48 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; };
FFFD94802fb07f8e94802fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; };
FFFD948030187f8e94803018 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; };
FFFD948030807f8e94803080 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; };
FFFD948030e87f8e948030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; };
FFFD948031507f8e94803150 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; };
FFFD948031b87f8e948031b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; };
FFFD948032207f8e94803220 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; };
FFFD948032887f8e94803288 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; };
FFFD948032f07f8e948032f0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; };
FFFD948033587f8e94803358 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; };
FFFD948033c07f8e948033c0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; };
FFFD948034287f8e94803428 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; };
FFFD948034907f8e94803490 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; };
FFFD948034f87f8e948034f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; };
FFFD948035607f8e94803560 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; };
FFFD948035c87f8e948035c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; };
FFFD948036307f8e94803630 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; };
FFFD948036987f8e94803698 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; };
FFFD948037007f8e94803700 /* 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; };
FFFD948037687f8e94803768 /* 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; };
FFFD948037d07f8e948037d0 /* 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; };
FFFD948038387f8e94803838 /* 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; };
FFFD948038a07f8e948038a0 /* 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; };
FFFD948039087f8e94803908 /* 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; };
FFFD948039707f8e94803970 /* 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; };
FFFD948039d87f8e948039d8 /* 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; };
FFFD94803a407f8e94803a40 /* 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; };
FFFD94803aa87f8e94803aa8 /* 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; };
FFFD94803b107f8e94803b10 /* 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; };
FFFD94803b787f8e94803b78 /* 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; };
FFFD94803be07f8e94803be0 /* 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; };
FFFD94803c487f8e94803c48 /* 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; };
FFFD94803cb07f8e94803cb0 /* 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; };
FFFD94803d187f8e94803d18 /* 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; };
FFFD94803d807f8e94803d80 /* 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; };
FFFD94803de87f8e94803de8 /* 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; };
FFFD94803e507f8e94803e50 /* 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; };
FFFD94803eb87f8e94803eb8 /* 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; };
FFFD94803f207f8e94803f20 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; };
FFFD94803f887f8e94803f88 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; };
FFFD94803ff07f8e94803ff0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; };
FFFD948040587f8e94804058 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; };
FFFD948040c07f8e948040c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; };
FFFD948041287f8e94804128 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; };
FFFD948041907f8e94804190 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; };
FFFD948041f87f8e948041f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; };
FFFD948042607f8e94804260 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
FFFD948042c87f8e948042c8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; };
FFFD948043307f8e94804330 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; };
FFFD948043987f8e94804398 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; };
FFFD948044007f8e94804400 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; };
FFFD948044687f8e94804468 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; };
FFFD948044d07f8e948044d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; };
FFFD948045387f8e94804538 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; };
FFFD948045a07f8e948045a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; };
FFFD948046087f8e94804608 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; };
FFFD948046707f8e94804670 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; };
FFFD948046d87f8e948046d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; };
FFFD948047407f8e94804740 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; };
FFFD948047a87f8e948047a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; };
FFFD948048107f8e94804810 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; };
FFFD948048787f8e94804878 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; };
FFFD948048e07f8e948048e0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948049487f8e94804948 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948049b07f8e948049b0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94804a187f8e94804a18 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94804a807f8e94804a80 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94804ae87f8e94804ae8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94804b507f8e94804b50 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94804bb87f8e94804bb8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94804c207f8e94804c20 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94804c887f8e94804c88 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94804cf07f8e94804cf0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94804d587f8e94804d58 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94804dc07f8e94804dc0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94804e287f8e94804e28 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94804e907f8e94804e90 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94804ef87f8e94804ef8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94804f607f8e94804f60 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94804fc87f8e94804fc8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948050307f8e94805030 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948050987f8e94805098 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948051007f8e94805100 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948051687f8e94805168 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948051d07f8e948051d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948052387f8e94805238 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948052a07f8e948052a0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948053087f8e94805308 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948053707f8e94805370 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948053d87f8e948053d8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948054407f8e94805440 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948054a87f8e948054a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948055107f8e94805510 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948055787f8e94805578 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948055e07f8e948055e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948056487f8e94805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948056b07f8e948056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948057187f8e94805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948057807f8e94805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948057e87f8e948057e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948058507f8e94805850 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948058b87f8e948058b8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948059207f8e94805920 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948059887f8e94805988 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948059f07f8e948059f0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94805a587f8e94805a58 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94805ac07f8e94805ac0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94805b287f8e94805b28 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94805b907f8e94805b90 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94805bf87f8e94805bf8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94805c607f8e94805c60 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94805cc87f8e94805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94805d307f8e94805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94805d987f8e94805d98 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94805e007f8e94805e00 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94805e687f8e94805e68 /* 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; };
FFFD94805ed07f8e94805ed0 /* 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; };
FFFD94805f387f8e94805f38 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94805fa07f8e94805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948060087f8e94806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948060707f8e94806070 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948060d87f8e948060d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948061407f8e94806140 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948061a87f8e948061a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948062107f8e94806210 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948062787f8e94806278 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948062e07f8e948062e0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948063487f8e94806348 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948063b07f8e948063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948064187f8e94806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948064807f8e94806480 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948064e87f8e948064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948065507f8e94806550 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948065b87f8e948065b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948066207f8e94806620 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948066887f8e94806688 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948066f07f8e948066f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948067587f8e94806758 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948067c07f8e948067c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948068287f8e94806828 /* 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; };
FFFD948068907f8e94806890 /* 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; };
FFFD948068f87f8e948068f8 /* 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; };
FFFD948069607f8e94806960 /* 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; };
FFFD948069c87f8e948069c8 /* 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; };
FFFD94806a307f8e94806a30 /* 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; };
FFFD94806a987f8e94806a98 /* 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; };
FFFD94806b007f8e94806b00 /* 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; };
FFFD94806b687f8e94806b68 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94806bd07f8e94806bd0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94806c387f8e94806c38 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94806ca07f8e94806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94806d087f8e94806d08 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94806d707f8e94806d70 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94806dd87f8e94806dd8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94806e407f8e94806e40 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94806ea87f8e94806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94806f107f8e94806f10 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94806f787f8e94806f78 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94806fe07f8e94806fe0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948070487f8e94807048 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948070b07f8e948070b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948071187f8e94807118 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948071807f8e94807180 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948071e87f8e948071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948072507f8e94807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948072b87f8e948072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948073207f8e94807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948073887f8e94807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948073f07f8e948073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948074587f8e94807458 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948074c07f8e948074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948075287f8e94807528 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948075907f8e94807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948075f87f8e948075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948076607f8e94807660 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948076c87f8e948076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948077307f8e94807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948077987f8e94807798 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948078007f8e94807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948078687f8e94807868 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948078d07f8e948078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948079387f8e94807938 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948079a07f8e948079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94807a087f8e94807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94807a707f8e94807a70 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94807ad87f8e94807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94807b407f8e94807b40 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94807ba87f8e94807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94807c107f8e94807c10 /* 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 */
FFF29415a1507f8e9415a150 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF948013a87f8e948013a8,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC9415a1507f8e9415a150 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF89415a1507f8e9415a150 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF939982007f8e93998200,
FFFF939982687f8e93998268,
FFFF939982d07f8e939982d0,
FFFF939983387f8e93998338,
FFFF939983a07f8e939983a0,
FFFF939984087f8e93998408,
FFFF939984707f8e93998470,
FFFF939984d87f8e939984d8,
FFFF948048e07f8e948048e0,
FFFF948049487f8e94804948,
FFFF948049b07f8e948049b0,
FFFF94804a187f8e94804a18,
FFFF94804a807f8e94804a80,
FFFF94804ae87f8e94804ae8,
FFFF94804b507f8e94804b50,
FFFF94804bb87f8e94804bb8,
FFFF94804c207f8e94804c20,
FFFF94804c887f8e94804c88,
FFFF94804cf07f8e94804cf0,
FFFF94804d587f8e94804d58,
FFFF94804dc07f8e94804dc0,
FFFF94804e287f8e94804e28,
FFFF94804e907f8e94804e90,
FFFF94804ef87f8e94804ef8,
FFFF94804f607f8e94804f60,
FFFF94804fc87f8e94804fc8,
FFFF948050307f8e94805030,
FFFF948050987f8e94805098,
FFFF948051007f8e94805100,
FFFF948051687f8e94805168,
FFFF948051d07f8e948051d0,
FFFF948052387f8e94805238,
FFFF948052a07f8e948052a0,
FFFF948053087f8e94805308,
FFFF948053707f8e94805370,
FFFF948053d87f8e948053d8,
FFFF948054407f8e94805440,
FFFF948054a87f8e948054a8,
FFFF948055107f8e94805510,
FFFF948055787f8e94805578,
FFFF948055e07f8e948055e0,
FFFF948056487f8e94805648,
FFFF948056b07f8e948056b0,
FFFF948057187f8e94805718,
FFFF948057807f8e94805780,
FFFF948057e87f8e948057e8,
FFFF948058507f8e94805850,
FFFF948058b87f8e948058b8,
FFFF948059207f8e94805920,
FFFF948059887f8e94805988,
FFFF948059f07f8e948059f0,
FFFF94805a587f8e94805a58,
FFFF94805ac07f8e94805ac0,
FFFF94805b287f8e94805b28,
FFFF94805b907f8e94805b90,
FFFF94805bf87f8e94805bf8,
FFFF94805c607f8e94805c60,
FFFF94805cc87f8e94805cc8,
FFFF94805d307f8e94805d30,
FFFF94805d987f8e94805d98,
FFFF94805e007f8e94805e00,
FFFF94805e687f8e94805e68,
FFFF94805ed07f8e94805ed0,
FFFF94805f387f8e94805f38,
FFFF94805fa07f8e94805fa0,
FFFF948060087f8e94806008,
FFFF948060707f8e94806070,
FFFF948060d87f8e948060d8,
FFFF948061407f8e94806140,
FFFF948061a87f8e948061a8,
FFFF948062107f8e94806210,
FFFF948062787f8e94806278,
FFFF948062e07f8e948062e0,
FFFF948063487f8e94806348,
FFFF948063b07f8e948063b0,
FFFF948064187f8e94806418,
FFFF948064807f8e94806480,
FFFF948064e87f8e948064e8,
FFFF948065507f8e94806550,
FFFF948065b87f8e948065b8,
FFFF948066207f8e94806620,
FFFF948066887f8e94806688,
FFFF948066f07f8e948066f0,
FFFF948067587f8e94806758,
FFFF948067c07f8e948067c0,
FFFF948068287f8e94806828,
FFFF948068907f8e94806890,
FFFF948068f87f8e948068f8,
FFFF948069607f8e94806960,
FFFF948069c87f8e948069c8,
FFFF94806a307f8e94806a30,
FFFF94806a987f8e94806a98,
FFFF94806b007f8e94806b00,
FFFF94806b687f8e94806b68,
FFFF94806bd07f8e94806bd0,
FFFF94806c387f8e94806c38,
FFFF94806ca07f8e94806ca0,
FFFF94806d087f8e94806d08,
FFFF94806d707f8e94806d70,
FFFF94806dd87f8e94806dd8,
FFFF94806e407f8e94806e40,
FFFF94806ea87f8e94806ea8,
FFFF94806f107f8e94806f10,
FFFF94806f787f8e94806f78,
FFFF94806fe07f8e94806fe0,
FFFF948070487f8e94807048,
FFFF948070b07f8e948070b0,
FFFF948071187f8e94807118,
FFFF948071807f8e94807180,
FFFF948071e87f8e948071e8,
FFFF948072507f8e94807250,
FFFF948072b87f8e948072b8,
FFFF948073207f8e94807320,
FFFF948073887f8e94807388,
FFFF948073f07f8e948073f0,
FFFF948074587f8e94807458,
FFFF948074c07f8e948074c0,
FFFF948075287f8e94807528,
FFFF948075907f8e94807590,
FFFF948075f87f8e948075f8,
FFFF948076607f8e94807660,
FFFF948076c87f8e948076c8,
FFFF948077307f8e94807730,
FFFF948077987f8e94807798,
FFFF948078007f8e94807800,
FFFF948078687f8e94807868,
FFFF948078d07f8e948078d0,
FFFF948079387f8e94807938,
FFFF948079a07f8e948079a0,
FFFF94807a087f8e94807a08,
FFFF94807a707f8e94807a70,
FFFF94807ad87f8e94807ad8,
FFFF94807b407f8e94807b40,
FFFF94807ba87f8e94807ba8,
FFFF94807c107f8e94807c10,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
FFF494154b707f8e94154b70 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA94146ae07f8e94146ae0 /* PxFoundation */;
targetProxy = FFF594146ae07f8e94146ae0 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PxFoundation */
FFFF93995b187f8e93995b18 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD93995b187f8e93995b18 /* src/PsAllocator.cpp */; };
FFFF93995b807f8e93995b80 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD93995b807f8e93995b80 /* src/PsAssert.cpp */; };
FFFF93995be87f8e93995be8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD93995be87f8e93995be8 /* src/PsFoundation.cpp */; };
FFFF93995c507f8e93995c50 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD93995c507f8e93995c50 /* src/PsMathUtils.cpp */; };
FFFF93995cb87f8e93995cb8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD93995cb87f8e93995cb8 /* src/PsString.cpp */; };
FFFF93995d207f8e93995d20 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD93995d207f8e93995d20 /* src/PsTempAllocator.cpp */; };
FFFF93995d887f8e93995d88 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD93995d887f8e93995d88 /* src/PsUtilities.cpp */; };
FFFF93995df07f8e93995df0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD93995df07f8e93995df0 /* src/unix/PsUnixAtomic.cpp */; };
FFFF93995e587f8e93995e58 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD93995e587f8e93995e58 /* src/unix/PsUnixCpu.cpp */; };
FFFF93995ec07f8e93995ec0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD93995ec07f8e93995ec0 /* src/unix/PsUnixFPU.cpp */; };
FFFF93995f287f8e93995f28 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD93995f287f8e93995f28 /* src/unix/PsUnixMutex.cpp */; };
FFFF93995f907f8e93995f90 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD93995f907f8e93995f90 /* src/unix/PsUnixPrintString.cpp */; };
FFFF93995ff87f8e93995ff8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD93995ff87f8e93995ff8 /* src/unix/PsUnixSList.cpp */; };
FFFF939960607f8e93996060 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD939960607f8e93996060 /* src/unix/PsUnixSocket.cpp */; };
FFFF939960c87f8e939960c8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD939960c87f8e939960c8 /* src/unix/PsUnixSync.cpp */; };
FFFF939961307f8e93996130 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD939961307f8e93996130 /* src/unix/PsUnixThread.cpp */; };
FFFF939961987f8e93996198 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD939961987f8e93996198 /* src/unix/PsUnixTime.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD94146ae07f8e94146ae0 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD939924007f8e93992400 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; };
FFFD939924687f8e93992468 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; };
FFFD939924d07f8e939924d0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; };
FFFD939925387f8e93992538 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; };
FFFD939925a07f8e939925a0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; };
FFFD939926087f8e93992608 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; };
FFFD939926707f8e93992670 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; };
FFFD939926d87f8e939926d8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; };
FFFD939927407f8e93992740 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; };
FFFD939927a87f8e939927a8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; };
FFFD939928107f8e93992810 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; };
FFFD939928787f8e93992878 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; };
FFFD939928e07f8e939928e0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; };
FFFD939929487f8e93992948 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; };
FFFD939929b07f8e939929b0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; };
FFFD93992a187f8e93992a18 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; };
FFFD93992a807f8e93992a80 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; };
FFFD93992ae87f8e93992ae8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; };
FFFD93992b507f8e93992b50 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; };
FFFD93992bb87f8e93992bb8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; };
FFFD93992c207f8e93992c20 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; };
FFFD93992c887f8e93992c88 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; };
FFFD93992cf07f8e93992cf0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; };
FFFD93992d587f8e93992d58 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; };
FFFD93992dc07f8e93992dc0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; };
FFFD93992e287f8e93992e28 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; };
FFFD93992e907f8e93992e90 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; };
FFFD93992ef87f8e93992ef8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; };
FFFD93992f607f8e93992f60 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; };
FFFD939948007f8e93994800 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; };
FFFD939948687f8e93994868 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; };
FFFD939948d07f8e939948d0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; };
FFFD939949387f8e93994938 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; };
FFFD939949a07f8e939949a0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; };
FFFD93994a087f8e93994a08 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; };
FFFD93994a707f8e93994a70 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; };
FFFD93994ad87f8e93994ad8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; };
FFFD93994b407f8e93994b40 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; };
FFFD93994ba87f8e93994ba8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; };
FFFD93994c107f8e93994c10 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; };
FFFD93994c787f8e93994c78 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; };
FFFD93994ce07f8e93994ce0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; };
FFFD93994d487f8e93994d48 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; };
FFFD93994db07f8e93994db0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; };
FFFD93994e187f8e93994e18 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; };
FFFD93994e807f8e93994e80 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; };
FFFD93994ee87f8e93994ee8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; };
FFFD93994f507f8e93994f50 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; };
FFFD93994fb87f8e93994fb8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; };
FFFD939950207f8e93995020 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; };
FFFD939950887f8e93995088 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; };
FFFD939950f07f8e939950f0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; };
FFFD939951587f8e93995158 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; };
FFFD939951c07f8e939951c0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; };
FFFD939952287f8e93995228 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; };
FFFD939952907f8e93995290 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; };
FFFD939952f87f8e939952f8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; };
FFFD939953607f8e93995360 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; };
FFFD939953c87f8e939953c8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; };
FFFD939954307f8e93995430 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; };
FFFD939954987f8e93995498 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; };
FFFD939955007f8e93995500 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; };
FFFD939955687f8e93995568 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; };
FFFD939955d07f8e939955d0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; };
FFFD939956387f8e93995638 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; };
FFFD939956a07f8e939956a0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; };
FFFD939957087f8e93995708 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; };
FFFD939957707f8e93995770 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; };
FFFD939957d87f8e939957d8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; };
FFFD939958407f8e93995840 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; };
FFFD939958a87f8e939958a8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; };
FFFD939959107f8e93995910 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; };
FFFD939959787f8e93995978 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; };
FFFD939959e07f8e939959e0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; };
FFFD93995a487f8e93995a48 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; };
FFFD93995ab07f8e93995ab0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; };
FFFD93995b187f8e93995b18 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; };
FFFD93995b807f8e93995b80 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; };
FFFD93995be87f8e93995be8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; };
FFFD93995c507f8e93995c50 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; };
FFFD93995cb87f8e93995cb8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; };
FFFD93995d207f8e93995d20 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; };
FFFD93995d887f8e93995d88 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; };
FFFD93995df07f8e93995df0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; };
FFFD93995e587f8e93995e58 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; };
FFFD93995ec07f8e93995ec0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; };
FFFD93995f287f8e93995f28 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD93995f907f8e93995f90 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; };
FFFD93995ff87f8e93995ff8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939960607f8e93996060 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939960c87f8e939960c8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939961307f8e93996130 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939961987f8e93996198 /* 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 */
FFF294146ae07f8e94146ae0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC94146ae07f8e94146ae0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF894146ae07f8e94146ae0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF93995b187f8e93995b18,
FFFF93995b807f8e93995b80,
FFFF93995be87f8e93995be8,
FFFF93995c507f8e93995c50,
FFFF93995cb87f8e93995cb8,
FFFF93995d207f8e93995d20,
FFFF93995d887f8e93995d88,
FFFF93995df07f8e93995df0,
FFFF93995e587f8e93995e58,
FFFF93995ec07f8e93995ec0,
FFFF93995f287f8e93995f28,
FFFF93995f907f8e93995f90,
FFFF93995ff87f8e93995ff8,
FFFF939960607f8e93996060,
FFFF939960c87f8e939960c8,
FFFF939961307f8e93996130,
FFFF939961987f8e93996198,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PxPvdSDK */
FFFF9502e9a87f8e9502e9a8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9502e9a87f8e9502e9a8 /* src/PxProfileEventImpl.cpp */; };
FFFF9502ea107f8e9502ea10 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9502ea107f8e9502ea10 /* src/PxPvd.cpp */; };
FFFF9502ea787f8e9502ea78 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9502ea787f8e9502ea78 /* src/PxPvdDataStream.cpp */; };
FFFF9502eae07f8e9502eae0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9502eae07f8e9502eae0 /* src/PxPvdDefaultFileTransport.cpp */; };
FFFF9502eb487f8e9502eb48 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9502eb487f8e9502eb48 /* src/PxPvdDefaultSocketTransport.cpp */; };
FFFF9502ebb07f8e9502ebb0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9502ebb07f8e9502ebb0 /* src/PxPvdImpl.cpp */; };
FFFF9502ec187f8e9502ec18 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9502ec187f8e9502ec18 /* src/PxPvdMemClient.cpp */; };
FFFF9502ec807f8e9502ec80 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9502ec807f8e9502ec80 /* src/PxPvdObjectModelMetaData.cpp */; };
FFFF9502ece87f8e9502ece8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9502ece87f8e9502ece8 /* src/PxPvdObjectRegistrar.cpp */; };
FFFF9502ed507f8e9502ed50 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9502ed507f8e9502ed50 /* src/PxPvdProfileZoneClient.cpp */; };
FFFF9502edb87f8e9502edb8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9502edb87f8e9502edb8 /* src/PxPvdUserRenderer.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD9440c6c07f8e9440c6c0 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD94408ce07f8e94408ce0 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; };
FFFD94408d487f8e94408d48 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; };
FFFD9502e6007f8e9502e600 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; };
FFFD9502e6687f8e9502e668 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; };
FFFD9502e6d07f8e9502e6d0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; };
FFFD9502e7387f8e9502e738 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; };
FFFD9502e7a07f8e9502e7a0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; };
FFFD9502e8087f8e9502e808 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; };
FFFD9502e8707f8e9502e870 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; };
FFFD9502e8d87f8e9502e8d8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFD9502e9407f8e9502e940 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; };
FFFD9502e9a87f8e9502e9a8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9502ea107f8e9502ea10 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9502ea787f8e9502ea78 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9502eae07f8e9502eae0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9502eb487f8e9502eb48 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9502ebb07f8e9502ebb0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9502ec187f8e9502ec18 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9502ec807f8e9502ec80 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9502ece87f8e9502ece8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9502ed507f8e9502ed50 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9502edb87f8e9502edb8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9502ee207f8e9502ee20 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; };
FFFD9502ee887f8e9502ee88 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; };
FFFD9502eef07f8e9502eef0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; };
FFFD9502ef587f8e9502ef58 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; };
FFFD9502efc07f8e9502efc0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFD9502f0287f8e9502f028 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; };
FFFD9502f0907f8e9502f090 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFD9502f0f87f8e9502f0f8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; };
FFFD9502f1607f8e9502f160 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; };
FFFD9502f1c87f8e9502f1c8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; };
FFFD9502f2307f8e9502f230 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; };
FFFD9502f2987f8e9502f298 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; };
FFFD9502f3007f8e9502f300 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; };
FFFD9502f3687f8e9502f368 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; };
FFFD9502f3d07f8e9502f3d0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; };
FFFD9502f4387f8e9502f438 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; };
FFFD9502f4a07f8e9502f4a0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; };
FFFD9502f5087f8e9502f508 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; };
FFFD9502f5707f8e9502f570 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; };
FFFD9502f5d87f8e9502f5d8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; };
FFFD9502f6407f8e9502f640 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; };
FFFD9502f6a87f8e9502f6a8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFD9502f7107f8e9502f710 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFD9502f7787f8e9502f778 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; };
FFFD9502f7e07f8e9502f7e0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; };
FFFD9502f8487f8e9502f848 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; };
FFFD9502f8b07f8e9502f8b0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; };
FFFD9502f9187f8e9502f918 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; };
FFFD9502f9807f8e9502f980 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; };
FFFD9502f9e87f8e9502f9e8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; };
FFFD9502fa507f8e9502fa50 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; };
FFFD9502fab87f8e9502fab8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; };
FFFD9502fb207f8e9502fb20 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; };
FFFD9502fb887f8e9502fb88 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; };
FFFD9502fbf07f8e9502fbf0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; };
FFFD9502fc587f8e9502fc58 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; };
FFFD9502fcc07f8e9502fcc0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; };
FFFD9502fd287f8e9502fd28 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; };
FFFD9502fd907f8e9502fd90 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; };
FFFD9502fdf87f8e9502fdf8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; };
FFFD9502fe607f8e9502fe60 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; };
FFFD9502fec87f8e9502fec8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; };
FFFD9502ff307f8e9502ff30 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; };
FFFD9502ff987f8e9502ff98 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; };
FFFD950300007f8e95030000 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; };
FFFD950300687f8e95030068 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; };
FFFD950300d07f8e950300d0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; };
FFFD950301387f8e95030138 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; };
FFFD950301a07f8e950301a0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; };
FFFD950302087f8e95030208 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; };
FFFD950302707f8e95030270 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; };
FFFD950302d87f8e950302d8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; };
FFFD950303407f8e95030340 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; };
FFFD950303a87f8e950303a8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; };
FFFD950304107f8e95030410 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; };
FFFD950304787f8e95030478 /* 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 */
FFF29440c6c07f8e9440c6c0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC9440c6c07f8e9440c6c0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF89440c6c07f8e9440c6c0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF9502e9a87f8e9502e9a8,
FFFF9502ea107f8e9502ea10,
FFFF9502ea787f8e9502ea78,
FFFF9502eae07f8e9502eae0,
FFFF9502eb487f8e9502eb48,
FFFF9502ebb07f8e9502ebb0,
FFFF9502ec187f8e9502ec18,
FFFF9502ec807f8e9502ec80,
FFFF9502ece87f8e9502ece8,
FFFF9502ed507f8e9502ed50,
FFFF9502edb87f8e9502edb8,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
FFF49440c3107f8e9440c310 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = FFFA94146ae07f8e94146ae0 /* PxFoundation */;
targetProxy = FFF594146ae07f8e94146ae0 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevel */
FFFF9462b9a07f8e9462b9a0 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFD9462b9a07f8e9462b9a0 /* px_globals.cpp */; };
FFFF946349a07f8e946349a0 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD946349a07f8e946349a0 /* PxsCCD.cpp */; };
FFFF94634a087f8e94634a08 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD94634a087f8e94634a08 /* PxsContactManager.cpp */; };
FFFF94634a707f8e94634a70 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD94634a707f8e94634a70 /* PxsContext.cpp */; };
FFFF94634ad87f8e94634ad8 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD94634ad87f8e94634ad8 /* PxsDefaultMemoryManager.cpp */; };
FFFF94634b407f8e94634b40 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD94634b407f8e94634b40 /* PxsIslandSim.cpp */; };
FFFF94634ba87f8e94634ba8 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD94634ba87f8e94634ba8 /* PxsMaterialCombiner.cpp */; };
FFFF94634c107f8e94634c10 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD94634c107f8e94634c10 /* PxsNphaseImplementationContext.cpp */; };
FFFF94634c787f8e94634c78 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD94634c787f8e94634c78 /* PxsSimpleIslandManager.cpp */; };
FFFF950356007f8e95035600 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD950356007f8e95035600 /* collision/PxcContact.cpp */; };
FFFF950356687f8e95035668 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD950356687f8e95035668 /* pipeline/PxcContactCache.cpp */; };
FFFF950356d07f8e950356d0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD950356d07f8e950356d0 /* pipeline/PxcContactMethodImpl.cpp */; };
FFFF950357387f8e95035738 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD950357387f8e95035738 /* pipeline/PxcMaterialHeightField.cpp */; };
FFFF950357a07f8e950357a0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD950357a07f8e950357a0 /* pipeline/PxcMaterialMesh.cpp */; };
FFFF950358087f8e95035808 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD950358087f8e95035808 /* pipeline/PxcMaterialMethodImpl.cpp */; };
FFFF950358707f8e95035870 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD950358707f8e95035870 /* pipeline/PxcMaterialShape.cpp */; };
FFFF950358d87f8e950358d8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD950358d87f8e950358d8 /* pipeline/PxcNpBatch.cpp */; };
FFFF950359407f8e95035940 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD950359407f8e95035940 /* pipeline/PxcNpCacheStreamPair.cpp */; };
FFFF950359a87f8e950359a8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD950359a87f8e950359a8 /* pipeline/PxcNpContactPrepShared.cpp */; };
FFFF95035a107f8e95035a10 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD95035a107f8e95035a10 /* pipeline/PxcNpMemBlockPool.cpp */; };
FFFF95035a787f8e95035a78 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD95035a787f8e95035a78 /* pipeline/PxcNpThreadContext.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD94626f907f8e94626f90 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD9462b9a07f8e9462b9a0 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; };
FFFD946233907f8e94623390 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; };
FFFD946233f87f8e946233f8 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; };
FFFD946234607f8e94623460 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; };
FFFD946234c87f8e946234c8 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; };
FFFD946235307f8e94623530 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; };
FFFD946235987f8e94623598 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; };
FFFD946236007f8e94623600 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; };
FFFD946236687f8e94623668 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; };
FFFD946236d07f8e946236d0 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; };
FFFD946349a07f8e946349a0 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94634a087f8e94634a08 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94634a707f8e94634a70 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94634ad87f8e94634ad8 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94634b407f8e94634b40 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94634ba87f8e94634ba8 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94634c107f8e94634c10 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94634c787f8e94634c78 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; };
FFFD9502c4007f8e9502c400 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; };
FFFD9502c4687f8e9502c468 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; };
FFFD9502c4d07f8e9502c4d0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; };
FFFD9502c5387f8e9502c538 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; };
FFFD9502c5a07f8e9502c5a0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; };
FFFD9502c6087f8e9502c608 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; };
FFFD9502c6707f8e9502c670 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; };
FFFD9502c6d87f8e9502c6d8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; };
FFFD9502c7407f8e9502c740 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; };
FFFD9502c7a87f8e9502c7a8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; };
FFFD9502c8107f8e9502c810 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; };
FFFD9502c8787f8e9502c878 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; };
FFFD9502c8e07f8e9502c8e0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; };
FFFD9502c9487f8e9502c948 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; };
FFFD9502c9b07f8e9502c9b0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; };
FFFD9502ca187f8e9502ca18 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; };
FFFD9502ca807f8e9502ca80 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; };
FFFD9502cae87f8e9502cae8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; };
FFFD9502cb507f8e9502cb50 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; };
FFFD9502cbb87f8e9502cbb8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; };
FFFD950356007f8e95035600 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; };
FFFD950356687f8e95035668 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; };
FFFD950356d07f8e950356d0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; };
FFFD950357387f8e95035738 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; };
FFFD950357a07f8e950357a0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFD950358087f8e95035808 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; };
FFFD950358707f8e95035870 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; };
FFFD950358d87f8e950358d8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; };
FFFD950359407f8e95035940 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; };
FFFD950359a87f8e950359a8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; };
FFFD95035a107f8e95035a10 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; };
FFFD95035a787f8e95035a78 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; };
FFFD95035e007f8e95035e00 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; };
FFFD95035e687f8e95035e68 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; };
FFFD95035ed07f8e95035ed0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; };
FFFD95035f387f8e95035f38 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; };
FFFD95035fa07f8e95035fa0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; };
FFFD950360087f8e95036008 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; };
FFFD950360707f8e95036070 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; };
FFFD950360d87f8e950360d8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; };
FFFD950361407f8e95036140 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; };
FFFD950361a87f8e950361a8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; };
FFFD950362107f8e95036210 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; };
FFFD950362787f8e95036278 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; };
FFFD950362e07f8e950362e0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; };
FFFD950363487f8e95036348 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; };
FFFD950363b07f8e950363b0 /* 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 */
FFF294626f907f8e94626f90 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC94626f907f8e94626f90 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF894626f907f8e94626f90 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF9462b9a07f8e9462b9a0,
FFFF946349a07f8e946349a0,
FFFF94634a087f8e94634a08,
FFFF94634a707f8e94634a70,
FFFF94634ad87f8e94634ad8,
FFFF94634b407f8e94634b40,
FFFF94634ba87f8e94634ba8,
FFFF94634c107f8e94634c10,
FFFF94634c787f8e94634c78,
FFFF950356007f8e95035600,
FFFF950356687f8e95035668,
FFFF950356d07f8e950356d0,
FFFF950357387f8e95035738,
FFFF950357a07f8e950357a0,
FFFF950358087f8e95035808,
FFFF950358707f8e95035870,
FFFF950358d87f8e950358d8,
FFFF950359407f8e95035940,
FFFF950359a87f8e950359a8,
FFFF95035a107f8e95035a10,
FFFF95035a787f8e95035a78,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevelAABB */
FFFF94818e707f8e94818e70 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD94818e707f8e94818e70 /* BpBroadPhase.cpp */; };
FFFF94818ed87f8e94818ed8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD94818ed87f8e94818ed8 /* BpBroadPhaseMBP.cpp */; };
FFFF94818f407f8e94818f40 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD94818f407f8e94818f40 /* BpBroadPhaseSap.cpp */; };
FFFF94818fa87f8e94818fa8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD94818fa87f8e94818fa8 /* BpBroadPhaseSapAux.cpp */; };
FFFF948190107f8e94819010 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948190107f8e94819010 /* BpMBPTasks.cpp */; };
FFFF948190787f8e94819078 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948190787f8e94819078 /* BpSAPTasks.cpp */; };
FFFF948190e07f8e948190e0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948190e07f8e948190e0 /* BpSimpleAABBManager.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD940ccda07f8e940ccda0 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD940bcf907f8e940bcf90 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; };
FFFD940bcff87f8e940bcff8 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; };
FFFD940bd0607f8e940bd060 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; };
FFFD940bd0c87f8e940bd0c8 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; };
FFFD94818c007f8e94818c00 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; };
FFFD94818c687f8e94818c68 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; };
FFFD94818cd07f8e94818cd0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; };
FFFD94818d387f8e94818d38 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; };
FFFD94818da07f8e94818da0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; };
FFFD94818e087f8e94818e08 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; };
FFFD94818e707f8e94818e70 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94818ed87f8e94818ed8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94818f407f8e94818f40 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94818fa87f8e94818fa8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948190107f8e94819010 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948190787f8e94819078 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948190e07f8e948190e0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
FFF2940ccda07f8e940ccda0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC940ccda07f8e940ccda0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF8940ccda07f8e940ccda0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF94818e707f8e94818e70,
FFFF94818ed87f8e94818ed8,
FFFF94818f407f8e94818f40,
FFFF94818fa87f8e94818fa8,
FFFF948190107f8e94819010,
FFFF948190787f8e94819078,
FFFF948190e07f8e948190e0,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevelDynamics */
FFFF939b22007f8e939b2200 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD939b22007f8e939b2200 /* DyArticulation.cpp */; };
FFFF939b22687f8e939b2268 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD939b22687f8e939b2268 /* DyArticulationContactPrep.cpp */; };
FFFF939b22d07f8e939b22d0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD939b22d07f8e939b22d0 /* DyArticulationContactPrepPF.cpp */; };
FFFF939b23387f8e939b2338 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD939b23387f8e939b2338 /* DyArticulationHelper.cpp */; };
FFFF939b23a07f8e939b23a0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD939b23a07f8e939b23a0 /* DyArticulationSIMD.cpp */; };
FFFF939b24087f8e939b2408 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD939b24087f8e939b2408 /* DyArticulationScalar.cpp */; };
FFFF939b24707f8e939b2470 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD939b24707f8e939b2470 /* DyConstraintPartition.cpp */; };
FFFF939b24d87f8e939b24d8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD939b24d87f8e939b24d8 /* DyConstraintSetup.cpp */; };
FFFF939b25407f8e939b2540 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD939b25407f8e939b2540 /* DyConstraintSetupBlock.cpp */; };
FFFF939b25a87f8e939b25a8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD939b25a87f8e939b25a8 /* DyContactPrep.cpp */; };
FFFF939b26107f8e939b2610 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD939b26107f8e939b2610 /* DyContactPrep4.cpp */; };
FFFF939b26787f8e939b2678 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD939b26787f8e939b2678 /* DyContactPrep4PF.cpp */; };
FFFF939b26e07f8e939b26e0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD939b26e07f8e939b26e0 /* DyContactPrepPF.cpp */; };
FFFF939b27487f8e939b2748 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD939b27487f8e939b2748 /* DyDynamics.cpp */; };
FFFF939b27b07f8e939b27b0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD939b27b07f8e939b27b0 /* DyFrictionCorrelation.cpp */; };
FFFF939b28187f8e939b2818 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD939b28187f8e939b2818 /* DyRigidBodyToSolverBody.cpp */; };
FFFF939b28807f8e939b2880 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD939b28807f8e939b2880 /* DySolverConstraints.cpp */; };
FFFF939b28e87f8e939b28e8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD939b28e87f8e939b28e8 /* DySolverConstraintsBlock.cpp */; };
FFFF939b29507f8e939b2950 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD939b29507f8e939b2950 /* DySolverControl.cpp */; };
FFFF939b29b87f8e939b29b8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD939b29b87f8e939b29b8 /* DySolverControlPF.cpp */; };
FFFF939b2a207f8e939b2a20 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD939b2a207f8e939b2a20 /* DySolverPFConstraints.cpp */; };
FFFF939b2a887f8e939b2a88 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD939b2a887f8e939b2a88 /* DySolverPFConstraintsBlock.cpp */; };
FFFF939b2af07f8e939b2af0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD939b2af07f8e939b2af0 /* DyThreadContext.cpp */; };
FFFF939b2b587f8e939b2b58 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD939b2b587f8e939b2b58 /* DyThresholdTable.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD941450a07f8e941450a0 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD939b22007f8e939b2200 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939b22687f8e939b2268 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939b22d07f8e939b22d0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939b23387f8e939b2338 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939b23a07f8e939b23a0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939b24087f8e939b2408 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939b24707f8e939b2470 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939b24d87f8e939b24d8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939b25407f8e939b2540 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939b25a87f8e939b25a8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939b26107f8e939b2610 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939b26787f8e939b2678 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939b26e07f8e939b26e0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939b27487f8e939b2748 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939b27b07f8e939b27b0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939b28187f8e939b2818 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939b28807f8e939b2880 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939b28e87f8e939b28e8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939b29507f8e939b2950 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939b29b87f8e939b29b8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939b2a207f8e939b2a20 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939b2a887f8e939b2a88 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939b2af07f8e939b2af0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939b2b587f8e939b2b58 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94136a207f8e94136a20 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; };
FFFD94136a887f8e94136a88 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; };
FFFD94136af07f8e94136af0 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; };
FFFD94136b587f8e94136b58 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; };
FFFD94136bc07f8e94136bc0 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; };
FFFD94136c287f8e94136c28 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; };
FFFD939b34007f8e939b3400 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; };
FFFD939b34687f8e939b3468 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; };
FFFD939b34d07f8e939b34d0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; };
FFFD939b35387f8e939b3538 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; };
FFFD939b35a07f8e939b35a0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; };
FFFD939b36087f8e939b3608 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; };
FFFD939b36707f8e939b3670 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; };
FFFD939b36d87f8e939b36d8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; };
FFFD939b37407f8e939b3740 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; };
FFFD939b37a87f8e939b37a8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; };
FFFD939b38107f8e939b3810 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; };
FFFD939b38787f8e939b3878 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; };
FFFD939b38e07f8e939b38e0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; };
FFFD939b39487f8e939b3948 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; };
FFFD939b39b07f8e939b39b0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; };
FFFD939b3a187f8e939b3a18 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; };
FFFD939b3a807f8e939b3a80 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; };
FFFD939b3ae87f8e939b3ae8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; };
FFFD939b3b507f8e939b3b50 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; };
FFFD939b3bb87f8e939b3bb8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; };
FFFD939b3c207f8e939b3c20 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; };
FFFD939b3c887f8e939b3c88 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; };
FFFD939b3cf07f8e939b3cf0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; };
FFFD939b3d587f8e939b3d58 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; };
FFFD939b3dc07f8e939b3dc0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; };
FFFD939b3e287f8e939b3e28 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; };
FFFD939b3e907f8e939b3e90 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; };
FFFD939b3ef87f8e939b3ef8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; };
FFFD939b3f607f8e939b3f60 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; };
FFFD939b3fc87f8e939b3fc8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; };
FFFD939b40307f8e939b4030 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; };
FFFD939b40987f8e939b4098 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; };
FFFD939b41007f8e939b4100 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; };
FFFD939b41687f8e939b4168 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; };
FFFD939b41d07f8e939b41d0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; };
FFFD939b42387f8e939b4238 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; };
FFFD939b42a07f8e939b42a0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
FFF2941450a07f8e941450a0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC941450a07f8e941450a0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF8941450a07f8e941450a0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF939b22007f8e939b2200,
FFFF939b22687f8e939b2268,
FFFF939b22d07f8e939b22d0,
FFFF939b23387f8e939b2338,
FFFF939b23a07f8e939b23a0,
FFFF939b24087f8e939b2408,
FFFF939b24707f8e939b2470,
FFFF939b24d87f8e939b24d8,
FFFF939b25407f8e939b2540,
FFFF939b25a87f8e939b25a8,
FFFF939b26107f8e939b2610,
FFFF939b26787f8e939b2678,
FFFF939b26e07f8e939b26e0,
FFFF939b27487f8e939b2748,
FFFF939b27b07f8e939b27b0,
FFFF939b28187f8e939b2818,
FFFF939b28807f8e939b2880,
FFFF939b28e87f8e939b28e8,
FFFF939b29507f8e939b2950,
FFFF939b29b87f8e939b29b8,
FFFF939b2a207f8e939b2a20,
FFFF939b2a887f8e939b2a88,
FFFF939b2af07f8e939b2af0,
FFFF939b2b587f8e939b2b58,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevelCloth */
FFFF939be6907f8e939be690 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD939be6907f8e939be690 /* Allocator.cpp */; };
FFFF939be6f87f8e939be6f8 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD939be6f87f8e939be6f8 /* Factory.cpp */; };
FFFF939be7607f8e939be760 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD939be7607f8e939be760 /* PhaseConfig.cpp */; };
FFFF939be7c87f8e939be7c8 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD939be7c87f8e939be7c8 /* SwCloth.cpp */; };
FFFF939be8307f8e939be830 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD939be8307f8e939be830 /* SwClothData.cpp */; };
FFFF939be8987f8e939be898 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD939be8987f8e939be898 /* SwCollision.cpp */; };
FFFF939be9007f8e939be900 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD939be9007f8e939be900 /* SwFabric.cpp */; };
FFFF939be9687f8e939be968 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD939be9687f8e939be968 /* SwFactory.cpp */; };
FFFF939be9d07f8e939be9d0 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD939be9d07f8e939be9d0 /* SwInterCollision.cpp */; };
FFFF939bea387f8e939bea38 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD939bea387f8e939bea38 /* SwSelfCollision.cpp */; };
FFFF939beaa07f8e939beaa0 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD939beaa07f8e939beaa0 /* SwSolver.cpp */; };
FFFF939beb087f8e939beb08 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD939beb087f8e939beb08 /* SwSolverKernel.cpp */; };
FFFF939beb707f8e939beb70 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD939beb707f8e939beb70 /* TripletScheduler.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD941173807f8e94117380 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD941203707f8e94120370 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; };
FFFD941203d87f8e941203d8 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; };
FFFD941204407f8e94120440 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; };
FFFD941204a87f8e941204a8 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; };
FFFD941205107f8e94120510 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; };
FFFD941205787f8e94120578 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; };
FFFD941205e07f8e941205e0 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; };
FFFD939bdc007f8e939bdc00 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; };
FFFD939bdc687f8e939bdc68 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; };
FFFD939bdcd07f8e939bdcd0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; };
FFFD939bdd387f8e939bdd38 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; };
FFFD939bdda07f8e939bdda0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; };
FFFD939bde087f8e939bde08 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; };
FFFD939bde707f8e939bde70 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; };
FFFD939bded87f8e939bded8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; };
FFFD939bdf407f8e939bdf40 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; };
FFFD939bdfa87f8e939bdfa8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; };
FFFD939be0107f8e939be010 /* Simd4f.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4f.h"; path = "../../LowLevelCloth/src/Simd4f.h"; sourceTree = SOURCE_ROOT; };
FFFD939be0787f8e939be078 /* Simd4i.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4i.h"; path = "../../LowLevelCloth/src/Simd4i.h"; sourceTree = SOURCE_ROOT; };
FFFD939be0e07f8e939be0e0 /* SimdTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SimdTypes.h"; path = "../../LowLevelCloth/src/SimdTypes.h"; sourceTree = SOURCE_ROOT; };
FFFD939be1487f8e939be148 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; };
FFFD939be1b07f8e939be1b0 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; };
FFFD939be2187f8e939be218 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; };
FFFD939be2807f8e939be280 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; };
FFFD939be2e87f8e939be2e8 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; };
FFFD939be3507f8e939be350 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; };
FFFD939be3b87f8e939be3b8 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; };
FFFD939be4207f8e939be420 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; };
FFFD939be4887f8e939be488 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; };
FFFD939be4f07f8e939be4f0 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; };
FFFD939be5587f8e939be558 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; };
FFFD939be5c07f8e939be5c0 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; };
FFFD939be6287f8e939be628 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; };
FFFD939be6907f8e939be690 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939be6f87f8e939be6f8 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939be7607f8e939be760 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939be7c87f8e939be7c8 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939be8307f8e939be830 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939be8987f8e939be898 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939be9007f8e939be900 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939be9687f8e939be968 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939be9d07f8e939be9d0 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939bea387f8e939bea38 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939beaa07f8e939beaa0 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939beb087f8e939beb08 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; };
FFFD939beb707f8e939beb70 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
FFF2941173807f8e94117380 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC941173807f8e94117380 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF8941173807f8e94117380 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF939be6907f8e939be690,
FFFF939be6f87f8e939be6f8,
FFFF939be7607f8e939be760,
FFFF939be7c87f8e939be7c8,
FFFF939be8307f8e939be830,
FFFF939be8987f8e939be898,
FFFF939be9007f8e939be900,
FFFF939be9687f8e939be968,
FFFF939be9d07f8e939be9d0,
FFFF939bea387f8e939bea38,
FFFF939beaa07f8e939beaa0,
FFFF939beb087f8e939beb08,
FFFF939beb707f8e939beb70,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevelParticles */
FFFF948225587f8e94822558 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948225587f8e94822558 /* PtBatcher.cpp */; };
FFFF948225c07f8e948225c0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948225c07f8e948225c0 /* PtBodyTransformVault.cpp */; };
FFFF948226287f8e94822628 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948226287f8e94822628 /* PtCollision.cpp */; };
FFFF948226907f8e94822690 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948226907f8e94822690 /* PtCollisionBox.cpp */; };
FFFF948226f87f8e948226f8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948226f87f8e948226f8 /* PtCollisionCapsule.cpp */; };
FFFF948227607f8e94822760 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948227607f8e94822760 /* PtCollisionConvex.cpp */; };
FFFF948227c87f8e948227c8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948227c87f8e948227c8 /* PtCollisionMesh.cpp */; };
FFFF948228307f8e94822830 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948228307f8e94822830 /* PtCollisionPlane.cpp */; };
FFFF948228987f8e94822898 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948228987f8e94822898 /* PtCollisionSphere.cpp */; };
FFFF948229007f8e94822900 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948229007f8e94822900 /* PtContextCpu.cpp */; };
FFFF948229687f8e94822968 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948229687f8e94822968 /* PtDynamics.cpp */; };
FFFF948229d07f8e948229d0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD948229d07f8e948229d0 /* PtParticleData.cpp */; };
FFFF94822a387f8e94822a38 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD94822a387f8e94822a38 /* PtParticleShapeCpu.cpp */; };
FFFF94822aa07f8e94822aa0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD94822aa07f8e94822aa0 /* PtParticleSystemSimCpu.cpp */; };
FFFF94822b087f8e94822b08 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD94822b087f8e94822b08 /* PtSpatialHash.cpp */; };
FFFF94822b707f8e94822b70 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD94822b707f8e94822b70 /* PtSpatialLocalHash.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD940bb1407f8e940bb140 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD94810a007f8e94810a00 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; };
FFFD94810a687f8e94810a68 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; };
FFFD94810ad07f8e94810ad0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; };
FFFD94810b387f8e94810b38 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; };
FFFD94810ba07f8e94810ba0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; };
FFFD94810c087f8e94810c08 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; };
FFFD94810c707f8e94810c70 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; };
FFFD94810cd87f8e94810cd8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; };
FFFD94810d407f8e94810d40 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; };
FFFD94810da87f8e94810da8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; };
FFFD94821c007f8e94821c00 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; };
FFFD94821c687f8e94821c68 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; };
FFFD94821cd07f8e94821cd0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; };
FFFD94821d387f8e94821d38 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; };
FFFD94821da07f8e94821da0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; };
FFFD94821e087f8e94821e08 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; };
FFFD94821e707f8e94821e70 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; };
FFFD94821ed87f8e94821ed8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; };
FFFD94821f407f8e94821f40 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; };
FFFD94821fa87f8e94821fa8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; };
FFFD948220107f8e94822010 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; };
FFFD948220787f8e94822078 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; };
FFFD948220e07f8e948220e0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; };
FFFD948221487f8e94822148 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; };
FFFD948221b07f8e948221b0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; };
FFFD948222187f8e94822218 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; };
FFFD948222807f8e94822280 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; };
FFFD948222e87f8e948222e8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; };
FFFD948223507f8e94822350 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; };
FFFD948223b87f8e948223b8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; };
FFFD948224207f8e94822420 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; };
FFFD948224887f8e94822488 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; };
FFFD948224f07f8e948224f0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; };
FFFD948225587f8e94822558 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948225c07f8e948225c0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948226287f8e94822628 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948226907f8e94822690 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948226f87f8e948226f8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948227607f8e94822760 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948227c87f8e948227c8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948228307f8e94822830 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948228987f8e94822898 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948229007f8e94822900 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948229687f8e94822968 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; };
FFFD948229d07f8e948229d0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94822a387f8e94822a38 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94822aa07f8e94822aa0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94822b087f8e94822b08 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; };
FFFD94822b707f8e94822b70 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
FFF2940bb1407f8e940bb140 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC940bb1407f8e940bb140 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF8940bb1407f8e940bb140 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF948225587f8e94822558,
FFFF948225c07f8e948225c0,
FFFF948226287f8e94822628,
FFFF948226907f8e94822690,
FFFF948226f87f8e948226f8,
FFFF948227607f8e94822760,
FFFF948227c87f8e948227c8,
FFFF948228307f8e94822830,
FFFF948228987f8e94822898,
FFFF948229007f8e94822900,
FFFF948229687f8e94822968,
FFFF948229d07f8e948229d0,
FFFF94822a387f8e94822a38,
FFFF94822aa07f8e94822aa0,
FFFF94822b087f8e94822b08,
FFFF94822b707f8e94822b70,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PxTask */
FFFF940827607f8e94082760 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD940827607f8e94082760 /* src/TaskManager.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD940815207f8e94081520 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD9407fb607f8e9407fb60 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
FFFD9407fbc87f8e9407fbc8 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
FFFD9407fc307f8e9407fc30 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; };
FFFD9407fc987f8e9407fc98 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; };
FFFD9407fd007f8e9407fd00 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; };
FFFD9407fd687f8e9407fd68 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; };
FFFD940827607f8e94082760 /* 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 */
FFF2940815207f8e94081520 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC940815207f8e94081520 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF8940815207f8e94081520 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF940827607f8e94082760,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PsFastXml */
FFFF95cf1d807f8e95cf1d80 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD95cf1d807f8e95cf1d80 /* PsFastXml.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
FFFD95d0cbc07f8e95d0cbc0 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; };
FFFD95cf1c807f8e95cf1c80 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; };
FFFD95cf1d807f8e95cf1d80 /* 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 */
FFF295d0cbc07f8e95d0cbc0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
FFFC95d0cbc07f8e95d0cbc0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FFF895d0cbc07f8e95d0cbc0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFFF95cf1d807f8e95cf1d80,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
/* End PBXTargetDependency section */
/* Begin PBXContainerItemProxy section */
FFF595cf0bc07f8e95cf0bc0 /* PBXContainerItemProxy */ = {
containerPortal = FFF99347d0007f8e9347d000 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA95cf0bc07f8e95cf0bc0 /* PhysX */;
remoteInfo = "PhysX";
};
FFF595d1f3407f8e95d1f340 /* PBXContainerItemProxy */ = {
containerPortal = FFF99347d0007f8e9347d000 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA95d1f3407f8e95d1f340 /* PhysXCharacterKinematic */;
remoteInfo = "PhysXCharacterKinematic";
};
FFF595d207307f8e95d20730 /* PBXContainerItemProxy */ = {
containerPortal = FFF99347d0007f8e9347d000 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA95d207307f8e95d20730 /* PhysXVehicle */;
remoteInfo = "PhysXVehicle";
};
FFF595d305e07f8e95d305e0 /* PBXContainerItemProxy */ = {
containerPortal = FFF99347d0007f8e9347d000 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA95d305e07f8e95d305e0 /* PhysXExtensions */;
remoteInfo = "PhysXExtensions";
};
FFF595d430907f8e95d43090 /* PBXContainerItemProxy */ = {
containerPortal = FFF99347d0007f8e9347d000 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA95d430907f8e95d43090 /* SceneQuery */;
remoteInfo = "SceneQuery";
};
FFF595d477007f8e95d47700 /* PBXContainerItemProxy */ = {
containerPortal = FFF99347d0007f8e9347d000 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA95d477007f8e95d47700 /* SimulationController */;
remoteInfo = "SimulationController";
};
FFF595ad90707f8e95ad9070 /* PBXContainerItemProxy */ = {
containerPortal = FFF99347d0007f8e9347d000 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA95ad90707f8e95ad9070 /* PhysXCooking */;
remoteInfo = "PhysXCooking";
};
FFF59415a1507f8e9415a150 /* PBXContainerItemProxy */ = {
containerPortal = FFF99347d0007f8e9347d000 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA9415a1507f8e9415a150 /* PhysXCommon */;
remoteInfo = "PhysXCommon";
};
FFF594146ae07f8e94146ae0 /* PBXContainerItemProxy */ = {
containerPortal = FFF99347d0007f8e9347d000 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA94146ae07f8e94146ae0 /* PxFoundation */;
remoteInfo = "PxFoundation";
};
FFF59440c6c07f8e9440c6c0 /* PBXContainerItemProxy */ = {
containerPortal = FFF99347d0007f8e9347d000 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA9440c6c07f8e9440c6c0 /* PxPvdSDK */;
remoteInfo = "PxPvdSDK";
};
FFF594626f907f8e94626f90 /* PBXContainerItemProxy */ = {
containerPortal = FFF99347d0007f8e9347d000 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA94626f907f8e94626f90 /* LowLevel */;
remoteInfo = "LowLevel";
};
FFF5940ccda07f8e940ccda0 /* PBXContainerItemProxy */ = {
containerPortal = FFF99347d0007f8e9347d000 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA940ccda07f8e940ccda0 /* LowLevelAABB */;
remoteInfo = "LowLevelAABB";
};
FFF5941450a07f8e941450a0 /* PBXContainerItemProxy */ = {
containerPortal = FFF99347d0007f8e9347d000 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA941450a07f8e941450a0 /* LowLevelDynamics */;
remoteInfo = "LowLevelDynamics";
};
FFF5941173807f8e94117380 /* PBXContainerItemProxy */ = {
containerPortal = FFF99347d0007f8e9347d000 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA941173807f8e94117380 /* LowLevelCloth */;
remoteInfo = "LowLevelCloth";
};
FFF5940bb1407f8e940bb140 /* PBXContainerItemProxy */ = {
containerPortal = FFF99347d0007f8e9347d000 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA940bb1407f8e940bb140 /* LowLevelParticles */;
remoteInfo = "LowLevelParticles";
};
FFF5940815207f8e94081520 /* PBXContainerItemProxy */ = {
containerPortal = FFF99347d0007f8e9347d000 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA940815207f8e94081520 /* PxTask */;
remoteInfo = "PxTask";
};
FFF595d0cbc07f8e95d0cbc0 /* PBXContainerItemProxy */ = {
containerPortal = FFF99347d0007f8e9347d000 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
remoteGlobalIDString = FFFA95d0cbc07f8e95d0cbc0 /* PsFastXml */;
remoteInfo = "PsFastXml";
};
/* End PBXContainerItemProxy section */
/* Begin PBXGroup section */
FFFB9347d0687f8e9347d068 /* PhysX */ = {
isa = PBXGroup;
children = (
FFF09347d0007f8e9347d000 /* Source */,
FFEE9347d0007f8e9347d000 /* Products */,
);
name = "PhysX";
sourceTree = "<group>";
};
FFF09347d0007f8e9347d000 /* Source */ = {
isa = PBXGroup;
children = (
FFFB95cf0bc07f8e95cf0bc0,
FFFB95d1f3407f8e95d1f340,
FFFB95d207307f8e95d20730,
FFFB95d305e07f8e95d305e0,
FFFB95d430907f8e95d43090,
FFFB95d477007f8e95d47700,
FFFB95ad90707f8e95ad9070,
FFFB9415a1507f8e9415a150,
FFFB94146ae07f8e94146ae0,
FFFB9440c6c07f8e9440c6c0,
FFFB94626f907f8e94626f90,
FFFB940ccda07f8e940ccda0,
FFFB941450a07f8e941450a0,
FFFB941173807f8e94117380,
FFFB940bb1407f8e940bb140,
FFFB940815207f8e94081520,
FFFB95d0cbc07f8e95d0cbc0,
);
name = Source;
sourceTree = "<group>";
};
FFEE9347d0007f8e9347d000 /* Products */ = {
isa = PBXGroup;
children = (
FFFD95cf0bc07f8e95cf0bc0,
FFFD95d1f3407f8e95d1f340,
FFFD95d207307f8e95d20730,
FFFD95d305e07f8e95d305e0,
FFFD95d430907f8e95d43090,
FFFD95d477007f8e95d47700,
FFFD95ad90707f8e95ad9070,
FFFD9415a1507f8e9415a150,
FFFD94146ae07f8e94146ae0,
FFFD9440c6c07f8e9440c6c0,
FFFD94626f907f8e94626f90,
FFFD940ccda07f8e940ccda0,
FFFD941450a07f8e941450a0,
FFFD941173807f8e94117380,
FFFD940bb1407f8e940bb140,
FFFD940815207f8e94081520,
FFFD95d0cbc07f8e95d0cbc0,
);
name = Products;
sourceTree = "<group>";
};
FFFB95cf0bc07f8e95cf0bc0 /* PhysX */ = {
isa = PBXGroup;
children = (
FFFB95d26ff07f8e95d26ff0 /* src */,
FFFB95d270187f8e95d27018 /* include */,
FFFB95d270407f8e95d27040 /* metadata */,
);
name = "PhysX";
sourceTree = "<group>";
};
FFFB95d26ff07f8e95d26ff0 /* src */ = {
isa = PBXGroup;
children = (
FFFD9603aa007f8e9603aa00 /* NpActor.h */,
FFFD9603aa687f8e9603aa68 /* NpActorTemplate.h */,
FFFD9603aad07f8e9603aad0 /* NpAggregate.h */,
FFFD9603ab387f8e9603ab38 /* NpArticulation.h */,
FFFD9603aba07f8e9603aba0 /* NpArticulationJoint.h */,
FFFD9603ac087f8e9603ac08 /* NpArticulationLink.h */,
FFFD9603ac707f8e9603ac70 /* NpBatchQuery.h */,
FFFD9603acd87f8e9603acd8 /* NpCast.h */,
FFFD9603ad407f8e9603ad40 /* NpConnector.h */,
FFFD9603ada87f8e9603ada8 /* NpConstraint.h */,
FFFD9603ae107f8e9603ae10 /* NpFactory.h */,
FFFD9603ae787f8e9603ae78 /* NpMaterial.h */,
FFFD9603aee07f8e9603aee0 /* NpMaterialManager.h */,
FFFD9603af487f8e9603af48 /* NpPhysics.h */,
FFFD9603afb07f8e9603afb0 /* NpPhysicsInsertionCallback.h */,
FFFD9603b0187f8e9603b018 /* NpPtrTableStorageManager.h */,
FFFD9603b0807f8e9603b080 /* NpPvdSceneQueryCollector.h */,
FFFD9603b0e87f8e9603b0e8 /* NpQueryShared.h */,
FFFD9603b1507f8e9603b150 /* NpReadCheck.h */,
FFFD9603b1b87f8e9603b1b8 /* NpRigidActorTemplate.h */,
FFFD9603b2207f8e9603b220 /* NpRigidActorTemplateInternal.h */,
FFFD9603b2887f8e9603b288 /* NpRigidBodyTemplate.h */,
FFFD9603b2f07f8e9603b2f0 /* NpRigidDynamic.h */,
FFFD9603b3587f8e9603b358 /* NpRigidStatic.h */,
FFFD9603b3c07f8e9603b3c0 /* NpScene.h */,
FFFD9603b4287f8e9603b428 /* NpSceneQueries.h */,
FFFD9603b4907f8e9603b490 /* NpShape.h */,
FFFD9603b4f87f8e9603b4f8 /* NpShapeManager.h */,
FFFD9603b5607f8e9603b560 /* NpSpatialIndex.h */,
FFFD9603b5c87f8e9603b5c8 /* NpVolumeCache.h */,
FFFD9603b6307f8e9603b630 /* NpWriteCheck.h */,
FFFD9603b6987f8e9603b698 /* PvdMetaDataBindingData.h */,
FFFD9603b7007f8e9603b700 /* PvdMetaDataPvdBinding.h */,
FFFD9603b7687f8e9603b768 /* PvdPhysicsClient.h */,
FFFD9603b7d07f8e9603b7d0 /* PvdTypeNames.h */,
FFFD9603b8387f8e9603b838 /* NpActor.cpp */,
FFFD9603b8a07f8e9603b8a0 /* NpAggregate.cpp */,
FFFD9603b9087f8e9603b908 /* NpArticulation.cpp */,
FFFD9603b9707f8e9603b970 /* NpArticulationJoint.cpp */,
FFFD9603b9d87f8e9603b9d8 /* NpArticulationLink.cpp */,
FFFD9603ba407f8e9603ba40 /* NpBatchQuery.cpp */,
FFFD9603baa87f8e9603baa8 /* NpConstraint.cpp */,
FFFD9603bb107f8e9603bb10 /* NpFactory.cpp */,
FFFD9603bb787f8e9603bb78 /* NpMaterial.cpp */,
FFFD9603bbe07f8e9603bbe0 /* NpMetaData.cpp */,
FFFD9603bc487f8e9603bc48 /* NpPhysics.cpp */,
FFFD9603bcb07f8e9603bcb0 /* NpPvdSceneQueryCollector.cpp */,
FFFD9603bd187f8e9603bd18 /* NpReadCheck.cpp */,
FFFD9603bd807f8e9603bd80 /* NpRigidDynamic.cpp */,
FFFD9603bde87f8e9603bde8 /* NpRigidStatic.cpp */,
FFFD9603be507f8e9603be50 /* NpScene.cpp */,
FFFD9603beb87f8e9603beb8 /* NpSceneQueries.cpp */,
FFFD9603bf207f8e9603bf20 /* NpSerializerAdapter.cpp */,
FFFD9603bf887f8e9603bf88 /* NpShape.cpp */,
FFFD9603bff07f8e9603bff0 /* NpShapeManager.cpp */,
FFFD9603c0587f8e9603c058 /* NpSpatialIndex.cpp */,
FFFD9603c0c07f8e9603c0c0 /* NpVolumeCache.cpp */,
FFFD9603c1287f8e9603c128 /* NpWriteCheck.cpp */,
FFFD9603c1907f8e9603c190 /* PvdMetaDataPvdBinding.cpp */,
FFFD9603c1f87f8e9603c1f8 /* PvdPhysicsClient.cpp */,
FFFD9603c2607f8e9603c260 /* particles/NpParticleBaseTemplate.h */,
FFFD9603c2c87f8e9603c2c8 /* particles/NpParticleFluid.h */,
FFFD9603c3307f8e9603c330 /* particles/NpParticleFluidReadData.h */,
FFFD9603c3987f8e9603c398 /* particles/NpParticleSystem.h */,
FFFD9603c4007f8e9603c400 /* particles/NpParticleFluid.cpp */,
FFFD9603c4687f8e9603c468 /* particles/NpParticleSystem.cpp */,
FFFD9603c4d07f8e9603c4d0 /* buffering/ScbActor.h */,
FFFD9603c5387f8e9603c538 /* buffering/ScbAggregate.h */,
FFFD9603c5a07f8e9603c5a0 /* buffering/ScbArticulation.h */,
FFFD9603c6087f8e9603c608 /* buffering/ScbArticulationJoint.h */,
FFFD9603c6707f8e9603c670 /* buffering/ScbBase.h */,
FFFD9603c6d87f8e9603c6d8 /* buffering/ScbBody.h */,
FFFD9603c7407f8e9603c740 /* buffering/ScbCloth.h */,
FFFD9603c7a87f8e9603c7a8 /* buffering/ScbConstraint.h */,
FFFD9603c8107f8e9603c810 /* buffering/ScbDefs.h */,
FFFD9603c8787f8e9603c878 /* buffering/ScbNpDeps.h */,
FFFD9603c8e07f8e9603c8e0 /* buffering/ScbParticleSystem.h */,
FFFD9603c9487f8e9603c948 /* buffering/ScbRigidObject.h */,
FFFD9603c9b07f8e9603c9b0 /* buffering/ScbRigidStatic.h */,
FFFD9603ca187f8e9603ca18 /* buffering/ScbScene.h */,
FFFD9603ca807f8e9603ca80 /* buffering/ScbSceneBuffer.h */,
FFFD9603cae87f8e9603cae8 /* buffering/ScbScenePvdClient.h */,
FFFD9603cb507f8e9603cb50 /* buffering/ScbShape.h */,
FFFD9603cbb87f8e9603cbb8 /* buffering/ScbType.h */,
FFFD9603cc207f8e9603cc20 /* buffering/ScbActor.cpp */,
FFFD9603cc887f8e9603cc88 /* buffering/ScbAggregate.cpp */,
FFFD9603ccf07f8e9603ccf0 /* buffering/ScbBase.cpp */,
FFFD9603cd587f8e9603cd58 /* buffering/ScbCloth.cpp */,
FFFD9603cdc07f8e9603cdc0 /* buffering/ScbMetaData.cpp */,
FFFD9603ce287f8e9603ce28 /* buffering/ScbParticleSystem.cpp */,
FFFD9603ce907f8e9603ce90 /* buffering/ScbScene.cpp */,
FFFD9603cef87f8e9603cef8 /* buffering/ScbScenePvdClient.cpp */,
FFFD9603cf607f8e9603cf60 /* buffering/ScbShape.cpp */,
FFFD9603cfc87f8e9603cfc8 /* cloth/NpCloth.h */,
FFFD9603d0307f8e9603d030 /* cloth/NpClothFabric.h */,
FFFD9603d0987f8e9603d098 /* cloth/NpClothParticleData.h */,
FFFD9603d1007f8e9603d100 /* cloth/NpCloth.cpp */,
FFFD9603d1687f8e9603d168 /* cloth/NpClothFabric.cpp */,
FFFD9603d1d07f8e9603d1d0 /* cloth/NpClothParticleData.cpp */,
FFFD9603d2387f8e9603d238 /* ../../ImmediateMode/src/NpImmediateMode.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFB95d270187f8e95d27018 /* include */ = {
isa = PBXGroup;
children = (
FFFD960300007f8e96030000 /* PxActor.h */,
FFFD960300687f8e96030068 /* PxAggregate.h */,
FFFD960300d07f8e960300d0 /* PxArticulation.h */,
FFFD960301387f8e96030138 /* PxArticulationJoint.h */,
FFFD960301a07f8e960301a0 /* PxArticulationLink.h */,
FFFD960302087f8e96030208 /* PxBatchQuery.h */,
FFFD960302707f8e96030270 /* PxBatchQueryDesc.h */,
FFFD960302d87f8e960302d8 /* PxBroadPhase.h */,
FFFD960303407f8e96030340 /* PxClient.h */,
FFFD960303a87f8e960303a8 /* PxConstraint.h */,
FFFD960304107f8e96030410 /* PxConstraintDesc.h */,
FFFD960304787f8e96030478 /* PxContact.h */,
FFFD960304e07f8e960304e0 /* PxContactModifyCallback.h */,
FFFD960305487f8e96030548 /* PxDeletionListener.h */,
FFFD960305b07f8e960305b0 /* PxFiltering.h */,
FFFD960306187f8e96030618 /* PxForceMode.h */,
FFFD960306807f8e96030680 /* PxImmediateMode.h */,
FFFD960306e87f8e960306e8 /* PxLockedData.h */,
FFFD960307507f8e96030750 /* PxMaterial.h */,
FFFD960307b87f8e960307b8 /* PxPhysXConfig.h */,
FFFD960308207f8e96030820 /* PxPhysics.h */,
FFFD960308887f8e96030888 /* PxPhysicsAPI.h */,
FFFD960308f07f8e960308f0 /* PxPhysicsSerialization.h */,
FFFD960309587f8e96030958 /* PxPhysicsVersion.h */,
FFFD960309c07f8e960309c0 /* PxPruningStructure.h */,
FFFD96030a287f8e96030a28 /* PxQueryFiltering.h */,
FFFD96030a907f8e96030a90 /* PxQueryReport.h */,
FFFD96030af87f8e96030af8 /* PxRigidActor.h */,
FFFD96030b607f8e96030b60 /* PxRigidBody.h */,
FFFD96030bc87f8e96030bc8 /* PxRigidDynamic.h */,
FFFD96030c307f8e96030c30 /* PxRigidStatic.h */,
FFFD96030c987f8e96030c98 /* PxScene.h */,
FFFD96030d007f8e96030d00 /* PxSceneDesc.h */,
FFFD96030d687f8e96030d68 /* PxSceneLock.h */,
FFFD96030dd07f8e96030dd0 /* PxShape.h */,
FFFD96030e387f8e96030e38 /* PxSimulationEventCallback.h */,
FFFD96030ea07f8e96030ea0 /* PxSimulationStatistics.h */,
FFFD96030f087f8e96030f08 /* PxSpatialIndex.h */,
FFFD96030f707f8e96030f70 /* PxVisualizationParameter.h */,
FFFD96030fd87f8e96030fd8 /* PxVolumeCache.h */,
FFFD960310407f8e96031040 /* particles/PxParticleBase.h */,
FFFD960310a87f8e960310a8 /* particles/PxParticleBaseFlag.h */,
FFFD960311107f8e96031110 /* particles/PxParticleCreationData.h */,
FFFD960311787f8e96031178 /* particles/PxParticleFlag.h */,
FFFD960311e07f8e960311e0 /* particles/PxParticleFluid.h */,
FFFD960312487f8e96031248 /* particles/PxParticleFluidReadData.h */,
FFFD960312b07f8e960312b0 /* particles/PxParticleReadData.h */,
FFFD960313187f8e96031318 /* particles/PxParticleSystem.h */,
FFFD960313807f8e96031380 /* pvd/PxPvdSceneClient.h */,
FFFD960313e87f8e960313e8 /* cloth/PxCloth.h */,
FFFD960314507f8e96031450 /* cloth/PxClothCollisionData.h */,
FFFD960314b87f8e960314b8 /* cloth/PxClothFabric.h */,
FFFD960315207f8e96031520 /* cloth/PxClothParticleData.h */,
FFFD960315887f8e96031588 /* cloth/PxClothTypes.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB95d270407f8e95d27040 /* metadata */ = {
isa = PBXGroup;
children = (
FFFD96039c007f8e96039c00 /* core/include/PvdMetaDataDefineProperties.h */,
FFFD96039c687f8e96039c68 /* core/include/PvdMetaDataExtensions.h */,
FFFD96039cd07f8e96039cd0 /* core/include/PvdMetaDataPropertyVisitor.h */,
FFFD96039d387f8e96039d38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */,
FFFD96039da07f8e96039da0 /* core/include/PxAutoGeneratedMetaDataObjects.h */,
FFFD96039e087f8e96039e08 /* core/include/PxMetaDataCompare.h */,
FFFD96039e707f8e96039e70 /* core/include/PxMetaDataCppPrefix.h */,
FFFD96039ed87f8e96039ed8 /* core/include/PxMetaDataObjects.h */,
FFFD96039f407f8e96039f40 /* core/include/RepXMetaDataPropertyVisitor.h */,
FFFD96039fa87f8e96039fa8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */,
FFFD9603a0107f8e9603a010 /* core/src/PxMetaDataObjects.cpp */,
);
name = "metadata";
sourceTree = SOURCE_ROOT;
};
FFFB95d1f3407f8e95d1f340 /* PhysXCharacterKinematic */ = {
isa = PBXGroup;
children = (
FFFB95d24b707f8e95d24b70 /* include */,
FFFB95d24b987f8e95d24b98 /* src */,
);
name = "PhysXCharacterKinematic";
sourceTree = "<group>";
};
FFFB95d24b707f8e95d24b70 /* include */ = {
isa = PBXGroup;
children = (
FFFD95d264307f8e95d26430 /* PxBoxController.h */,
FFFD95d264987f8e95d26498 /* PxCapsuleController.h */,
FFFD95d265007f8e95d26500 /* PxCharacter.h */,
FFFD95d265687f8e95d26568 /* PxController.h */,
FFFD95d265d07f8e95d265d0 /* PxControllerBehavior.h */,
FFFD95d266387f8e95d26638 /* PxControllerManager.h */,
FFFD95d266a07f8e95d266a0 /* PxControllerObstacles.h */,
FFFD95d267087f8e95d26708 /* PxExtended.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB95d24b987f8e95d24b98 /* src */ = {
isa = PBXGroup;
children = (
FFFD96033e007f8e96033e00 /* CctBoxController.h */,
FFFD96033e687f8e96033e68 /* CctCapsuleController.h */,
FFFD96033ed07f8e96033ed0 /* CctCharacterController.h */,
FFFD96033f387f8e96033f38 /* CctCharacterControllerManager.h */,
FFFD96033fa07f8e96033fa0 /* CctController.h */,
FFFD960340087f8e96034008 /* CctInternalStructs.h */,
FFFD960340707f8e96034070 /* CctObstacleContext.h */,
FFFD960340d87f8e960340d8 /* CctSweptBox.h */,
FFFD960341407f8e96034140 /* CctSweptCapsule.h */,
FFFD960341a87f8e960341a8 /* CctSweptVolume.h */,
FFFD960342107f8e96034210 /* CctUtils.h */,
FFFD960342787f8e96034278 /* CctBoxController.cpp */,
FFFD960342e07f8e960342e0 /* CctCapsuleController.cpp */,
FFFD960343487f8e96034348 /* CctCharacterController.cpp */,
FFFD960343b07f8e960343b0 /* CctCharacterControllerCallbacks.cpp */,
FFFD960344187f8e96034418 /* CctCharacterControllerManager.cpp */,
FFFD960344807f8e96034480 /* CctController.cpp */,
FFFD960344e87f8e960344e8 /* CctObstacleContext.cpp */,
FFFD960345507f8e96034550 /* CctSweptBox.cpp */,
FFFD960345b87f8e960345b8 /* CctSweptCapsule.cpp */,
FFFD960346207f8e96034620 /* CctSweptVolume.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFB95d207307f8e95d20730 /* PhysXVehicle */ = {
isa = PBXGroup;
children = (
FFFB95d316307f8e95d31630 /* include */,
FFFB95d316587f8e95d31658 /* src */,
FFFB95d316807f8e95d31680 /* metadata */,
);
name = "PhysXVehicle";
sourceTree = "<group>";
};
FFFB95d316307f8e95d31630 /* include */ = {
isa = PBXGroup;
children = (
FFFD96036c007f8e96036c00 /* PxVehicleComponents.h */,
FFFD96036c687f8e96036c68 /* PxVehicleDrive.h */,
FFFD96036cd07f8e96036cd0 /* PxVehicleDrive4W.h */,
FFFD96036d387f8e96036d38 /* PxVehicleDriveNW.h */,
FFFD96036da07f8e96036da0 /* PxVehicleDriveTank.h */,
FFFD96036e087f8e96036e08 /* PxVehicleNoDrive.h */,
FFFD96036e707f8e96036e70 /* PxVehicleSDK.h */,
FFFD96036ed87f8e96036ed8 /* PxVehicleShaders.h */,
FFFD96036f407f8e96036f40 /* PxVehicleTireFriction.h */,
FFFD96036fa87f8e96036fa8 /* PxVehicleUpdate.h */,
FFFD960370107f8e96037010 /* PxVehicleUtil.h */,
FFFD960370787f8e96037078 /* PxVehicleUtilControl.h */,
FFFD960370e07f8e960370e0 /* PxVehicleUtilSetup.h */,
FFFD960371487f8e96037148 /* PxVehicleUtilTelemetry.h */,
FFFD960371b07f8e960371b0 /* PxVehicleWheels.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB95d316587f8e95d31658 /* src */ = {
isa = PBXGroup;
children = (
FFFD9603ea007f8e9603ea00 /* PxVehicleDefaults.h */,
FFFD9603ea687f8e9603ea68 /* PxVehicleLinearMath.h */,
FFFD9603ead07f8e9603ead0 /* PxVehicleSerialization.h */,
FFFD9603eb387f8e9603eb38 /* PxVehicleSuspLimitConstraintShader.h */,
FFFD9603eba07f8e9603eba0 /* PxVehicleSuspWheelTire4.h */,
FFFD9603ec087f8e9603ec08 /* PxVehicleComponents.cpp */,
FFFD9603ec707f8e9603ec70 /* PxVehicleDrive.cpp */,
FFFD9603ecd87f8e9603ecd8 /* PxVehicleDrive4W.cpp */,
FFFD9603ed407f8e9603ed40 /* PxVehicleDriveNW.cpp */,
FFFD9603eda87f8e9603eda8 /* PxVehicleDriveTank.cpp */,
FFFD9603ee107f8e9603ee10 /* PxVehicleMetaData.cpp */,
FFFD9603ee787f8e9603ee78 /* PxVehicleNoDrive.cpp */,
FFFD9603eee07f8e9603eee0 /* PxVehicleSDK.cpp */,
FFFD9603ef487f8e9603ef48 /* PxVehicleSerialization.cpp */,
FFFD9603efb07f8e9603efb0 /* PxVehicleSuspWheelTire4.cpp */,
FFFD9603f0187f8e9603f018 /* PxVehicleTireFriction.cpp */,
FFFD9603f0807f8e9603f080 /* PxVehicleUpdate.cpp */,
FFFD9603f0e87f8e9603f0e8 /* PxVehicleWheels.cpp */,
FFFD9603f1507f8e9603f150 /* VehicleUtilControl.cpp */,
FFFD9603f1b87f8e9603f1b8 /* VehicleUtilSetup.cpp */,
FFFD9603f2207f8e9603f220 /* VehicleUtilTelemetry.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFB95d316807f8e95d31680 /* metadata */ = {
isa = PBXGroup;
children = (
FFFD95d323807f8e95d32380 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */,
FFFD95d323e87f8e95d323e8 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */,
FFFD95d324507f8e95d32450 /* include/PxVehicleMetaDataObjects.h */,
FFFD95d324b87f8e95d324b8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */,
FFFD95d325207f8e95d32520 /* src/PxVehicleMetaDataObjects.cpp */,
);
name = "metadata";
sourceTree = SOURCE_ROOT;
};
FFFB95d305e07f8e95d305e0 /* PhysXExtensions */ = {
isa = PBXGroup;
children = (
FFFB95d397b07f8e95d397b0 /* include */,
FFFB95d397d87f8e95d397d8 /* src */,
FFFB95d398007f8e95d39800 /* serialization */,
FFFB95d398287f8e95d39828 /* metadata */,
);
name = "PhysXExtensions";
sourceTree = "<group>";
};
FFFB95d397b07f8e95d397b0 /* include */ = {
isa = PBXGroup;
children = (
FFFD960422007f8e96042200 /* PxBinaryConverter.h */,
FFFD960422687f8e96042268 /* PxBroadPhaseExt.h */,
FFFD960422d07f8e960422d0 /* PxClothFabricCooker.h */,
FFFD960423387f8e96042338 /* PxClothMeshDesc.h */,
FFFD960423a07f8e960423a0 /* PxClothMeshQuadifier.h */,
FFFD960424087f8e96042408 /* PxClothTetherCooker.h */,
FFFD960424707f8e96042470 /* PxCollectionExt.h */,
FFFD960424d87f8e960424d8 /* PxConstraintExt.h */,
FFFD960425407f8e96042540 /* PxConvexMeshExt.h */,
FFFD960425a87f8e960425a8 /* PxD6Joint.h */,
FFFD960426107f8e96042610 /* PxDefaultAllocator.h */,
FFFD960426787f8e96042678 /* PxDefaultCpuDispatcher.h */,
FFFD960426e07f8e960426e0 /* PxDefaultErrorCallback.h */,
FFFD960427487f8e96042748 /* PxDefaultSimulationFilterShader.h */,
FFFD960427b07f8e960427b0 /* PxDefaultStreams.h */,
FFFD960428187f8e96042818 /* PxDistanceJoint.h */,
FFFD960428807f8e96042880 /* PxExtensionsAPI.h */,
FFFD960428e87f8e960428e8 /* PxFixedJoint.h */,
FFFD960429507f8e96042950 /* PxJoint.h */,
FFFD960429b87f8e960429b8 /* PxJointLimit.h */,
FFFD96042a207f8e96042a20 /* PxMassProperties.h */,
FFFD96042a887f8e96042a88 /* PxParticleExt.h */,
FFFD96042af07f8e96042af0 /* PxPrismaticJoint.h */,
FFFD96042b587f8e96042b58 /* PxRaycastCCD.h */,
FFFD96042bc07f8e96042bc0 /* PxRepXSerializer.h */,
FFFD96042c287f8e96042c28 /* PxRepXSimpleType.h */,
FFFD96042c907f8e96042c90 /* PxRevoluteJoint.h */,
FFFD96042cf87f8e96042cf8 /* PxRigidActorExt.h */,
FFFD96042d607f8e96042d60 /* PxRigidBodyExt.h */,
FFFD96042dc87f8e96042dc8 /* PxSceneQueryExt.h */,
FFFD96042e307f8e96042e30 /* PxSerialization.h */,
FFFD96042e987f8e96042e98 /* PxShapeExt.h */,
FFFD96042f007f8e96042f00 /* PxSimpleFactory.h */,
FFFD96042f687f8e96042f68 /* PxSmoothNormals.h */,
FFFD96042fd07f8e96042fd0 /* PxSphericalJoint.h */,
FFFD960430387f8e96043038 /* PxStringTableExt.h */,
FFFD960430a07f8e960430a0 /* PxTriangleMeshExt.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB95d397d87f8e95d397d8 /* src */ = {
isa = PBXGroup;
children = (
FFFD96040c007f8e96040c00 /* ExtConstraintHelper.h */,
FFFD96040c687f8e96040c68 /* ExtCpuWorkerThread.h */,
FFFD96040cd07f8e96040cd0 /* ExtD6Joint.h */,
FFFD96040d387f8e96040d38 /* ExtDefaultCpuDispatcher.h */,
FFFD96040da07f8e96040da0 /* ExtDistanceJoint.h */,
FFFD96040e087f8e96040e08 /* ExtFixedJoint.h */,
FFFD96040e707f8e96040e70 /* ExtInertiaTensor.h */,
FFFD96040ed87f8e96040ed8 /* ExtJoint.h */,
FFFD96040f407f8e96040f40 /* ExtJointMetaDataExtensions.h */,
FFFD96040fa87f8e96040fa8 /* ExtPlatform.h */,
FFFD960410107f8e96041010 /* ExtPrismaticJoint.h */,
FFFD960410787f8e96041078 /* ExtPvd.h */,
FFFD960410e07f8e960410e0 /* ExtRevoluteJoint.h */,
FFFD960411487f8e96041148 /* ExtSerialization.h */,
FFFD960411b07f8e960411b0 /* ExtSharedQueueEntryPool.h */,
FFFD960412187f8e96041218 /* ExtSphericalJoint.h */,
FFFD960412807f8e96041280 /* ExtTaskQueueHelper.h */,
FFFD960412e87f8e960412e8 /* ExtBroadPhase.cpp */,
FFFD960413507f8e96041350 /* ExtClothFabricCooker.cpp */,
FFFD960413b87f8e960413b8 /* ExtClothGeodesicTetherCooker.cpp */,
FFFD960414207f8e96041420 /* ExtClothMeshQuadifier.cpp */,
FFFD960414887f8e96041488 /* ExtClothSimpleTetherCooker.cpp */,
FFFD960414f07f8e960414f0 /* ExtCollection.cpp */,
FFFD960415587f8e96041558 /* ExtConvexMeshExt.cpp */,
FFFD960415c07f8e960415c0 /* ExtCpuWorkerThread.cpp */,
FFFD960416287f8e96041628 /* ExtD6Joint.cpp */,
FFFD960416907f8e96041690 /* ExtD6JointSolverPrep.cpp */,
FFFD960416f87f8e960416f8 /* ExtDefaultCpuDispatcher.cpp */,
FFFD960417607f8e96041760 /* ExtDefaultErrorCallback.cpp */,
FFFD960417c87f8e960417c8 /* ExtDefaultSimulationFilterShader.cpp */,
FFFD960418307f8e96041830 /* ExtDefaultStreams.cpp */,
FFFD960418987f8e96041898 /* ExtDistanceJoint.cpp */,
FFFD960419007f8e96041900 /* ExtDistanceJointSolverPrep.cpp */,
FFFD960419687f8e96041968 /* ExtExtensions.cpp */,
FFFD960419d07f8e960419d0 /* ExtFixedJoint.cpp */,
FFFD96041a387f8e96041a38 /* ExtFixedJointSolverPrep.cpp */,
FFFD96041aa07f8e96041aa0 /* ExtJoint.cpp */,
FFFD96041b087f8e96041b08 /* ExtMetaData.cpp */,
FFFD96041b707f8e96041b70 /* ExtParticleExt.cpp */,
FFFD96041bd87f8e96041bd8 /* ExtPrismaticJoint.cpp */,
FFFD96041c407f8e96041c40 /* ExtPrismaticJointSolverPrep.cpp */,
FFFD96041ca87f8e96041ca8 /* ExtPvd.cpp */,
FFFD96041d107f8e96041d10 /* ExtPxStringTable.cpp */,
FFFD96041d787f8e96041d78 /* ExtRaycastCCD.cpp */,
FFFD96041de07f8e96041de0 /* ExtRevoluteJoint.cpp */,
FFFD96041e487f8e96041e48 /* ExtRevoluteJointSolverPrep.cpp */,
FFFD96041eb07f8e96041eb0 /* ExtRigidBodyExt.cpp */,
FFFD96041f187f8e96041f18 /* ExtSceneQueryExt.cpp */,
FFFD96041f807f8e96041f80 /* ExtSimpleFactory.cpp */,
FFFD96041fe87f8e96041fe8 /* ExtSmoothNormals.cpp */,
FFFD960420507f8e96042050 /* ExtSphericalJoint.cpp */,
FFFD960420b87f8e960420b8 /* ExtSphericalJointSolverPrep.cpp */,
FFFD960421207f8e96042120 /* ExtTriangleMeshExt.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFB95d398007f8e95d39800 /* serialization */ = {
isa = PBXGroup;
children = (
FFFD960456007f8e96045600 /* SnSerialUtils.h */,
FFFD960456687f8e96045668 /* SnSerializationRegistry.h */,
FFFD960456d07f8e960456d0 /* SnSerialUtils.cpp */,
FFFD960457387f8e96045738 /* SnSerialization.cpp */,
FFFD960457a07f8e960457a0 /* SnSerializationRegistry.cpp */,
FFFD960458087f8e96045808 /* Binary/SnConvX.h */,
FFFD960458707f8e96045870 /* Binary/SnConvX_Align.h */,
FFFD960458d87f8e960458d8 /* Binary/SnConvX_Common.h */,
FFFD960459407f8e96045940 /* Binary/SnConvX_MetaData.h */,
FFFD960459a87f8e960459a8 /* Binary/SnConvX_Output.h */,
FFFD96045a107f8e96045a10 /* Binary/SnConvX_Union.h */,
FFFD96045a787f8e96045a78 /* Binary/SnSerializationContext.h */,
FFFD96045ae07f8e96045ae0 /* Binary/SnBinaryDeserialization.cpp */,
FFFD96045b487f8e96045b48 /* Binary/SnBinarySerialization.cpp */,
FFFD96045bb07f8e96045bb0 /* Binary/SnConvX.cpp */,
FFFD96045c187f8e96045c18 /* Binary/SnConvX_Align.cpp */,
FFFD96045c807f8e96045c80 /* Binary/SnConvX_Convert.cpp */,
FFFD96045ce87f8e96045ce8 /* Binary/SnConvX_Error.cpp */,
FFFD96045d507f8e96045d50 /* Binary/SnConvX_MetaData.cpp */,
FFFD96045db87f8e96045db8 /* Binary/SnConvX_Output.cpp */,
FFFD96045e207f8e96045e20 /* Binary/SnConvX_Union.cpp */,
FFFD96045e887f8e96045e88 /* Binary/SnSerializationContext.cpp */,
FFFD96045ef07f8e96045ef0 /* Xml/SnJointRepXSerializer.h */,
FFFD96045f587f8e96045f58 /* Xml/SnPxStreamOperators.h */,
FFFD96045fc07f8e96045fc0 /* Xml/SnRepX1_0Defaults.h */,
FFFD960460287f8e96046028 /* Xml/SnRepX3_1Defaults.h */,
FFFD960460907f8e96046090 /* Xml/SnRepX3_2Defaults.h */,
FFFD960460f87f8e960460f8 /* Xml/SnRepXCollection.h */,
FFFD960461607f8e96046160 /* Xml/SnRepXCoreSerializer.h */,
FFFD960461c87f8e960461c8 /* Xml/SnRepXSerializerImpl.h */,
FFFD960462307f8e96046230 /* Xml/SnRepXUpgrader.h */,
FFFD960462987f8e96046298 /* Xml/SnSimpleXmlWriter.h */,
FFFD960463007f8e96046300 /* Xml/SnXmlDeserializer.h */,
FFFD960463687f8e96046368 /* Xml/SnXmlImpl.h */,
FFFD960463d07f8e960463d0 /* Xml/SnXmlMemoryAllocator.h */,
FFFD960464387f8e96046438 /* Xml/SnXmlMemoryPool.h */,
FFFD960464a07f8e960464a0 /* Xml/SnXmlMemoryPoolStreams.h */,
FFFD960465087f8e96046508 /* Xml/SnXmlReader.h */,
FFFD960465707f8e96046570 /* Xml/SnXmlSerializer.h */,
FFFD960465d87f8e960465d8 /* Xml/SnXmlSimpleXmlWriter.h */,
FFFD960466407f8e96046640 /* Xml/SnXmlStringToType.h */,
FFFD960466a87f8e960466a8 /* Xml/SnXmlVisitorReader.h */,
FFFD960467107f8e96046710 /* Xml/SnXmlVisitorWriter.h */,
FFFD960467787f8e96046778 /* Xml/SnXmlWriter.h */,
FFFD960467e07f8e960467e0 /* Xml/SnJointRepXSerializer.cpp */,
FFFD960468487f8e96046848 /* Xml/SnRepXCoreSerializer.cpp */,
FFFD960468b07f8e960468b0 /* Xml/SnRepXUpgrader.cpp */,
FFFD960469187f8e96046918 /* Xml/SnXmlSerialization.cpp */,
FFFD960469807f8e96046980 /* File/SnFile.h */,
);
name = "serialization";
sourceTree = SOURCE_ROOT;
};
FFFB95d398287f8e95d39828 /* metadata */ = {
isa = PBXGroup;
children = (
FFFD960432007f8e96043200 /* core/include/PvdMetaDataDefineProperties.h */,
FFFD960432687f8e96043268 /* core/include/PvdMetaDataExtensions.h */,
FFFD960432d07f8e960432d0 /* core/include/PvdMetaDataPropertyVisitor.h */,
FFFD960433387f8e96043338 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */,
FFFD960433a07f8e960433a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */,
FFFD960434087f8e96043408 /* core/include/PxMetaDataCompare.h */,
FFFD960434707f8e96043470 /* core/include/PxMetaDataCppPrefix.h */,
FFFD960434d87f8e960434d8 /* core/include/PxMetaDataObjects.h */,
FFFD960435407f8e96043540 /* core/include/RepXMetaDataPropertyVisitor.h */,
FFFD960435a87f8e960435a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */,
FFFD960436107f8e96043610 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */,
FFFD960436787f8e96043678 /* extensions/include/PxExtensionMetaDataObjects.h */,
FFFD960436e07f8e960436e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */,
);
name = "metadata";
sourceTree = SOURCE_ROOT;
};
FFFB95d430907f8e95d43090 /* SceneQuery */ = {
isa = PBXGroup;
children = (
FFFB95d44c307f8e95d44c30 /* src */,
FFFB95d44c587f8e95d44c58 /* include */,
);
name = "SceneQuery";
sourceTree = "<group>";
};
FFFB95d44c307f8e95d44c30 /* src */ = {
isa = PBXGroup;
children = (
FFFD960496007f8e96049600 /* SqAABBPruner.cpp */,
FFFD960496687f8e96049668 /* SqAABBTree.cpp */,
FFFD960496d07f8e960496d0 /* SqAABBTreeBuild.cpp */,
FFFD960497387f8e96049738 /* SqAABBTreeUpdateMap.cpp */,
FFFD960497a07f8e960497a0 /* SqBounds.cpp */,
FFFD960498087f8e96049808 /* SqBucketPruner.cpp */,
FFFD960498707f8e96049870 /* SqExtendedBucketPruner.cpp */,
FFFD960498d87f8e960498d8 /* SqIncrementalAABBPrunerCore.cpp */,
FFFD960499407f8e96049940 /* SqIncrementalAABBTree.cpp */,
FFFD960499a87f8e960499a8 /* SqMetaData.cpp */,
FFFD96049a107f8e96049a10 /* SqPruningPool.cpp */,
FFFD96049a787f8e96049a78 /* SqPruningStructure.cpp */,
FFFD96049ae07f8e96049ae0 /* SqSceneQueryManager.cpp */,
FFFD96049b487f8e96049b48 /* SqAABBPruner.h */,
FFFD96049bb07f8e96049bb0 /* SqAABBTree.h */,
FFFD96049c187f8e96049c18 /* SqAABBTreeBuild.h */,
FFFD96049c807f8e96049c80 /* SqAABBTreeQuery.h */,
FFFD96049ce87f8e96049ce8 /* SqAABBTreeUpdateMap.h */,
FFFD96049d507f8e96049d50 /* SqBounds.h */,
FFFD96049db87f8e96049db8 /* SqBucketPruner.h */,
FFFD96049e207f8e96049e20 /* SqExtendedBucketPruner.h */,
FFFD96049e887f8e96049e88 /* SqIncrementalAABBPrunerCore.h */,
FFFD96049ef07f8e96049ef0 /* SqIncrementalAABBTree.h */,
FFFD96049f587f8e96049f58 /* SqPrunerTestsSIMD.h */,
FFFD96049fc07f8e96049fc0 /* SqPruningPool.h */,
FFFD9604a0287f8e9604a028 /* SqTypedef.h */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFB95d44c587f8e95d44c58 /* include */ = {
isa = PBXGroup;
children = (
FFFD95d474407f8e95d47440 /* SqPruner.h */,
FFFD95d474a87f8e95d474a8 /* SqPrunerMergeData.h */,
FFFD95d475107f8e95d47510 /* SqPruningStructure.h */,
FFFD95d475787f8e95d47578 /* SqSceneQueryManager.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB95d477007f8e95d47700 /* SimulationController */ = {
isa = PBXGroup;
children = (
FFFB95d4a0c07f8e95d4a0c0 /* include */,
FFFB95d4a0e87f8e95d4a0e8 /* src */,
);
name = "SimulationController";
sourceTree = "<group>";
};
FFFB95d4a0c07f8e95d4a0c0 /* include */ = {
isa = PBXGroup;
children = (
FFFD9604c2007f8e9604c200 /* ScActorCore.h */,
FFFD9604c2687f8e9604c268 /* ScArticulationCore.h */,
FFFD9604c2d07f8e9604c2d0 /* ScArticulationJointCore.h */,
FFFD9604c3387f8e9604c338 /* ScBodyCore.h */,
FFFD9604c3a07f8e9604c3a0 /* ScClothCore.h */,
FFFD9604c4087f8e9604c408 /* ScClothFabricCore.h */,
FFFD9604c4707f8e9604c470 /* ScConstraintCore.h */,
FFFD9604c4d87f8e9604c4d8 /* ScIterators.h */,
FFFD9604c5407f8e9604c540 /* ScMaterialCore.h */,
FFFD9604c5a87f8e9604c5a8 /* ScParticleSystemCore.h */,
FFFD9604c6107f8e9604c610 /* ScPhysics.h */,
FFFD9604c6787f8e9604c678 /* ScRigidCore.h */,
FFFD9604c6e07f8e9604c6e0 /* ScScene.h */,
FFFD9604c7487f8e9604c748 /* ScShapeCore.h */,
FFFD9604c7b07f8e9604c7b0 /* ScStaticCore.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB95d4a0e87f8e95d4a0e8 /* src */ = {
isa = PBXGroup;
children = (
FFFD948402007f8e94840200 /* ScActorElementPair.h */,
FFFD948402687f8e94840268 /* ScActorInteraction.h */,
FFFD948402d07f8e948402d0 /* ScActorPair.h */,
FFFD948403387f8e94840338 /* ScActorSim.h */,
FFFD948403a07f8e948403a0 /* ScArticulationJointSim.h */,
FFFD948404087f8e94840408 /* ScArticulationSim.h */,
FFFD948404707f8e94840470 /* ScBodySim.h */,
FFFD948404d87f8e948404d8 /* ScClient.h */,
FFFD948405407f8e94840540 /* ScConstraintGroupNode.h */,
FFFD948405a87f8e948405a8 /* ScConstraintInteraction.h */,
FFFD948406107f8e94840610 /* ScConstraintProjectionManager.h */,
FFFD948406787f8e94840678 /* ScConstraintProjectionTree.h */,
FFFD948406e07f8e948406e0 /* ScConstraintSim.h */,
FFFD948407487f8e94840748 /* ScContactReportBuffer.h */,
FFFD948407b07f8e948407b0 /* ScContactStream.h */,
FFFD948408187f8e94840818 /* ScElementInteractionMarker.h */,
FFFD948408807f8e94840880 /* ScElementSim.h */,
FFFD948408e87f8e948408e8 /* ScElementSimInteraction.h */,
FFFD948409507f8e94840950 /* ScInteraction.h */,
FFFD948409b87f8e948409b8 /* ScInteractionFlags.h */,
FFFD94840a207f8e94840a20 /* ScNPhaseCore.h */,
FFFD94840a887f8e94840a88 /* ScObjectIDTracker.h */,
FFFD94840af07f8e94840af0 /* ScRbElementInteraction.h */,
FFFD94840b587f8e94840b58 /* ScRigidSim.h */,
FFFD94840bc07f8e94840bc0 /* ScShapeInteraction.h */,
FFFD94840c287f8e94840c28 /* ScShapeIterator.h */,
FFFD94840c907f8e94840c90 /* ScShapeSim.h */,
FFFD94840cf87f8e94840cf8 /* ScSimStateData.h */,
FFFD94840d607f8e94840d60 /* ScSimStats.h */,
FFFD94840dc87f8e94840dc8 /* ScSimulationController.h */,
FFFD94840e307f8e94840e30 /* ScSqBoundsManager.h */,
FFFD94840e987f8e94840e98 /* ScStaticSim.h */,
FFFD94840f007f8e94840f00 /* ScTriggerInteraction.h */,
FFFD94840f687f8e94840f68 /* ScTriggerPairs.h */,
FFFD94840fd07f8e94840fd0 /* ScActorCore.cpp */,
FFFD948410387f8e94841038 /* ScActorSim.cpp */,
FFFD948410a07f8e948410a0 /* ScArticulationCore.cpp */,
FFFD948411087f8e94841108 /* ScArticulationJointCore.cpp */,
FFFD948411707f8e94841170 /* ScArticulationJointSim.cpp */,
FFFD948411d87f8e948411d8 /* ScArticulationSim.cpp */,
FFFD948412407f8e94841240 /* ScBodyCore.cpp */,
FFFD948412a87f8e948412a8 /* ScBodyCoreKinematic.cpp */,
FFFD948413107f8e94841310 /* ScBodySim.cpp */,
FFFD948413787f8e94841378 /* ScConstraintCore.cpp */,
FFFD948413e07f8e948413e0 /* ScConstraintGroupNode.cpp */,
FFFD948414487f8e94841448 /* ScConstraintInteraction.cpp */,
FFFD948414b07f8e948414b0 /* ScConstraintProjectionManager.cpp */,
FFFD948415187f8e94841518 /* ScConstraintProjectionTree.cpp */,
FFFD948415807f8e94841580 /* ScConstraintSim.cpp */,
FFFD948415e87f8e948415e8 /* ScElementInteractionMarker.cpp */,
FFFD948416507f8e94841650 /* ScElementSim.cpp */,
FFFD948416b87f8e948416b8 /* ScInteraction.cpp */,
FFFD948417207f8e94841720 /* ScIterators.cpp */,
FFFD948417887f8e94841788 /* ScMaterialCore.cpp */,
FFFD948417f07f8e948417f0 /* ScMetaData.cpp */,
FFFD948418587f8e94841858 /* ScNPhaseCore.cpp */,
FFFD948418c07f8e948418c0 /* ScPhysics.cpp */,
FFFD948419287f8e94841928 /* ScRigidCore.cpp */,
FFFD948419907f8e94841990 /* ScRigidSim.cpp */,
FFFD948419f87f8e948419f8 /* ScScene.cpp */,
FFFD94841a607f8e94841a60 /* ScShapeCore.cpp */,
FFFD94841ac87f8e94841ac8 /* ScShapeInteraction.cpp */,
FFFD94841b307f8e94841b30 /* ScShapeSim.cpp */,
FFFD94841b987f8e94841b98 /* ScSimStats.cpp */,
FFFD94841c007f8e94841c00 /* ScSimulationController.cpp */,
FFFD94841c687f8e94841c68 /* ScSqBoundsManager.cpp */,
FFFD94841cd07f8e94841cd0 /* ScStaticCore.cpp */,
FFFD94841d387f8e94841d38 /* ScStaticSim.cpp */,
FFFD94841da07f8e94841da0 /* ScTriggerInteraction.cpp */,
FFFD94841e087f8e94841e08 /* particles/ScParticleBodyInteraction.h */,
FFFD94841e707f8e94841e70 /* particles/ScParticlePacketShape.h */,
FFFD94841ed87f8e94841ed8 /* particles/ScParticleSystemSim.h */,
FFFD94841f407f8e94841f40 /* particles/ScParticleBodyInteraction.cpp */,
FFFD94841fa87f8e94841fa8 /* particles/ScParticlePacketShape.cpp */,
FFFD948420107f8e94842010 /* particles/ScParticleSystemCore.cpp */,
FFFD948420787f8e94842078 /* particles/ScParticleSystemSim.cpp */,
FFFD948420e07f8e948420e0 /* cloth/ScClothShape.h */,
FFFD948421487f8e94842148 /* cloth/ScClothSim.h */,
FFFD948421b07f8e948421b0 /* cloth/ScClothCore.cpp */,
FFFD948422187f8e94842218 /* cloth/ScClothFabricCore.cpp */,
FFFD948422807f8e94842280 /* cloth/ScClothShape.cpp */,
FFFD948422e87f8e948422e8 /* cloth/ScClothSim.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFB95ad90707f8e95ad9070 /* PhysXCooking */ = {
isa = PBXGroup;
children = (
FFFB95adb9507f8e95adb950 /* include */,
FFFB95adb9787f8e95adb978 /* src */,
);
name = "PhysXCooking";
sourceTree = "<group>";
};
FFFB95adb9507f8e95adb950 /* include */ = {
isa = PBXGroup;
children = (
FFFD95adc0307f8e95adc030 /* PxBVH33MidphaseDesc.h */,
FFFD95adc0987f8e95adc098 /* PxBVH34MidphaseDesc.h */,
FFFD95adc1007f8e95adc100 /* PxConvexMeshDesc.h */,
FFFD95adc1687f8e95adc168 /* PxCooking.h */,
FFFD95adc1d07f8e95adc1d0 /* PxMidphaseDesc.h */,
FFFD95adc2387f8e95adc238 /* PxTriangleMeshDesc.h */,
FFFD95adc2a07f8e95adc2a0 /* Pxc.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB95adb9787f8e95adb978 /* src */ = {
isa = PBXGroup;
children = (
FFFD94848c007f8e94848c00 /* Adjacencies.cpp */,
FFFD94848c687f8e94848c68 /* Cooking.cpp */,
FFFD94848cd07f8e94848cd0 /* CookingUtils.cpp */,
FFFD94848d387f8e94848d38 /* EdgeList.cpp */,
FFFD94848da07f8e94848da0 /* MeshCleaner.cpp */,
FFFD94848e087f8e94848e08 /* Quantizer.cpp */,
FFFD94848e707f8e94848e70 /* Adjacencies.h */,
FFFD94848ed87f8e94848ed8 /* Cooking.h */,
FFFD94848f407f8e94848f40 /* CookingUtils.h */,
FFFD94848fa87f8e94848fa8 /* EdgeList.h */,
FFFD948490107f8e94849010 /* MeshCleaner.h */,
FFFD948490787f8e94849078 /* Quantizer.h */,
FFFD948490e07f8e948490e0 /* mesh/GrbTriangleMeshCooking.cpp */,
FFFD948491487f8e94849148 /* mesh/HeightFieldCooking.cpp */,
FFFD948491b07f8e948491b0 /* mesh/RTreeCooking.cpp */,
FFFD948492187f8e94849218 /* mesh/TriangleMeshBuilder.cpp */,
FFFD948492807f8e94849280 /* mesh/GrbTriangleMeshCooking.h */,
FFFD948492e87f8e948492e8 /* mesh/HeightFieldCooking.h */,
FFFD948493507f8e94849350 /* mesh/QuickSelect.h */,
FFFD948493b87f8e948493b8 /* mesh/RTreeCooking.h */,
FFFD948494207f8e94849420 /* mesh/TriangleMeshBuilder.h */,
FFFD948494887f8e94849488 /* convex/BigConvexDataBuilder.cpp */,
FFFD948494f07f8e948494f0 /* convex/ConvexHullBuilder.cpp */,
FFFD948495587f8e94849558 /* convex/ConvexHullLib.cpp */,
FFFD948495c07f8e948495c0 /* convex/ConvexHullUtils.cpp */,
FFFD948496287f8e94849628 /* convex/ConvexMeshBuilder.cpp */,
FFFD948496907f8e94849690 /* convex/ConvexPolygonsBuilder.cpp */,
FFFD948496f87f8e948496f8 /* convex/InflationConvexHullLib.cpp */,
FFFD948497607f8e94849760 /* convex/QuickHullConvexHullLib.cpp */,
FFFD948497c87f8e948497c8 /* convex/VolumeIntegration.cpp */,
FFFD948498307f8e94849830 /* convex/BigConvexDataBuilder.h */,
FFFD948498987f8e94849898 /* convex/ConvexHullBuilder.h */,
FFFD948499007f8e94849900 /* convex/ConvexHullLib.h */,
FFFD948499687f8e94849968 /* convex/ConvexHullUtils.h */,
FFFD948499d07f8e948499d0 /* convex/ConvexMeshBuilder.h */,
FFFD94849a387f8e94849a38 /* convex/ConvexPolygonsBuilder.h */,
FFFD94849aa07f8e94849aa0 /* convex/InflationConvexHullLib.h */,
FFFD94849b087f8e94849b08 /* convex/QuickHullConvexHullLib.h */,
FFFD94849b707f8e94849b70 /* convex/VolumeIntegration.h */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFB9415a1507f8e9415a150 /* PhysXCommon */ = {
isa = PBXGroup;
children = (
FFFB941593607f8e94159360 /* include */,
FFFB941593887f8e94159388 /* common */,
FFFB941593b07f8e941593b0 /* geomutils */,
);
name = "PhysXCommon";
sourceTree = "<group>";
};
FFFB941593607f8e94159360 /* include */ = {
isa = PBXGroup;
children = (
FFFD9480ec007f8e9480ec00 /* common/PxBase.h */,
FFFD9480ec687f8e9480ec68 /* common/PxCollection.h */,
FFFD9480ecd07f8e9480ecd0 /* common/PxCoreUtilityTypes.h */,
FFFD9480ed387f8e9480ed38 /* common/PxMetaData.h */,
FFFD9480eda07f8e9480eda0 /* common/PxMetaDataFlags.h */,
FFFD9480ee087f8e9480ee08 /* common/PxPhysXCommonConfig.h */,
FFFD9480ee707f8e9480ee70 /* common/PxPhysicsInsertionCallback.h */,
FFFD9480eed87f8e9480eed8 /* common/PxRenderBuffer.h */,
FFFD9480ef407f8e9480ef40 /* common/PxSerialFramework.h */,
FFFD9480efa87f8e9480efa8 /* common/PxSerializer.h */,
FFFD9480f0107f8e9480f010 /* common/PxStringTable.h */,
FFFD9480f0787f8e9480f078 /* common/PxTolerancesScale.h */,
FFFD9480f0e07f8e9480f0e0 /* common/PxTypeInfo.h */,
FFFD9480f1487f8e9480f148 /* geometry/PxBoxGeometry.h */,
FFFD9480f1b07f8e9480f1b0 /* geometry/PxCapsuleGeometry.h */,
FFFD9480f2187f8e9480f218 /* geometry/PxConvexMesh.h */,
FFFD9480f2807f8e9480f280 /* geometry/PxConvexMeshGeometry.h */,
FFFD9480f2e87f8e9480f2e8 /* geometry/PxGeometry.h */,
FFFD9480f3507f8e9480f350 /* geometry/PxGeometryHelpers.h */,
FFFD9480f3b87f8e9480f3b8 /* geometry/PxGeometryQuery.h */,
FFFD9480f4207f8e9480f420 /* geometry/PxHeightField.h */,
FFFD9480f4887f8e9480f488 /* geometry/PxHeightFieldDesc.h */,
FFFD9480f4f07f8e9480f4f0 /* geometry/PxHeightFieldFlag.h */,
FFFD9480f5587f8e9480f558 /* geometry/PxHeightFieldGeometry.h */,
FFFD9480f5c07f8e9480f5c0 /* geometry/PxHeightFieldSample.h */,
FFFD9480f6287f8e9480f628 /* geometry/PxMeshQuery.h */,
FFFD9480f6907f8e9480f690 /* geometry/PxMeshScale.h */,
FFFD9480f6f87f8e9480f6f8 /* geometry/PxPlaneGeometry.h */,
FFFD9480f7607f8e9480f760 /* geometry/PxSimpleTriangleMesh.h */,
FFFD9480f7c87f8e9480f7c8 /* geometry/PxSphereGeometry.h */,
FFFD9480f8307f8e9480f830 /* geometry/PxTriangle.h */,
FFFD9480f8987f8e9480f898 /* geometry/PxTriangleMesh.h */,
FFFD9480f9007f8e9480f900 /* geometry/PxTriangleMeshGeometry.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB941593887f8e94159388 /* common */ = {
isa = PBXGroup;
children = (
FFFD939982007f8e93998200 /* src/CmBoxPruning.cpp */,
FFFD939982687f8e93998268 /* src/CmCollection.cpp */,
FFFD939982d07f8e939982d0 /* src/CmMathUtils.cpp */,
FFFD939983387f8e93998338 /* src/CmPtrTable.cpp */,
FFFD939983a07f8e939983a0 /* src/CmRadixSort.cpp */,
FFFD939984087f8e93998408 /* src/CmRadixSortBuffered.cpp */,
FFFD939984707f8e93998470 /* src/CmRenderOutput.cpp */,
FFFD939984d87f8e939984d8 /* src/CmVisualization.cpp */,
FFFD939985407f8e93998540 /* src/CmBitMap.h */,
FFFD939985a87f8e939985a8 /* src/CmBoxPruning.h */,
FFFD939986107f8e93998610 /* src/CmCollection.h */,
FFFD939986787f8e93998678 /* src/CmConeLimitHelper.h */,
FFFD939986e07f8e939986e0 /* src/CmFlushPool.h */,
FFFD939987487f8e93998748 /* src/CmIDPool.h */,
FFFD939987b07f8e939987b0 /* src/CmIO.h */,
FFFD939988187f8e93998818 /* src/CmMatrix34.h */,
FFFD939988807f8e93998880 /* src/CmPhysXCommon.h */,
FFFD939988e87f8e939988e8 /* src/CmPool.h */,
FFFD939989507f8e93998950 /* src/CmPreallocatingPool.h */,
FFFD939989b87f8e939989b8 /* src/CmPriorityQueue.h */,
FFFD93998a207f8e93998a20 /* src/CmPtrTable.h */,
FFFD93998a887f8e93998a88 /* src/CmQueue.h */,
FFFD93998af07f8e93998af0 /* src/CmRadixSort.h */,
FFFD93998b587f8e93998b58 /* src/CmRadixSortBuffered.h */,
FFFD93998bc07f8e93998bc0 /* src/CmRefCountable.h */,
FFFD93998c287f8e93998c28 /* src/CmRenderBuffer.h */,
FFFD93998c907f8e93998c90 /* src/CmRenderOutput.h */,
FFFD93998cf87f8e93998cf8 /* src/CmScaling.h */,
FFFD93998d607f8e93998d60 /* src/CmSpatialVector.h */,
FFFD93998dc87f8e93998dc8 /* src/CmTask.h */,
FFFD93998e307f8e93998e30 /* src/CmTaskPool.h */,
FFFD93998e987f8e93998e98 /* src/CmTmpMem.h */,
FFFD93998f007f8e93998f00 /* src/CmTransformUtils.h */,
FFFD93998f687f8e93998f68 /* src/CmUtils.h */,
FFFD93998fd07f8e93998fd0 /* src/CmVisualization.h */,
);
name = "common";
sourceTree = SOURCE_ROOT;
};
FFFB941593b07f8e941593b0 /* geomutils */ = {
isa = PBXGroup;
children = (
FFFD948010007f8e94801000 /* headers/GuAxes.h */,
FFFD948010687f8e94801068 /* headers/GuBox.h */,
FFFD948010d07f8e948010d0 /* headers/GuDistanceSegmentBox.h */,
FFFD948011387f8e94801138 /* headers/GuDistanceSegmentSegment.h */,
FFFD948011a07f8e948011a0 /* headers/GuIntersectionBoxBox.h */,
FFFD948012087f8e94801208 /* headers/GuIntersectionTriangleBox.h */,
FFFD948012707f8e94801270 /* headers/GuRaycastTests.h */,
FFFD948012d87f8e948012d8 /* headers/GuSIMDHelpers.h */,
FFFD948013407f8e94801340 /* headers/GuSegment.h */,
FFFD948013a87f8e948013a8 /* ../../Include/GeomUtils */,
FFFD948014107f8e94801410 /* src/GuBounds.h */,
FFFD948014787f8e94801478 /* src/GuCapsule.h */,
FFFD948014e07f8e948014e0 /* src/GuCenterExtents.h */,
FFFD948015487f8e94801548 /* src/GuGeometryUnion.h */,
FFFD948015b07f8e948015b0 /* src/GuInternal.h */,
FFFD948016187f8e94801618 /* src/GuMTD.h */,
FFFD948016807f8e94801680 /* src/GuMeshFactory.h */,
FFFD948016e87f8e948016e8 /* src/GuOverlapTests.h */,
FFFD948017507f8e94801750 /* src/GuSerialize.h */,
FFFD948017b87f8e948017b8 /* src/GuSphere.h */,
FFFD948018207f8e94801820 /* src/GuSweepMTD.h */,
FFFD948018887f8e94801888 /* src/GuSweepSharedTests.h */,
FFFD948018f07f8e948018f0 /* src/GuSweepTests.h */,
FFFD948019587f8e94801958 /* src/contact/GuContactMethodImpl.h */,
FFFD948019c07f8e948019c0 /* src/contact/GuContactPolygonPolygon.h */,
FFFD94801a287f8e94801a28 /* src/contact/GuFeatureCode.h */,
FFFD94801a907f8e94801a90 /* src/contact/GuLegacyTraceLineCallback.h */,
FFFD94801af87f8e94801af8 /* src/common/GuBarycentricCoordinates.h */,
FFFD94801b607f8e94801b60 /* src/common/GuBoxConversion.h */,
FFFD94801bc87f8e94801bc8 /* src/common/GuEdgeCache.h */,
FFFD94801c307f8e94801c30 /* src/common/GuEdgeListData.h */,
FFFD94801c987f8e94801c98 /* src/common/GuSeparatingAxes.h */,
FFFD94801d007f8e94801d00 /* src/convex/GuBigConvexData.h */,
FFFD94801d687f8e94801d68 /* src/convex/GuBigConvexData2.h */,
FFFD94801dd07f8e94801dd0 /* src/convex/GuConvexEdgeFlags.h */,
FFFD94801e387f8e94801e38 /* src/convex/GuConvexHelper.h */,
FFFD94801ea07f8e94801ea0 /* src/convex/GuConvexMesh.h */,
FFFD94801f087f8e94801f08 /* src/convex/GuConvexMeshData.h */,
FFFD94801f707f8e94801f70 /* src/convex/GuConvexSupportTable.h */,
FFFD94801fd87f8e94801fd8 /* src/convex/GuConvexUtilsInternal.h */,
FFFD948020407f8e94802040 /* src/convex/GuCubeIndex.h */,
FFFD948020a87f8e948020a8 /* src/convex/GuHillClimbing.h */,
FFFD948021107f8e94802110 /* src/convex/GuShapeConvex.h */,
FFFD948021787f8e94802178 /* src/distance/GuDistancePointBox.h */,
FFFD948021e07f8e948021e0 /* src/distance/GuDistancePointSegment.h */,
FFFD948022487f8e94802248 /* src/distance/GuDistancePointTriangle.h */,
FFFD948022b07f8e948022b0 /* src/distance/GuDistancePointTriangleSIMD.h */,
FFFD948023187f8e94802318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */,
FFFD948023807f8e94802380 /* src/distance/GuDistanceSegmentTriangle.h */,
FFFD948023e87f8e948023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */,
FFFD948024507f8e94802450 /* src/sweep/GuSweepBoxBox.h */,
FFFD948024b87f8e948024b8 /* src/sweep/GuSweepBoxSphere.h */,
FFFD948025207f8e94802520 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */,
FFFD948025887f8e94802588 /* src/sweep/GuSweepBoxTriangle_SAT.h */,
FFFD948025f07f8e948025f0 /* src/sweep/GuSweepCapsuleBox.h */,
FFFD948026587f8e94802658 /* src/sweep/GuSweepCapsuleCapsule.h */,
FFFD948026c07f8e948026c0 /* src/sweep/GuSweepCapsuleTriangle.h */,
FFFD948027287f8e94802728 /* src/sweep/GuSweepSphereCapsule.h */,
FFFD948027907f8e94802790 /* src/sweep/GuSweepSphereSphere.h */,
FFFD948027f87f8e948027f8 /* src/sweep/GuSweepSphereTriangle.h */,
FFFD948028607f8e94802860 /* src/sweep/GuSweepTriangleUtils.h */,
FFFD948028c87f8e948028c8 /* src/gjk/GuEPA.h */,
FFFD948029307f8e94802930 /* src/gjk/GuEPAFacet.h */,
FFFD948029987f8e94802998 /* src/gjk/GuGJK.h */,
FFFD94802a007f8e94802a00 /* src/gjk/GuGJKPenetration.h */,
FFFD94802a687f8e94802a68 /* src/gjk/GuGJKRaycast.h */,
FFFD94802ad07f8e94802ad0 /* src/gjk/GuGJKSimplex.h */,
FFFD94802b387f8e94802b38 /* src/gjk/GuGJKTest.h */,
FFFD94802ba07f8e94802ba0 /* src/gjk/GuGJKType.h */,
FFFD94802c087f8e94802c08 /* src/gjk/GuGJKUtil.h */,
FFFD94802c707f8e94802c70 /* src/gjk/GuVecBox.h */,
FFFD94802cd87f8e94802cd8 /* src/gjk/GuVecCapsule.h */,
FFFD94802d407f8e94802d40 /* src/gjk/GuVecConvex.h */,
FFFD94802da87f8e94802da8 /* src/gjk/GuVecConvexHull.h */,
FFFD94802e107f8e94802e10 /* src/gjk/GuVecConvexHullNoScale.h */,
FFFD94802e787f8e94802e78 /* src/gjk/GuVecPlane.h */,
FFFD94802ee07f8e94802ee0 /* src/gjk/GuVecShrunkBox.h */,
FFFD94802f487f8e94802f48 /* src/gjk/GuVecShrunkConvexHull.h */,
FFFD94802fb07f8e94802fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */,
FFFD948030187f8e94803018 /* src/gjk/GuVecSphere.h */,
FFFD948030807f8e94803080 /* src/gjk/GuVecTriangle.h */,
FFFD948030e87f8e948030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */,
FFFD948031507f8e94803150 /* src/intersection/GuIntersectionEdgeEdge.h */,
FFFD948031b87f8e948031b8 /* src/intersection/GuIntersectionRay.h */,
FFFD948032207f8e94803220 /* src/intersection/GuIntersectionRayBox.h */,
FFFD948032887f8e94803288 /* src/intersection/GuIntersectionRayBoxSIMD.h */,
FFFD948032f07f8e948032f0 /* src/intersection/GuIntersectionRayCapsule.h */,
FFFD948033587f8e94803358 /* src/intersection/GuIntersectionRayPlane.h */,
FFFD948033c07f8e948033c0 /* src/intersection/GuIntersectionRaySphere.h */,
FFFD948034287f8e94803428 /* src/intersection/GuIntersectionRayTriangle.h */,
FFFD948034907f8e94803490 /* src/intersection/GuIntersectionSphereBox.h */,
FFFD948034f87f8e948034f8 /* src/mesh/GuBV32.h */,
FFFD948035607f8e94803560 /* src/mesh/GuBV32Build.h */,
FFFD948035c87f8e948035c8 /* src/mesh/GuBV4.h */,
FFFD948036307f8e94803630 /* src/mesh/GuBV4Build.h */,
FFFD948036987f8e94803698 /* src/mesh/GuBV4Settings.h */,
FFFD948037007f8e94803700 /* src/mesh/GuBV4_AABBAABBSweepTest.h */,
FFFD948037687f8e94803768 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */,
FFFD948037d07f8e948037d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */,
FFFD948038387f8e94803838 /* src/mesh/GuBV4_BoxSweep_Internal.h */,
FFFD948038a07f8e948038a0 /* src/mesh/GuBV4_BoxSweep_Params.h */,
FFFD948039087f8e94803908 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */,
FFFD948039707f8e94803970 /* src/mesh/GuBV4_Common.h */,
FFFD948039d87f8e948039d8 /* src/mesh/GuBV4_Internal.h */,
FFFD94803a407f8e94803a40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */,
FFFD94803aa87f8e94803aa8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */,
FFFD94803b107f8e94803b10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */,
FFFD94803b787f8e94803b78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */,
FFFD94803be07f8e94803be0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */,
FFFD94803c487f8e94803c48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */,
FFFD94803cb07f8e94803cb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */,
FFFD94803d187f8e94803d18 /* src/mesh/GuBV4_Slabs.h */,
FFFD94803d807f8e94803d80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */,
FFFD94803de87f8e94803de8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */,
FFFD94803e507f8e94803e50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */,
FFFD94803eb87f8e94803eb8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */,
FFFD94803f207f8e94803f20 /* src/mesh/GuBVConstants.h */,
FFFD94803f887f8e94803f88 /* src/mesh/GuMeshData.h */,
FFFD94803ff07f8e94803ff0 /* src/mesh/GuMidphaseInterface.h */,
FFFD948040587f8e94804058 /* src/mesh/GuRTree.h */,
FFFD948040c07f8e948040c0 /* src/mesh/GuSweepConvexTri.h */,
FFFD948041287f8e94804128 /* src/mesh/GuSweepMesh.h */,
FFFD948041907f8e94804190 /* src/mesh/GuTriangle32.h */,
FFFD948041f87f8e948041f8 /* src/mesh/GuTriangleCache.h */,
FFFD948042607f8e94804260 /* src/mesh/GuTriangleMesh.h */,
FFFD948042c87f8e948042c8 /* src/mesh/GuTriangleMeshBV4.h */,
FFFD948043307f8e94804330 /* src/mesh/GuTriangleMeshRTree.h */,
FFFD948043987f8e94804398 /* src/mesh/GuTriangleVertexPointers.h */,
FFFD948044007f8e94804400 /* src/hf/GuEntityReport.h */,
FFFD948044687f8e94804468 /* src/hf/GuHeightField.h */,
FFFD948044d07f8e948044d0 /* src/hf/GuHeightFieldData.h */,
FFFD948045387f8e94804538 /* src/hf/GuHeightFieldUtil.h */,
FFFD948045a07f8e948045a0 /* src/pcm/GuPCMContactConvexCommon.h */,
FFFD948046087f8e94804608 /* src/pcm/GuPCMContactGen.h */,
FFFD948046707f8e94804670 /* src/pcm/GuPCMContactGenUtil.h */,
FFFD948046d87f8e948046d8 /* src/pcm/GuPCMContactMeshCallback.h */,
FFFD948047407f8e94804740 /* src/pcm/GuPCMShapeConvex.h */,
FFFD948047a87f8e948047a8 /* src/pcm/GuPCMTriangleContactGen.h */,
FFFD948048107f8e94804810 /* src/pcm/GuPersistentContactManifold.h */,
FFFD948048787f8e94804878 /* src/ccd/GuCCDSweepConvexMesh.h */,
FFFD948048e07f8e948048e0 /* src/GuBounds.cpp */,
FFFD948049487f8e94804948 /* src/GuBox.cpp */,
FFFD948049b07f8e948049b0 /* src/GuCCTSweepTests.cpp */,
FFFD94804a187f8e94804a18 /* src/GuCapsule.cpp */,
FFFD94804a807f8e94804a80 /* src/GuGeometryQuery.cpp */,
FFFD94804ae87f8e94804ae8 /* src/GuGeometryUnion.cpp */,
FFFD94804b507f8e94804b50 /* src/GuInternal.cpp */,
FFFD94804bb87f8e94804bb8 /* src/GuMTD.cpp */,
FFFD94804c207f8e94804c20 /* src/GuMeshFactory.cpp */,
FFFD94804c887f8e94804c88 /* src/GuMetaData.cpp */,
FFFD94804cf07f8e94804cf0 /* src/GuOverlapTests.cpp */,
FFFD94804d587f8e94804d58 /* src/GuRaycastTests.cpp */,
FFFD94804dc07f8e94804dc0 /* src/GuSerialize.cpp */,
FFFD94804e287f8e94804e28 /* src/GuSweepMTD.cpp */,
FFFD94804e907f8e94804e90 /* src/GuSweepSharedTests.cpp */,
FFFD94804ef87f8e94804ef8 /* src/GuSweepTests.cpp */,
FFFD94804f607f8e94804f60 /* src/contact/GuContactBoxBox.cpp */,
FFFD94804fc87f8e94804fc8 /* src/contact/GuContactCapsuleBox.cpp */,
FFFD948050307f8e94805030 /* src/contact/GuContactCapsuleCapsule.cpp */,
FFFD948050987f8e94805098 /* src/contact/GuContactCapsuleConvex.cpp */,
FFFD948051007f8e94805100 /* src/contact/GuContactCapsuleMesh.cpp */,
FFFD948051687f8e94805168 /* src/contact/GuContactConvexConvex.cpp */,
FFFD948051d07f8e948051d0 /* src/contact/GuContactConvexMesh.cpp */,
FFFD948052387f8e94805238 /* src/contact/GuContactPlaneBox.cpp */,
FFFD948052a07f8e948052a0 /* src/contact/GuContactPlaneCapsule.cpp */,
FFFD948053087f8e94805308 /* src/contact/GuContactPlaneConvex.cpp */,
FFFD948053707f8e94805370 /* src/contact/GuContactPolygonPolygon.cpp */,
FFFD948053d87f8e948053d8 /* src/contact/GuContactSphereBox.cpp */,
FFFD948054407f8e94805440 /* src/contact/GuContactSphereCapsule.cpp */,
FFFD948054a87f8e948054a8 /* src/contact/GuContactSphereMesh.cpp */,
FFFD948055107f8e94805510 /* src/contact/GuContactSpherePlane.cpp */,
FFFD948055787f8e94805578 /* src/contact/GuContactSphereSphere.cpp */,
FFFD948055e07f8e948055e0 /* src/contact/GuFeatureCode.cpp */,
FFFD948056487f8e94805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */,
FFFD948056b07f8e948056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */,
FFFD948057187f8e94805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */,
FFFD948057807f8e94805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */,
FFFD948057e87f8e948057e8 /* src/common/GuBarycentricCoordinates.cpp */,
FFFD948058507f8e94805850 /* src/common/GuSeparatingAxes.cpp */,
FFFD948058b87f8e948058b8 /* src/convex/GuBigConvexData.cpp */,
FFFD948059207f8e94805920 /* src/convex/GuConvexHelper.cpp */,
FFFD948059887f8e94805988 /* src/convex/GuConvexMesh.cpp */,
FFFD948059f07f8e948059f0 /* src/convex/GuConvexSupportTable.cpp */,
FFFD94805a587f8e94805a58 /* src/convex/GuConvexUtilsInternal.cpp */,
FFFD94805ac07f8e94805ac0 /* src/convex/GuHillClimbing.cpp */,
FFFD94805b287f8e94805b28 /* src/convex/GuShapeConvex.cpp */,
FFFD94805b907f8e94805b90 /* src/distance/GuDistancePointBox.cpp */,
FFFD94805bf87f8e94805bf8 /* src/distance/GuDistancePointTriangle.cpp */,
FFFD94805c607f8e94805c60 /* src/distance/GuDistanceSegmentBox.cpp */,
FFFD94805cc87f8e94805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */,
FFFD94805d307f8e94805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */,
FFFD94805d987f8e94805d98 /* src/sweep/GuSweepBoxBox.cpp */,
FFFD94805e007f8e94805e00 /* src/sweep/GuSweepBoxSphere.cpp */,
FFFD94805e687f8e94805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */,
FFFD94805ed07f8e94805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */,
FFFD94805f387f8e94805f38 /* src/sweep/GuSweepCapsuleBox.cpp */,
FFFD94805fa07f8e94805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */,
FFFD948060087f8e94806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */,
FFFD948060707f8e94806070 /* src/sweep/GuSweepSphereCapsule.cpp */,
FFFD948060d87f8e948060d8 /* src/sweep/GuSweepSphereSphere.cpp */,
FFFD948061407f8e94806140 /* src/sweep/GuSweepSphereTriangle.cpp */,
FFFD948061a87f8e948061a8 /* src/sweep/GuSweepTriangleUtils.cpp */,
FFFD948062107f8e94806210 /* src/gjk/GuEPA.cpp */,
FFFD948062787f8e94806278 /* src/gjk/GuGJKSimplex.cpp */,
FFFD948062e07f8e948062e0 /* src/gjk/GuGJKTest.cpp */,
FFFD948063487f8e94806348 /* src/intersection/GuIntersectionBoxBox.cpp */,
FFFD948063b07f8e948063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */,
FFFD948064187f8e94806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */,
FFFD948064807f8e94806480 /* src/intersection/GuIntersectionRayBox.cpp */,
FFFD948064e87f8e948064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */,
FFFD948065507f8e94806550 /* src/intersection/GuIntersectionRaySphere.cpp */,
FFFD948065b87f8e948065b8 /* src/intersection/GuIntersectionSphereBox.cpp */,
FFFD948066207f8e94806620 /* src/intersection/GuIntersectionTriangleBox.cpp */,
FFFD948066887f8e94806688 /* src/mesh/GuBV32.cpp */,
FFFD948066f07f8e948066f0 /* src/mesh/GuBV32Build.cpp */,
FFFD948067587f8e94806758 /* src/mesh/GuBV4.cpp */,
FFFD948067c07f8e948067c0 /* src/mesh/GuBV4Build.cpp */,
FFFD948068287f8e94806828 /* src/mesh/GuBV4_AABBSweep.cpp */,
FFFD948068907f8e94806890 /* src/mesh/GuBV4_BoxOverlap.cpp */,
FFFD948068f87f8e948068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */,
FFFD948069607f8e94806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */,
FFFD948069c87f8e948069c8 /* src/mesh/GuBV4_OBBSweep.cpp */,
FFFD94806a307f8e94806a30 /* src/mesh/GuBV4_Raycast.cpp */,
FFFD94806a987f8e94806a98 /* src/mesh/GuBV4_SphereOverlap.cpp */,
FFFD94806b007f8e94806b00 /* src/mesh/GuBV4_SphereSweep.cpp */,
FFFD94806b687f8e94806b68 /* src/mesh/GuMeshQuery.cpp */,
FFFD94806bd07f8e94806bd0 /* src/mesh/GuMidphaseBV4.cpp */,
FFFD94806c387f8e94806c38 /* src/mesh/GuMidphaseRTree.cpp */,
FFFD94806ca07f8e94806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */,
FFFD94806d087f8e94806d08 /* src/mesh/GuRTree.cpp */,
FFFD94806d707f8e94806d70 /* src/mesh/GuRTreeQueries.cpp */,
FFFD94806dd87f8e94806dd8 /* src/mesh/GuSweepsMesh.cpp */,
FFFD94806e407f8e94806e40 /* src/mesh/GuTriangleMesh.cpp */,
FFFD94806ea87f8e94806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */,
FFFD94806f107f8e94806f10 /* src/mesh/GuTriangleMeshRTree.cpp */,
FFFD94806f787f8e94806f78 /* src/hf/GuHeightField.cpp */,
FFFD94806fe07f8e94806fe0 /* src/hf/GuHeightFieldUtil.cpp */,
FFFD948070487f8e94807048 /* src/hf/GuOverlapTestsHF.cpp */,
FFFD948070b07f8e948070b0 /* src/hf/GuSweepsHF.cpp */,
FFFD948071187f8e94807118 /* src/pcm/GuPCMContactBoxBox.cpp */,
FFFD948071807f8e94807180 /* src/pcm/GuPCMContactBoxConvex.cpp */,
FFFD948071e87f8e948071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */,
FFFD948072507f8e94807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */,
FFFD948072b87f8e948072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */,
FFFD948073207f8e94807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */,
FFFD948073887f8e94807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */,
FFFD948073f07f8e948073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */,
FFFD948074587f8e94807458 /* src/pcm/GuPCMContactConvexConvex.cpp */,
FFFD948074c07f8e948074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */,
FFFD948075287f8e94807528 /* src/pcm/GuPCMContactConvexMesh.cpp */,
FFFD948075907f8e94807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */,
FFFD948075f87f8e948075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */,
FFFD948076607f8e94807660 /* src/pcm/GuPCMContactPlaneBox.cpp */,
FFFD948076c87f8e948076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */,
FFFD948077307f8e94807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */,
FFFD948077987f8e94807798 /* src/pcm/GuPCMContactSphereBox.cpp */,
FFFD948078007f8e94807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */,
FFFD948078687f8e94807868 /* src/pcm/GuPCMContactSphereConvex.cpp */,
FFFD948078d07f8e948078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */,
FFFD948079387f8e94807938 /* src/pcm/GuPCMContactSphereMesh.cpp */,
FFFD948079a07f8e948079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */,
FFFD94807a087f8e94807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */,
FFFD94807a707f8e94807a70 /* src/pcm/GuPCMShapeConvex.cpp */,
FFFD94807ad87f8e94807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */,
FFFD94807b407f8e94807b40 /* src/pcm/GuPersistentContactManifold.cpp */,
FFFD94807ba87f8e94807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */,
FFFD94807c107f8e94807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */,
);
name = "geomutils";
sourceTree = SOURCE_ROOT;
};
FFFB94146ae07f8e94146ae0 /* PxFoundation */ = {
isa = PBXGroup;
children = (
FFFB94168ff07f8e94168ff0 /* include */,
FFFB941690187f8e94169018 /* src */,
);
name = "PxFoundation";
sourceTree = "<group>";
};
FFFB94168ff07f8e94168ff0 /* include */ = {
isa = PBXGroup;
children = (
FFFD939924007f8e93992400 /* Px.h */,
FFFD939924687f8e93992468 /* PxAllocatorCallback.h */,
FFFD939924d07f8e939924d0 /* PxAssert.h */,
FFFD939925387f8e93992538 /* PxBitAndData.h */,
FFFD939925a07f8e939925a0 /* PxBounds3.h */,
FFFD939926087f8e93992608 /* PxErrorCallback.h */,
FFFD939926707f8e93992670 /* PxErrors.h */,
FFFD939926d87f8e939926d8 /* PxFlags.h */,
FFFD939927407f8e93992740 /* PxFoundation.h */,
FFFD939927a87f8e939927a8 /* PxFoundationVersion.h */,
FFFD939928107f8e93992810 /* PxIO.h */,
FFFD939928787f8e93992878 /* PxIntrinsics.h */,
FFFD939928e07f8e939928e0 /* PxMat33.h */,
FFFD939929487f8e93992948 /* PxMat44.h */,
FFFD939929b07f8e939929b0 /* PxMath.h */,
FFFD93992a187f8e93992a18 /* PxMathUtils.h */,
FFFD93992a807f8e93992a80 /* PxMemory.h */,
FFFD93992ae87f8e93992ae8 /* PxPlane.h */,
FFFD93992b507f8e93992b50 /* PxPreprocessor.h */,
FFFD93992bb87f8e93992bb8 /* PxProfiler.h */,
FFFD93992c207f8e93992c20 /* PxQuat.h */,
FFFD93992c887f8e93992c88 /* PxSimpleTypes.h */,
FFFD93992cf07f8e93992cf0 /* PxStrideIterator.h */,
FFFD93992d587f8e93992d58 /* PxTransform.h */,
FFFD93992dc07f8e93992dc0 /* PxUnionCast.h */,
FFFD93992e287f8e93992e28 /* PxVec2.h */,
FFFD93992e907f8e93992e90 /* PxVec3.h */,
FFFD93992ef87f8e93992ef8 /* PxVec4.h */,
FFFD93992f607f8e93992f60 /* unix/PxUnixIntrinsics.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB941690187f8e94169018 /* src */ = {
isa = PBXGroup;
children = (
FFFD939948007f8e93994800 /* include/Ps.h */,
FFFD939948687f8e93994868 /* include/PsAlignedMalloc.h */,
FFFD939948d07f8e939948d0 /* include/PsAlloca.h */,
FFFD939949387f8e93994938 /* include/PsAllocator.h */,
FFFD939949a07f8e939949a0 /* include/PsAoS.h */,
FFFD93994a087f8e93994a08 /* include/PsArray.h */,
FFFD93994a707f8e93994a70 /* include/PsAtomic.h */,
FFFD93994ad87f8e93994ad8 /* include/PsBasicTemplates.h */,
FFFD93994b407f8e93994b40 /* include/PsBitUtils.h */,
FFFD93994ba87f8e93994ba8 /* include/PsBroadcast.h */,
FFFD93994c107f8e93994c10 /* include/PsCpu.h */,
FFFD93994c787f8e93994c78 /* include/PsFPU.h */,
FFFD93994ce07f8e93994ce0 /* include/PsFoundation.h */,
FFFD93994d487f8e93994d48 /* include/PsHash.h */,
FFFD93994db07f8e93994db0 /* include/PsHashInternals.h */,
FFFD93994e187f8e93994e18 /* include/PsHashMap.h */,
FFFD93994e807f8e93994e80 /* include/PsHashSet.h */,
FFFD93994ee87f8e93994ee8 /* include/PsInlineAllocator.h */,
FFFD93994f507f8e93994f50 /* include/PsInlineAoS.h */,
FFFD93994fb87f8e93994fb8 /* include/PsInlineArray.h */,
FFFD939950207f8e93995020 /* include/PsIntrinsics.h */,
FFFD939950887f8e93995088 /* include/PsMathUtils.h */,
FFFD939950f07f8e939950f0 /* include/PsMutex.h */,
FFFD939951587f8e93995158 /* include/PsPool.h */,
FFFD939951c07f8e939951c0 /* include/PsSList.h */,
FFFD939952287f8e93995228 /* include/PsSocket.h */,
FFFD939952907f8e93995290 /* include/PsSort.h */,
FFFD939952f87f8e939952f8 /* include/PsSortInternals.h */,
FFFD939953607f8e93995360 /* include/PsString.h */,
FFFD939953c87f8e939953c8 /* include/PsSync.h */,
FFFD939954307f8e93995430 /* include/PsTempAllocator.h */,
FFFD939954987f8e93995498 /* include/PsThread.h */,
FFFD939955007f8e93995500 /* include/PsTime.h */,
FFFD939955687f8e93995568 /* include/PsUserAllocated.h */,
FFFD939955d07f8e939955d0 /* include/PsUtilities.h */,
FFFD939956387f8e93995638 /* include/PsVecMath.h */,
FFFD939956a07f8e939956a0 /* include/PsVecMathAoSScalar.h */,
FFFD939957087f8e93995708 /* include/PsVecMathAoSScalarInline.h */,
FFFD939957707f8e93995770 /* include/PsVecMathSSE.h */,
FFFD939957d87f8e939957d8 /* include/PsVecMathUtilities.h */,
FFFD939958407f8e93995840 /* include/PsVecQuat.h */,
FFFD939958a87f8e939958a8 /* include/PsVecTransform.h */,
FFFD939959107f8e93995910 /* include/unix/PsUnixAoS.h */,
FFFD939959787f8e93995978 /* include/unix/PsUnixFPU.h */,
FFFD939959e07f8e939959e0 /* include/unix/PsUnixInlineAoS.h */,
FFFD93995a487f8e93995a48 /* include/unix/PsUnixIntrinsics.h */,
FFFD93995ab07f8e93995ab0 /* include/unix/PsUnixTrigConstants.h */,
FFFD93995b187f8e93995b18 /* src/PsAllocator.cpp */,
FFFD93995b807f8e93995b80 /* src/PsAssert.cpp */,
FFFD93995be87f8e93995be8 /* src/PsFoundation.cpp */,
FFFD93995c507f8e93995c50 /* src/PsMathUtils.cpp */,
FFFD93995cb87f8e93995cb8 /* src/PsString.cpp */,
FFFD93995d207f8e93995d20 /* src/PsTempAllocator.cpp */,
FFFD93995d887f8e93995d88 /* src/PsUtilities.cpp */,
FFFD93995df07f8e93995df0 /* src/unix/PsUnixAtomic.cpp */,
FFFD93995e587f8e93995e58 /* src/unix/PsUnixCpu.cpp */,
FFFD93995ec07f8e93995ec0 /* src/unix/PsUnixFPU.cpp */,
FFFD93995f287f8e93995f28 /* src/unix/PsUnixMutex.cpp */,
FFFD93995f907f8e93995f90 /* src/unix/PsUnixPrintString.cpp */,
FFFD93995ff87f8e93995ff8 /* src/unix/PsUnixSList.cpp */,
FFFD939960607f8e93996060 /* src/unix/PsUnixSocket.cpp */,
FFFD939960c87f8e939960c8 /* src/unix/PsUnixSync.cpp */,
FFFD939961307f8e93996130 /* src/unix/PsUnixThread.cpp */,
FFFD939961987f8e93996198 /* src/unix/PsUnixTime.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFB9440c6c07f8e9440c6c0 /* PxPvdSDK */ = {
isa = PBXGroup;
children = (
FFFB944097607f8e94409760 /* include */,
FFFB944097887f8e94409788 /* src */,
);
name = "PxPvdSDK";
sourceTree = "<group>";
};
FFFB944097607f8e94409760 /* include */ = {
isa = PBXGroup;
children = (
FFFD94408ce07f8e94408ce0 /* PxPvd.h */,
FFFD94408d487f8e94408d48 /* PxPvdTransport.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB944097887f8e94409788 /* src */ = {
isa = PBXGroup;
children = (
FFFD9502e6007f8e9502e600 /* include/PsPvd.h */,
FFFD9502e6687f8e9502e668 /* include/PxProfileAllocatorWrapper.h */,
FFFD9502e6d07f8e9502e6d0 /* include/PxPvdClient.h */,
FFFD9502e7387f8e9502e738 /* include/PxPvdDataStream.h */,
FFFD9502e7a07f8e9502e7a0 /* include/PxPvdDataStreamHelpers.h */,
FFFD9502e8087f8e9502e808 /* include/PxPvdErrorCodes.h */,
FFFD9502e8707f8e9502e870 /* include/PxPvdObjectModelBaseTypes.h */,
FFFD9502e8d87f8e9502e8d8 /* include/PxPvdRenderBuffer.h */,
FFFD9502e9407f8e9502e940 /* include/PxPvdUserRenderer.h */,
FFFD9502e9a87f8e9502e9a8 /* src/PxProfileEventImpl.cpp */,
FFFD9502ea107f8e9502ea10 /* src/PxPvd.cpp */,
FFFD9502ea787f8e9502ea78 /* src/PxPvdDataStream.cpp */,
FFFD9502eae07f8e9502eae0 /* src/PxPvdDefaultFileTransport.cpp */,
FFFD9502eb487f8e9502eb48 /* src/PxPvdDefaultSocketTransport.cpp */,
FFFD9502ebb07f8e9502ebb0 /* src/PxPvdImpl.cpp */,
FFFD9502ec187f8e9502ec18 /* src/PxPvdMemClient.cpp */,
FFFD9502ec807f8e9502ec80 /* src/PxPvdObjectModelMetaData.cpp */,
FFFD9502ece87f8e9502ece8 /* src/PxPvdObjectRegistrar.cpp */,
FFFD9502ed507f8e9502ed50 /* src/PxPvdProfileZoneClient.cpp */,
FFFD9502edb87f8e9502edb8 /* src/PxPvdUserRenderer.cpp */,
FFFD9502ee207f8e9502ee20 /* src/PxProfileBase.h */,
FFFD9502ee887f8e9502ee88 /* src/PxProfileCompileTimeEventFilter.h */,
FFFD9502eef07f8e9502eef0 /* src/PxProfileContextProvider.h */,
FFFD9502ef587f8e9502ef58 /* src/PxProfileContextProviderImpl.h */,
FFFD9502efc07f8e9502efc0 /* src/PxProfileDataBuffer.h */,
FFFD9502f0287f8e9502f028 /* src/PxProfileDataParsing.h */,
FFFD9502f0907f8e9502f090 /* src/PxProfileEventBuffer.h */,
FFFD9502f0f87f8e9502f0f8 /* src/PxProfileEventBufferAtomic.h */,
FFFD9502f1607f8e9502f160 /* src/PxProfileEventBufferClient.h */,
FFFD9502f1c87f8e9502f1c8 /* src/PxProfileEventBufferClientManager.h */,
FFFD9502f2307f8e9502f230 /* src/PxProfileEventFilter.h */,
FFFD9502f2987f8e9502f298 /* src/PxProfileEventHandler.h */,
FFFD9502f3007f8e9502f300 /* src/PxProfileEventId.h */,
FFFD9502f3687f8e9502f368 /* src/PxProfileEventMutex.h */,
FFFD9502f3d07f8e9502f3d0 /* src/PxProfileEventNames.h */,
FFFD9502f4387f8e9502f438 /* src/PxProfileEventParser.h */,
FFFD9502f4a07f8e9502f4a0 /* src/PxProfileEventSender.h */,
FFFD9502f5087f8e9502f508 /* src/PxProfileEventSerialization.h */,
FFFD9502f5707f8e9502f570 /* src/PxProfileEventSystem.h */,
FFFD9502f5d87f8e9502f5d8 /* src/PxProfileEvents.h */,
FFFD9502f6407f8e9502f640 /* src/PxProfileMemory.h */,
FFFD9502f6a87f8e9502f6a8 /* src/PxProfileMemoryBuffer.h */,
FFFD9502f7107f8e9502f710 /* src/PxProfileMemoryEventBuffer.h */,
FFFD9502f7787f8e9502f778 /* src/PxProfileMemoryEventParser.h */,
FFFD9502f7e07f8e9502f7e0 /* src/PxProfileMemoryEventRecorder.h */,
FFFD9502f8487f8e9502f848 /* src/PxProfileMemoryEventReflexiveWriter.h */,
FFFD9502f8b07f8e9502f8b0 /* src/PxProfileMemoryEventSummarizer.h */,
FFFD9502f9187f8e9502f918 /* src/PxProfileMemoryEventTypes.h */,
FFFD9502f9807f8e9502f980 /* src/PxProfileMemoryEvents.h */,
FFFD9502f9e87f8e9502f9e8 /* src/PxProfileScopedEvent.h */,
FFFD9502fa507f8e9502fa50 /* src/PxProfileScopedMutexLock.h */,
FFFD9502fab87f8e9502fab8 /* src/PxProfileZone.h */,
FFFD9502fb207f8e9502fb20 /* src/PxProfileZoneImpl.h */,
FFFD9502fb887f8e9502fb88 /* src/PxProfileZoneManager.h */,
FFFD9502fbf07f8e9502fbf0 /* src/PxProfileZoneManagerImpl.h */,
FFFD9502fc587f8e9502fc58 /* src/PxPvdBits.h */,
FFFD9502fcc07f8e9502fcc0 /* src/PxPvdByteStreams.h */,
FFFD9502fd287f8e9502fd28 /* src/PxPvdCommStreamEventSink.h */,
FFFD9502fd907f8e9502fd90 /* src/PxPvdCommStreamEvents.h */,
FFFD9502fdf87f8e9502fdf8 /* src/PxPvdCommStreamSDKEventTypes.h */,
FFFD9502fe607f8e9502fe60 /* src/PxPvdCommStreamTypes.h */,
FFFD9502fec87f8e9502fec8 /* src/PxPvdDefaultFileTransport.h */,
FFFD9502ff307f8e9502ff30 /* src/PxPvdDefaultSocketTransport.h */,
FFFD9502ff987f8e9502ff98 /* src/PxPvdFoundation.h */,
FFFD950300007f8e95030000 /* src/PxPvdImpl.h */,
FFFD950300687f8e95030068 /* src/PxPvdInternalByteStreams.h */,
FFFD950300d07f8e950300d0 /* src/PxPvdMarshalling.h */,
FFFD950301387f8e95030138 /* src/PxPvdMemClient.h */,
FFFD950301a07f8e950301a0 /* src/PxPvdObjectModel.h */,
FFFD950302087f8e95030208 /* src/PxPvdObjectModelInternalTypeDefs.h */,
FFFD950302707f8e95030270 /* src/PxPvdObjectModelInternalTypes.h */,
FFFD950302d87f8e950302d8 /* src/PxPvdObjectModelMetaData.h */,
FFFD950303407f8e95030340 /* src/PxPvdObjectRegistrar.h */,
FFFD950303a87f8e950303a8 /* src/PxPvdProfileZoneClient.h */,
FFFD950304107f8e95030410 /* src/PxPvdUserRenderImpl.h */,
FFFD950304787f8e95030478 /* src/PxPvdUserRenderTypes.h */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFB94626f907f8e94626f90 /* LowLevel */ = {
isa = PBXGroup;
children = (
FFFB9462ba507f8e9462ba50 /* API Source */,
FFFB9462ba787f8e9462ba78 /* API Includes */,
FFFB9462baa07f8e9462baa0 /* Software Source */,
FFFB9462bac87f8e9462bac8 /* Software Includes */,
FFFB9462baf07f8e9462baf0 /* Common Source */,
FFFB9462bb187f8e9462bb18 /* Common Includes */,
);
name = "LowLevel";
sourceTree = "<group>";
};
FFFB9462ba507f8e9462ba50 /* API Source */ = {
isa = PBXGroup;
children = (
FFFD9462b9a07f8e9462b9a0 /* px_globals.cpp */,
);
name = "API Source";
sourceTree = SOURCE_ROOT;
};
FFFB9462ba787f8e9462ba78 /* API Includes */ = {
isa = PBXGroup;
children = (
FFFD946233907f8e94623390 /* PxsMaterialCore.h */,
FFFD946233f87f8e946233f8 /* PxsMaterialManager.h */,
FFFD946234607f8e94623460 /* PxvConfig.h */,
FFFD946234c87f8e946234c8 /* PxvContext.h */,
FFFD946235307f8e94623530 /* PxvDynamics.h */,
FFFD946235987f8e94623598 /* PxvGeometry.h */,
FFFD946236007f8e94623600 /* PxvGlobals.h */,
FFFD946236687f8e94623668 /* PxvManager.h */,
FFFD946236d07f8e946236d0 /* PxvSimStats.h */,
);
name = "API Includes";
sourceTree = SOURCE_ROOT;
};
FFFB9462baa07f8e9462baa0 /* Software Source */ = {
isa = PBXGroup;
children = (
FFFD946349a07f8e946349a0 /* PxsCCD.cpp */,
FFFD94634a087f8e94634a08 /* PxsContactManager.cpp */,
FFFD94634a707f8e94634a70 /* PxsContext.cpp */,
FFFD94634ad87f8e94634ad8 /* PxsDefaultMemoryManager.cpp */,
FFFD94634b407f8e94634b40 /* PxsIslandSim.cpp */,
FFFD94634ba87f8e94634ba8 /* PxsMaterialCombiner.cpp */,
FFFD94634c107f8e94634c10 /* PxsNphaseImplementationContext.cpp */,
FFFD94634c787f8e94634c78 /* PxsSimpleIslandManager.cpp */,
);
name = "Software Source";
sourceTree = SOURCE_ROOT;
};
FFFB9462bac87f8e9462bac8 /* Software Includes */ = {
isa = PBXGroup;
children = (
FFFD9502c4007f8e9502c400 /* PxsBodySim.h */,
FFFD9502c4687f8e9502c468 /* PxsCCD.h */,
FFFD9502c4d07f8e9502c4d0 /* PxsContactManager.h */,
FFFD9502c5387f8e9502c538 /* PxsContactManagerState.h */,
FFFD9502c5a07f8e9502c5a0 /* PxsContext.h */,
FFFD9502c6087f8e9502c608 /* PxsDefaultMemoryManager.h */,
FFFD9502c6707f8e9502c670 /* PxsHeapMemoryAllocator.h */,
FFFD9502c6d87f8e9502c6d8 /* PxsIncrementalConstraintPartitioning.h */,
FFFD9502c7407f8e9502c740 /* PxsIslandManagerTypes.h */,
FFFD9502c7a87f8e9502c7a8 /* PxsIslandSim.h */,
FFFD9502c8107f8e9502c810 /* PxsKernelWrangler.h */,
FFFD9502c8787f8e9502c878 /* PxsMaterialCombiner.h */,
FFFD9502c8e07f8e9502c8e0 /* PxsMemoryManager.h */,
FFFD9502c9487f8e9502c948 /* PxsNphaseImplementationContext.h */,
FFFD9502c9b07f8e9502c9b0 /* PxsRigidBody.h */,
FFFD9502ca187f8e9502ca18 /* PxsShapeSim.h */,
FFFD9502ca807f8e9502ca80 /* PxsSimpleIslandManager.h */,
FFFD9502cae87f8e9502cae8 /* PxsSimulationController.h */,
FFFD9502cb507f8e9502cb50 /* PxsTransformCache.h */,
FFFD9502cbb87f8e9502cbb8 /* PxvNphaseImplementationContext.h */,
);
name = "Software Includes";
sourceTree = SOURCE_ROOT;
};
FFFB9462baf07f8e9462baf0 /* Common Source */ = {
isa = PBXGroup;
children = (
FFFD950356007f8e95035600 /* collision/PxcContact.cpp */,
FFFD950356687f8e95035668 /* pipeline/PxcContactCache.cpp */,
FFFD950356d07f8e950356d0 /* pipeline/PxcContactMethodImpl.cpp */,
FFFD950357387f8e95035738 /* pipeline/PxcMaterialHeightField.cpp */,
FFFD950357a07f8e950357a0 /* pipeline/PxcMaterialMesh.cpp */,
FFFD950358087f8e95035808 /* pipeline/PxcMaterialMethodImpl.cpp */,
FFFD950358707f8e95035870 /* pipeline/PxcMaterialShape.cpp */,
FFFD950358d87f8e950358d8 /* pipeline/PxcNpBatch.cpp */,
FFFD950359407f8e95035940 /* pipeline/PxcNpCacheStreamPair.cpp */,
FFFD950359a87f8e950359a8 /* pipeline/PxcNpContactPrepShared.cpp */,
FFFD95035a107f8e95035a10 /* pipeline/PxcNpMemBlockPool.cpp */,
FFFD95035a787f8e95035a78 /* pipeline/PxcNpThreadContext.cpp */,
);
name = "Common Source";
sourceTree = SOURCE_ROOT;
};
FFFB9462bb187f8e9462bb18 /* Common Includes */ = {
isa = PBXGroup;
children = (
FFFD95035e007f8e95035e00 /* collision/PxcContactMethodImpl.h */,
FFFD95035e687f8e95035e68 /* pipeline/PxcCCDStateStreamPair.h */,
FFFD95035ed07f8e95035ed0 /* pipeline/PxcConstraintBlockStream.h */,
FFFD95035f387f8e95035f38 /* pipeline/PxcContactCache.h */,
FFFD95035fa07f8e95035fa0 /* pipeline/PxcMaterialMethodImpl.h */,
FFFD950360087f8e95036008 /* pipeline/PxcNpBatch.h */,
FFFD950360707f8e95036070 /* pipeline/PxcNpCache.h */,
FFFD950360d87f8e950360d8 /* pipeline/PxcNpCacheStreamPair.h */,
FFFD950361407f8e95036140 /* pipeline/PxcNpContactPrepShared.h */,
FFFD950361a87f8e950361a8 /* pipeline/PxcNpMemBlockPool.h */,
FFFD950362107f8e95036210 /* pipeline/PxcNpThreadContext.h */,
FFFD950362787f8e95036278 /* pipeline/PxcNpWorkUnit.h */,
FFFD950362e07f8e950362e0 /* pipeline/PxcRigidBody.h */,
FFFD950363487f8e95036348 /* utils/PxcScratchAllocator.h */,
FFFD950363b07f8e950363b0 /* utils/PxcThreadCoherentCache.h */,
);
name = "Common Includes";
sourceTree = SOURCE_ROOT;
};
FFFB940ccda07f8e940ccda0 /* LowLevelAABB */ = {
isa = PBXGroup;
children = (
FFFB940bc8107f8e940bc810 /* include */,
FFFB940bc8387f8e940bc838 /* src */,
);
name = "LowLevelAABB";
sourceTree = "<group>";
};
FFFB940bc8107f8e940bc810 /* include */ = {
isa = PBXGroup;
children = (
FFFD940bcf907f8e940bcf90 /* BpAABBManagerTasks.h */,
FFFD940bcff87f8e940bcff8 /* BpBroadPhase.h */,
FFFD940bd0607f8e940bd060 /* BpBroadPhaseUpdate.h */,
FFFD940bd0c87f8e940bd0c8 /* BpSimpleAABBManager.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB940bc8387f8e940bc838 /* src */ = {
isa = PBXGroup;
children = (
FFFD94818c007f8e94818c00 /* BpBroadPhaseMBP.h */,
FFFD94818c687f8e94818c68 /* BpBroadPhaseMBPCommon.h */,
FFFD94818cd07f8e94818cd0 /* BpBroadPhaseSap.h */,
FFFD94818d387f8e94818d38 /* BpBroadPhaseSapAux.h */,
FFFD94818da07f8e94818da0 /* BpMBPTasks.h */,
FFFD94818e087f8e94818e08 /* BpSAPTasks.h */,
FFFD94818e707f8e94818e70 /* BpBroadPhase.cpp */,
FFFD94818ed87f8e94818ed8 /* BpBroadPhaseMBP.cpp */,
FFFD94818f407f8e94818f40 /* BpBroadPhaseSap.cpp */,
FFFD94818fa87f8e94818fa8 /* BpBroadPhaseSapAux.cpp */,
FFFD948190107f8e94819010 /* BpMBPTasks.cpp */,
FFFD948190787f8e94819078 /* BpSAPTasks.cpp */,
FFFD948190e07f8e948190e0 /* BpSimpleAABBManager.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFB941450a07f8e941450a0 /* LowLevelDynamics */ = {
isa = PBXGroup;
children = (
FFFB941354f07f8e941354f0 /* Dynamics Source */,
FFFB941355187f8e94135518 /* Dynamics Includes */,
FFFB941355407f8e94135540 /* Dynamics Internal Includes */,
);
name = "LowLevelDynamics";
sourceTree = "<group>";
};
FFFB941354f07f8e941354f0 /* Dynamics Source */ = {
isa = PBXGroup;
children = (
FFFD939b22007f8e939b2200 /* DyArticulation.cpp */,
FFFD939b22687f8e939b2268 /* DyArticulationContactPrep.cpp */,
FFFD939b22d07f8e939b22d0 /* DyArticulationContactPrepPF.cpp */,
FFFD939b23387f8e939b2338 /* DyArticulationHelper.cpp */,
FFFD939b23a07f8e939b23a0 /* DyArticulationSIMD.cpp */,
FFFD939b24087f8e939b2408 /* DyArticulationScalar.cpp */,
FFFD939b24707f8e939b2470 /* DyConstraintPartition.cpp */,
FFFD939b24d87f8e939b24d8 /* DyConstraintSetup.cpp */,
FFFD939b25407f8e939b2540 /* DyConstraintSetupBlock.cpp */,
FFFD939b25a87f8e939b25a8 /* DyContactPrep.cpp */,
FFFD939b26107f8e939b2610 /* DyContactPrep4.cpp */,
FFFD939b26787f8e939b2678 /* DyContactPrep4PF.cpp */,
FFFD939b26e07f8e939b26e0 /* DyContactPrepPF.cpp */,
FFFD939b27487f8e939b2748 /* DyDynamics.cpp */,
FFFD939b27b07f8e939b27b0 /* DyFrictionCorrelation.cpp */,
FFFD939b28187f8e939b2818 /* DyRigidBodyToSolverBody.cpp */,
FFFD939b28807f8e939b2880 /* DySolverConstraints.cpp */,
FFFD939b28e87f8e939b28e8 /* DySolverConstraintsBlock.cpp */,
FFFD939b29507f8e939b2950 /* DySolverControl.cpp */,
FFFD939b29b87f8e939b29b8 /* DySolverControlPF.cpp */,
FFFD939b2a207f8e939b2a20 /* DySolverPFConstraints.cpp */,
FFFD939b2a887f8e939b2a88 /* DySolverPFConstraintsBlock.cpp */,
FFFD939b2af07f8e939b2af0 /* DyThreadContext.cpp */,
FFFD939b2b587f8e939b2b58 /* DyThresholdTable.cpp */,
);
name = "Dynamics Source";
sourceTree = SOURCE_ROOT;
};
FFFB941355187f8e94135518 /* Dynamics Includes */ = {
isa = PBXGroup;
children = (
FFFD94136a207f8e94136a20 /* DyArticulation.h */,
FFFD94136a887f8e94136a88 /* DyConstraint.h */,
FFFD94136af07f8e94136af0 /* DyConstraintWriteBack.h */,
FFFD94136b587f8e94136b58 /* DyContext.h */,
FFFD94136bc07f8e94136bc0 /* DySleepingConfigulation.h */,
FFFD94136c287f8e94136c28 /* DyThresholdTable.h */,
);
name = "Dynamics Includes";
sourceTree = SOURCE_ROOT;
};
FFFB941355407f8e94135540 /* Dynamics Internal Includes */ = {
isa = PBXGroup;
children = (
FFFD939b34007f8e939b3400 /* DyArticulationContactPrep.h */,
FFFD939b34687f8e939b3468 /* DyArticulationFnsDebug.h */,
FFFD939b34d07f8e939b34d0 /* DyArticulationFnsScalar.h */,
FFFD939b35387f8e939b3538 /* DyArticulationFnsSimd.h */,
FFFD939b35a07f8e939b35a0 /* DyArticulationHelper.h */,
FFFD939b36087f8e939b3608 /* DyArticulationPImpl.h */,
FFFD939b36707f8e939b3670 /* DyArticulationReference.h */,
FFFD939b36d87f8e939b36d8 /* DyArticulationScalar.h */,
FFFD939b37407f8e939b3740 /* DyArticulationUtils.h */,
FFFD939b37a87f8e939b37a8 /* DyBodyCoreIntegrator.h */,
FFFD939b38107f8e939b3810 /* DyConstraintPartition.h */,
FFFD939b38787f8e939b3878 /* DyConstraintPrep.h */,
FFFD939b38e07f8e939b38e0 /* DyContactPrep.h */,
FFFD939b39487f8e939b3948 /* DyContactPrepShared.h */,
FFFD939b39b07f8e939b39b0 /* DyContactReduction.h */,
FFFD939b3a187f8e939b3a18 /* DyCorrelationBuffer.h */,
FFFD939b3a807f8e939b3a80 /* DyDynamics.h */,
FFFD939b3ae87f8e939b3ae8 /* DyFrictionPatch.h */,
FFFD939b3b507f8e939b3b50 /* DyFrictionPatchStreamPair.h */,
FFFD939b3bb87f8e939b3bb8 /* DySolverBody.h */,
FFFD939b3c207f8e939b3c20 /* DySolverConstraint1D.h */,
FFFD939b3c887f8e939b3c88 /* DySolverConstraint1D4.h */,
FFFD939b3cf07f8e939b3cf0 /* DySolverConstraintDesc.h */,
FFFD939b3d587f8e939b3d58 /* DySolverConstraintExtShared.h */,
FFFD939b3dc07f8e939b3dc0 /* DySolverConstraintTypes.h */,
FFFD939b3e287f8e939b3e28 /* DySolverConstraintsShared.h */,
FFFD939b3e907f8e939b3e90 /* DySolverContact.h */,
FFFD939b3ef87f8e939b3ef8 /* DySolverContact4.h */,
FFFD939b3f607f8e939b3f60 /* DySolverContactPF.h */,
FFFD939b3fc87f8e939b3fc8 /* DySolverContactPF4.h */,
FFFD939b40307f8e939b4030 /* DySolverContext.h */,
FFFD939b40987f8e939b4098 /* DySolverControl.h */,
FFFD939b41007f8e939b4100 /* DySolverControlPF.h */,
FFFD939b41687f8e939b4168 /* DySolverCore.h */,
FFFD939b41d07f8e939b41d0 /* DySolverExt.h */,
FFFD939b42387f8e939b4238 /* DySpatial.h */,
FFFD939b42a07f8e939b42a0 /* DyThreadContext.h */,
);
name = "Dynamics Internal Includes";
sourceTree = SOURCE_ROOT;
};
FFFB941173807f8e94117380 /* LowLevelCloth */ = {
isa = PBXGroup;
children = (
FFFB9411fc307f8e9411fc30 /* include */,
FFFB9411fc587f8e9411fc58 /* src */,
);
name = "LowLevelCloth";
sourceTree = "<group>";
};
FFFB9411fc307f8e9411fc30 /* include */ = {
isa = PBXGroup;
children = (
FFFD941203707f8e94120370 /* Cloth.h */,
FFFD941203d87f8e941203d8 /* Fabric.h */,
FFFD941204407f8e94120440 /* Factory.h */,
FFFD941204a87f8e941204a8 /* PhaseConfig.h */,
FFFD941205107f8e94120510 /* Range.h */,
FFFD941205787f8e94120578 /* Solver.h */,
FFFD941205e07f8e941205e0 /* Types.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB9411fc587f8e9411fc58 /* src */ = {
isa = PBXGroup;
children = (
FFFD939bdc007f8e939bdc00 /* Allocator.h */,
FFFD939bdc687f8e939bdc68 /* Array.h */,
FFFD939bdcd07f8e939bdcd0 /* BoundingBox.h */,
FFFD939bdd387f8e939bdd38 /* ClothBase.h */,
FFFD939bdda07f8e939bdda0 /* ClothImpl.h */,
FFFD939bde087f8e939bde08 /* IndexPair.h */,
FFFD939bde707f8e939bde70 /* IterationState.h */,
FFFD939bded87f8e939bded8 /* MovingAverage.h */,
FFFD939bdf407f8e939bdf40 /* PointInterpolator.h */,
FFFD939bdfa87f8e939bdfa8 /* Simd.h */,
FFFD939be0107f8e939be010 /* Simd4f.h */,
FFFD939be0787f8e939be078 /* Simd4i.h */,
FFFD939be0e07f8e939be0e0 /* SimdTypes.h */,
FFFD939be1487f8e939be148 /* StackAllocator.h */,
FFFD939be1b07f8e939be1b0 /* SwCloth.h */,
FFFD939be2187f8e939be218 /* SwClothData.h */,
FFFD939be2807f8e939be280 /* SwCollision.h */,
FFFD939be2e87f8e939be2e8 /* SwCollisionHelpers.h */,
FFFD939be3507f8e939be350 /* SwFabric.h */,
FFFD939be3b87f8e939be3b8 /* SwFactory.h */,
FFFD939be4207f8e939be420 /* SwInterCollision.h */,
FFFD939be4887f8e939be488 /* SwSelfCollision.h */,
FFFD939be4f07f8e939be4f0 /* SwSolver.h */,
FFFD939be5587f8e939be558 /* SwSolverKernel.h */,
FFFD939be5c07f8e939be5c0 /* TripletScheduler.h */,
FFFD939be6287f8e939be628 /* Vec4T.h */,
FFFD939be6907f8e939be690 /* Allocator.cpp */,
FFFD939be6f87f8e939be6f8 /* Factory.cpp */,
FFFD939be7607f8e939be760 /* PhaseConfig.cpp */,
FFFD939be7c87f8e939be7c8 /* SwCloth.cpp */,
FFFD939be8307f8e939be830 /* SwClothData.cpp */,
FFFD939be8987f8e939be898 /* SwCollision.cpp */,
FFFD939be9007f8e939be900 /* SwFabric.cpp */,
FFFD939be9687f8e939be968 /* SwFactory.cpp */,
FFFD939be9d07f8e939be9d0 /* SwInterCollision.cpp */,
FFFD939bea387f8e939bea38 /* SwSelfCollision.cpp */,
FFFD939beaa07f8e939beaa0 /* SwSolver.cpp */,
FFFD939beb087f8e939beb08 /* SwSolverKernel.cpp */,
FFFD939beb707f8e939beb70 /* TripletScheduler.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFB940bb1407f8e940bb140 /* LowLevelParticles */ = {
isa = PBXGroup;
children = (
FFFB9405beb07f8e9405beb0 /* include */,
FFFB9405bed87f8e9405bed8 /* src */,
);
name = "LowLevelParticles";
sourceTree = "<group>";
};
FFFB9405beb07f8e9405beb0 /* include */ = {
isa = PBXGroup;
children = (
FFFD94810a007f8e94810a00 /* PtBodyTransformVault.h */,
FFFD94810a687f8e94810a68 /* PtContext.h */,
FFFD94810ad07f8e94810ad0 /* PtGridCellVector.h */,
FFFD94810b387f8e94810b38 /* PtParticle.h */,
FFFD94810ba07f8e94810ba0 /* PtParticleContactManagerStream.h */,
FFFD94810c087f8e94810c08 /* PtParticleData.h */,
FFFD94810c707f8e94810c70 /* PtParticleShape.h */,
FFFD94810cd87f8e94810cd8 /* PtParticleSystemCore.h */,
FFFD94810d407f8e94810d40 /* PtParticleSystemFlags.h */,
FFFD94810da87f8e94810da8 /* PtParticleSystemSim.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB9405bed87f8e9405bed8 /* src */ = {
isa = PBXGroup;
children = (
FFFD94821c007f8e94821c00 /* PtBatcher.h */,
FFFD94821c687f8e94821c68 /* PtCollision.h */,
FFFD94821cd07f8e94821cd0 /* PtCollisionData.h */,
FFFD94821d387f8e94821d38 /* PtCollisionHelper.h */,
FFFD94821da07f8e94821da0 /* PtCollisionMethods.h */,
FFFD94821e087f8e94821e08 /* PtCollisionParameters.h */,
FFFD94821e707f8e94821e70 /* PtConfig.h */,
FFFD94821ed87f8e94821ed8 /* PtConstants.h */,
FFFD94821f407f8e94821f40 /* PtContextCpu.h */,
FFFD94821fa87f8e94821fa8 /* PtDynamicHelper.h */,
FFFD948220107f8e94822010 /* PtDynamics.h */,
FFFD948220787f8e94822078 /* PtDynamicsKernels.h */,
FFFD948220e07f8e948220e0 /* PtDynamicsParameters.h */,
FFFD948221487f8e94822148 /* PtDynamicsTempBuffers.h */,
FFFD948221b07f8e948221b0 /* PtHeightFieldAabbTest.h */,
FFFD948222187f8e94822218 /* PtPacketSections.h */,
FFFD948222807f8e94822280 /* PtParticleCell.h */,
FFFD948222e87f8e948222e8 /* PtParticleOpcodeCache.h */,
FFFD948223507f8e94822350 /* PtParticleShapeCpu.h */,
FFFD948223b87f8e948223b8 /* PtParticleSystemSimCpu.h */,
FFFD948224207f8e94822420 /* PtSpatialHash.h */,
FFFD948224887f8e94822488 /* PtSpatialHashHelper.h */,
FFFD948224f07f8e948224f0 /* PtTwoWayData.h */,
FFFD948225587f8e94822558 /* PtBatcher.cpp */,
FFFD948225c07f8e948225c0 /* PtBodyTransformVault.cpp */,
FFFD948226287f8e94822628 /* PtCollision.cpp */,
FFFD948226907f8e94822690 /* PtCollisionBox.cpp */,
FFFD948226f87f8e948226f8 /* PtCollisionCapsule.cpp */,
FFFD948227607f8e94822760 /* PtCollisionConvex.cpp */,
FFFD948227c87f8e948227c8 /* PtCollisionMesh.cpp */,
FFFD948228307f8e94822830 /* PtCollisionPlane.cpp */,
FFFD948228987f8e94822898 /* PtCollisionSphere.cpp */,
FFFD948229007f8e94822900 /* PtContextCpu.cpp */,
FFFD948229687f8e94822968 /* PtDynamics.cpp */,
FFFD948229d07f8e948229d0 /* PtParticleData.cpp */,
FFFD94822a387f8e94822a38 /* PtParticleShapeCpu.cpp */,
FFFD94822aa07f8e94822aa0 /* PtParticleSystemSimCpu.cpp */,
FFFD94822b087f8e94822b08 /* PtSpatialHash.cpp */,
FFFD94822b707f8e94822b70 /* PtSpatialLocalHash.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFB940815207f8e94081520 /* PxTask */ = {
isa = PBXGroup;
children = (
FFFB94081a807f8e94081a80 /* include */,
FFFB94081aa87f8e94081aa8 /* src */,
);
name = "PxTask";
sourceTree = "<group>";
};
FFFB94081a807f8e94081a80 /* include */ = {
isa = PBXGroup;
children = (
FFFD9407fb607f8e9407fb60 /* PxCpuDispatcher.h */,
FFFD9407fbc87f8e9407fbc8 /* PxGpuDispatcher.h */,
FFFD9407fc307f8e9407fc30 /* PxGpuTask.h */,
FFFD9407fc987f8e9407fc98 /* PxTask.h */,
FFFD9407fd007f8e9407fd00 /* PxTaskDefine.h */,
FFFD9407fd687f8e9407fd68 /* PxTaskManager.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB94081aa87f8e94081aa8 /* src */ = {
isa = PBXGroup;
children = (
FFFD940827607f8e94082760 /* src/TaskManager.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
FFFB95d0cbc07f8e95d0cbc0 /* PsFastXml */ = {
isa = PBXGroup;
children = (
FFFB95cf1af07f8e95cf1af0 /* include */,
FFFB95cf1b187f8e95cf1b18 /* src */,
);
name = "PsFastXml";
sourceTree = "<group>";
};
FFFB95cf1af07f8e95cf1af0 /* include */ = {
isa = PBXGroup;
children = (
FFFD95cf1c807f8e95cf1c80 /* PsFastXml.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
FFFB95cf1b187f8e95cf1b18 /* src */ = {
isa = PBXGroup;
children = (
FFFD95cf1d807f8e95cf1d80 /* PsFastXml.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
FFFA95cf0bc07f8e95cf0bc0 /* PhysX */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF695cf0bc07f8e95cf0bc0 /* Build configuration list for PBXNativeTarget "PhysX" */;
buildPhases = (
FFF295cf0bc07f8e95cf0bc0,
FFF895cf0bc07f8e95cf0bc0,
FFFC95cf0bc07f8e95cf0bc0,
);
buildRules = (
);
dependencies = (
FFF495d225b07f8e95d225b0, /* LowLevel */
FFF495d1f6907f8e95d1f690, /* LowLevelAABB */
FFF495d1f7507f8e95d1f750, /* LowLevelCloth */
FFF495d1f6f07f8e95d1f6f0, /* LowLevelDynamics */
FFF495d22e107f8e95d22e10, /* LowLevelParticles */
FFF495d225507f8e95d22550, /* PhysXCommon */
FFF49405c1707f8e9405c170, /* PxFoundation */
FFF495cf08107f8e95cf0810, /* PxPvdSDK */
FFF495d1f1e07f8e95d1f1e0, /* PxTask */
FFF495d22e707f8e95d22e70, /* SceneQuery */
FFF495d22ed07f8e95d22ed0, /* SimulationController */
);
name = "PhysX";
productName = "PhysX";
productReference = FFFD95cf0bc07f8e95cf0bc0 /* PhysX */;
productType = "com.apple.product-type.library.static";
};
FFFA95d1f3407f8e95d1f340 /* PhysXCharacterKinematic */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF695d1f3407f8e95d1f340 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */;
buildPhases = (
FFF295d1f3407f8e95d1f340,
FFF895d1f3407f8e95d1f340,
FFFC95d1f3407f8e95d1f340,
);
buildRules = (
);
dependencies = (
FFF495d206907f8e95d20690, /* PhysXCommon */
FFF495d25a707f8e95d25a70, /* PhysXExtensions */
FFF495d24c407f8e95d24c40, /* PxFoundation */
);
name = "PhysXCharacterKinematic";
productName = "PhysXCharacterKinematic";
productReference = FFFD95d1f3407f8e95d1f340 /* PhysXCharacterKinematic */;
productType = "com.apple.product-type.library.static";
};
FFFA95d207307f8e95d20730 /* PhysXVehicle */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF695d207307f8e95d20730 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */;
buildPhases = (
FFF295d207307f8e95d20730,
FFF895d207307f8e95d20730,
FFFC95d207307f8e95d20730,
);
buildRules = (
);
dependencies = (
);
name = "PhysXVehicle";
productName = "PhysXVehicle";
productReference = FFFD95d207307f8e95d20730 /* PhysXVehicle */;
productType = "com.apple.product-type.library.static";
};
FFFA95d305e07f8e95d305e0 /* PhysXExtensions */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF695d305e07f8e95d305e0 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */;
buildPhases = (
FFF295d305e07f8e95d305e0,
FFF895d305e07f8e95d305e0,
FFFC95d305e07f8e95d305e0,
);
buildRules = (
);
dependencies = (
FFF495d2fce07f8e95d2fce0, /* PsFastXml */
);
name = "PhysXExtensions";
productName = "PhysXExtensions";
productReference = FFFD95d305e07f8e95d305e0 /* PhysXExtensions */;
productType = "com.apple.product-type.library.static";
};
FFFA95d430907f8e95d43090 /* SceneQuery */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF695d430907f8e95d43090 /* Build configuration list for PBXNativeTarget "SceneQuery" */;
buildPhases = (
FFF295d430907f8e95d43090,
FFF895d430907f8e95d43090,
FFFC95d430907f8e95d43090,
);
buildRules = (
);
dependencies = (
);
name = "SceneQuery";
productName = "SceneQuery";
productReference = FFFD95d430907f8e95d43090 /* SceneQuery */;
productType = "com.apple.product-type.library.static";
};
FFFA95d477007f8e95d47700 /* SimulationController */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF695d477007f8e95d47700 /* Build configuration list for PBXNativeTarget "SimulationController" */;
buildPhases = (
FFF295d477007f8e95d47700,
FFF895d477007f8e95d47700,
FFFC95d477007f8e95d47700,
);
buildRules = (
);
dependencies = (
);
name = "SimulationController";
productName = "SimulationController";
productReference = FFFD95d477007f8e95d47700 /* SimulationController */;
productType = "com.apple.product-type.library.static";
};
FFFA95ad90707f8e95ad9070 /* PhysXCooking */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF695ad90707f8e95ad9070 /* Build configuration list for PBXNativeTarget "PhysXCooking" */;
buildPhases = (
FFF295ad90707f8e95ad9070,
FFF895ad90707f8e95ad9070,
FFFC95ad90707f8e95ad9070,
);
buildRules = (
);
dependencies = (
FFF495ad94907f8e95ad9490, /* PhysXCommon */
FFF495adc8c07f8e95adc8c0, /* PhysXExtensions */
FFF495ad89407f8e95ad8940, /* PxFoundation */
);
name = "PhysXCooking";
productName = "PhysXCooking";
productReference = FFFD95ad90707f8e95ad9070 /* PhysXCooking */;
productType = "com.apple.product-type.library.static";
};
FFFA9415a1507f8e9415a150 /* PhysXCommon */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF69415a1507f8e9415a150 /* Build configuration list for PBXNativeTarget "PhysXCommon" */;
buildPhases = (
FFF29415a1507f8e9415a150,
FFF89415a1507f8e9415a150,
FFFC9415a1507f8e9415a150,
);
buildRules = (
);
dependencies = (
FFF494154b707f8e94154b70, /* PxFoundation */
);
name = "PhysXCommon";
productName = "PhysXCommon";
productReference = FFFD9415a1507f8e9415a150 /* PhysXCommon */;
productType = "com.apple.product-type.library.static";
};
FFFA94146ae07f8e94146ae0 /* PxFoundation */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF694146ae07f8e94146ae0 /* Build configuration list for PBXNativeTarget "PxFoundation" */;
buildPhases = (
FFF294146ae07f8e94146ae0,
FFF894146ae07f8e94146ae0,
FFFC94146ae07f8e94146ae0,
);
buildRules = (
);
dependencies = (
);
name = "PxFoundation";
productName = "PxFoundation";
productReference = FFFD94146ae07f8e94146ae0 /* PxFoundation */;
productType = "com.apple.product-type.library.static";
};
FFFA9440c6c07f8e9440c6c0 /* PxPvdSDK */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF69440c6c07f8e9440c6c0 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */;
buildPhases = (
FFF29440c6c07f8e9440c6c0,
FFF89440c6c07f8e9440c6c0,
FFFC9440c6c07f8e9440c6c0,
);
buildRules = (
);
dependencies = (
FFF49440c3107f8e9440c310, /* PxFoundation */
);
name = "PxPvdSDK";
productName = "PxPvdSDK";
productReference = FFFD9440c6c07f8e9440c6c0 /* PxPvdSDK */;
productType = "com.apple.product-type.library.static";
};
FFFA94626f907f8e94626f90 /* LowLevel */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF694626f907f8e94626f90 /* Build configuration list for PBXNativeTarget "LowLevel" */;
buildPhases = (
FFF294626f907f8e94626f90,
FFF894626f907f8e94626f90,
FFFC94626f907f8e94626f90,
);
buildRules = (
);
dependencies = (
);
name = "LowLevel";
productName = "LowLevel";
productReference = FFFD94626f907f8e94626f90 /* LowLevel */;
productType = "com.apple.product-type.library.static";
};
FFFA940ccda07f8e940ccda0 /* LowLevelAABB */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF6940ccda07f8e940ccda0 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */;
buildPhases = (
FFF2940ccda07f8e940ccda0,
FFF8940ccda07f8e940ccda0,
FFFC940ccda07f8e940ccda0,
);
buildRules = (
);
dependencies = (
);
name = "LowLevelAABB";
productName = "LowLevelAABB";
productReference = FFFD940ccda07f8e940ccda0 /* LowLevelAABB */;
productType = "com.apple.product-type.library.static";
};
FFFA941450a07f8e941450a0 /* LowLevelDynamics */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF6941450a07f8e941450a0 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */;
buildPhases = (
FFF2941450a07f8e941450a0,
FFF8941450a07f8e941450a0,
FFFC941450a07f8e941450a0,
);
buildRules = (
);
dependencies = (
);
name = "LowLevelDynamics";
productName = "LowLevelDynamics";
productReference = FFFD941450a07f8e941450a0 /* LowLevelDynamics */;
productType = "com.apple.product-type.library.static";
};
FFFA941173807f8e94117380 /* LowLevelCloth */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF6941173807f8e94117380 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */;
buildPhases = (
FFF2941173807f8e94117380,
FFF8941173807f8e94117380,
FFFC941173807f8e94117380,
);
buildRules = (
);
dependencies = (
);
name = "LowLevelCloth";
productName = "LowLevelCloth";
productReference = FFFD941173807f8e94117380 /* LowLevelCloth */;
productType = "com.apple.product-type.library.static";
};
FFFA940bb1407f8e940bb140 /* LowLevelParticles */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF6940bb1407f8e940bb140 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */;
buildPhases = (
FFF2940bb1407f8e940bb140,
FFF8940bb1407f8e940bb140,
FFFC940bb1407f8e940bb140,
);
buildRules = (
);
dependencies = (
);
name = "LowLevelParticles";
productName = "LowLevelParticles";
productReference = FFFD940bb1407f8e940bb140 /* LowLevelParticles */;
productType = "com.apple.product-type.library.static";
};
FFFA940815207f8e94081520 /* PxTask */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF6940815207f8e94081520 /* Build configuration list for PBXNativeTarget "PxTask" */;
buildPhases = (
FFF2940815207f8e94081520,
FFF8940815207f8e94081520,
FFFC940815207f8e94081520,
);
buildRules = (
);
dependencies = (
);
name = "PxTask";
productName = "PxTask";
productReference = FFFD940815207f8e94081520 /* PxTask */;
productType = "com.apple.product-type.library.static";
};
FFFA95d0cbc07f8e95d0cbc0 /* PsFastXml */ = {
isa = PBXNativeTarget;
buildConfigurationList = FFF695d0cbc07f8e95d0cbc0 /* Build configuration list for PBXNativeTarget "PsFastXml" */;
buildPhases = (
FFF295d0cbc07f8e95d0cbc0,
FFF895d0cbc07f8e95d0cbc0,
FFFC95d0cbc07f8e95d0cbc0,
);
buildRules = (
);
dependencies = (
);
name = "PsFastXml";
productName = "PsFastXml";
productReference = FFFD95d0cbc07f8e95d0cbc0 /* PsFastXml */;
productType = "com.apple.product-type.library.static";
};
/* End PBXNativeTarget section */
/* Begin XCConfigurationList section */
FFF695cf0bc07f8e95cf0bc0 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF79484a6007f8e9484a600,
FFF79484acf07f8e9484acf0,
FFF79484b3e07f8e9484b3e0,
FFF79484bad07f8e9484bad0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "release";
};
FFF695d1f3407f8e95d1f340 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF79484c2007f8e9484c200,
FFF79484c8f07f8e9484c8f0,
FFF79484cfe07f8e9484cfe0,
FFF79484d6d07f8e9484d6d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF695d207307f8e95d20730 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF79484de007f8e9484de00,
FFF79484e4f07f8e9484e4f0,
FFF79484ebe07f8e9484ebe0,
FFF79484f2d07f8e9484f2d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF695d305e07f8e95d305e0 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF79484fa007f8e9484fa00,
FFF7948500f07f8e948500f0,
FFF7948507e07f8e948507e0,
FFF794850ed07f8e94850ed0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF695d430907f8e95d43090 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7948516007f8e94851600,
FFF794851cf07f8e94851cf0,
FFF7948523e07f8e948523e0,
FFF794852ad07f8e94852ad0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF695d477007f8e95d47700 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7948532007f8e94853200,
FFF7948538f07f8e948538f0,
FFF794853fe07f8e94853fe0,
FFF7948546d07f8e948546d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF695ad90707f8e95ad9070 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF794854e007f8e94854e00,
FFF7948554f07f8e948554f0,
FFF794855be07f8e94855be0,
FFF7948562d07f8e948562d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "release";
};
FFF69415a1507f8e9415a150 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7948110007f8e94811000,
FFF7948116f07f8e948116f0,
FFF794811de07f8e94811de0,
FFF7948124d07f8e948124d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "release";
};
FFF694146ae07f8e94146ae0 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7939a42007f8e939a4200,
FFF7939a48f07f8e939a48f0,
FFF7939a4fe07f8e939a4fe0,
FFF7939a56d07f8e939a56d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF69440c6c07f8e9440c6c0 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF795027a007f8e95027a00,
FFF7950280f07f8e950280f0,
FFF7950287e07f8e950287e0,
FFF795028ed07f8e95028ed0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF694626f907f8e94626f90 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF795037c007f8e95037c00,
FFF7950382f07f8e950382f0,
FFF7950389e07f8e950389e0,
FFF7950390d07f8e950390d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF6940ccda07f8e940ccda0 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF79481aa007f8e9481aa00,
FFF79481b0f07f8e9481b0f0,
FFF79481b7e07f8e9481b7e0,
FFF79481bed07f8e9481bed0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF6941450a07f8e941450a0 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7939b4e007f8e939b4e00,
FFF7939b54f07f8e939b54f0,
FFF7939b5be07f8e939b5be0,
FFF7939b62d07f8e939b62d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF6941173807f8e94117380 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7939bf6007f8e939bf600,
FFF7939bfcf07f8e939bfcf0,
FFF7939c03e07f8e939c03e0,
FFF7939c0ad07f8e939c0ad0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF6940bb1407f8e940bb140 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF7948236007f8e94823600,
FFF794823cf07f8e94823cf0,
FFF7948243e07f8e948243e0,
FFF794824ad07f8e94824ad0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF6940815207f8e94081520 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF796008e007f8e96008e00,
FFF7960094f07f8e960094f0,
FFF796009be07f8e96009be0,
FFF79600a2d07f8e9600a2d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF695d0cbc07f8e95d0cbc0 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF79602e4007f8e9602e400,
FFF79602eaf07f8e9602eaf0,
FFF79602f1e07f8e9602f1e0,
FFF79602f8d07f8e9602f8d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
FFF69347d0007f8e9347d000 = {
isa = XCConfigurationList;
buildConfigurations = (
FFF39484a6007f8e9484a600 /* release */,
FFF39484acf07f8e9484acf0 /* debug */,
FFF39484b3e07f8e9484b3e0 /* checked */,
FFF39484bad07f8e9484bad0 /* profile */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "release";
};
/* End XCConfigurationList section */
/* Begin XCBuildConfiguration section */
FFF79484a6007f8e9484a600 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++", "-lLowLevel", "-lLowLevelAABB", "-lLowLevelCloth", "-lLowLevelDynamics", "-lLowLevelParticles", "-lPhysX3Common", "-lPxFoundation", "-lPxPvdSDK", "-lPxTask", "-lSceneQuery", "-lSimulationController",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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/osx32", "../../../Lib/osx32", "../../../Lib/osx32", "../../../Lib/osx32", "../../../Lib/osx32", "../../../Lib/osx32", "../../../../PxShared/lib/osx32", "../../../../PxShared/lib/osx32", "../../../../PxShared/lib/osx32", "../../../Lib/osx32", "../../../Lib/osx32",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3";
};
name = "release";
};
FFF79484acf07f8e9484acf0 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++", "-lLowLevelDEBUG", "-lLowLevelAABBDEBUG", "-lLowLevelClothDEBUG", "-lLowLevelDynamicsDEBUG", "-lLowLevelParticlesDEBUG", "-lPhysX3CommonDEBUG", "-lPxFoundationDEBUG", "-lPxPvdSDKDEBUG", "-lPxTaskDEBUG", "-lSceneQueryDEBUG", "-lSimulationControllerDEBUG",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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/osx32", "../../../Lib/osx32", "../../../Lib/osx32", "../../../Lib/osx32", "../../../Lib/osx32", "../../../Lib/osx32", "../../../../PxShared/lib/osx32", "../../../../PxShared/lib/osx32", "../../../../PxShared/lib/osx32", "../../../Lib/osx32", "../../../Lib/osx32",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3DEBUG";
};
name = "debug";
};
FFF79484b3e07f8e9484b3e0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++", "-lLowLevelCHECKED", "-lLowLevelAABBCHECKED", "-lLowLevelClothCHECKED", "-lLowLevelDynamicsCHECKED", "-lLowLevelParticlesCHECKED", "-lPhysX3CommonCHECKED", "-lPxFoundationCHECKED", "-lPxPvdSDKCHECKED", "-lPxTaskCHECKED", "-lSceneQueryCHECKED", "-lSimulationControllerCHECKED",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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/osx32", "../../../Lib/osx32", "../../../Lib/osx32", "../../../Lib/osx32", "../../../Lib/osx32", "../../../Lib/osx32", "../../../../PxShared/lib/osx32", "../../../../PxShared/lib/osx32", "../../../../PxShared/lib/osx32", "../../../Lib/osx32", "../../../Lib/osx32",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CHECKED";
};
name = "checked";
};
FFF79484bad07f8e9484bad0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++", "-lLowLevelPROFILE", "-lLowLevelAABBPROFILE", "-lLowLevelClothPROFILE", "-lLowLevelDynamicsPROFILE", "-lLowLevelParticlesPROFILE", "-lPhysX3CommonPROFILE", "-lPxFoundationPROFILE", "-lPxPvdSDKPROFILE", "-lPxTaskPROFILE", "-lSceneQueryPROFILE", "-lSimulationControllerPROFILE",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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/osx32", "../../../Lib/osx32", "../../../Lib/osx32", "../../../Lib/osx32", "../../../Lib/osx32", "../../../Lib/osx32", "../../../../PxShared/lib/osx32", "../../../../PxShared/lib/osx32", "../../../../PxShared/lib/osx32", "../../../Lib/osx32", "../../../Lib/osx32",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3PROFILE";
};
name = "profile";
};
FFF79484c2007f8e9484c200 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++", "-lPhysX3CommonDEBUG", "-lPhysX3ExtensionsDEBUG", "-lPxFoundationDEBUG",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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/osx32", "../../../Lib/osx32", "../../../../PxShared/lib/osx32",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CharacterKinematicDEBUG";
};
name = "debug";
};
FFF79484c8f07f8e9484c8f0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++", "-lPhysX3CommonCHECKED", "-lPhysX3ExtensionsCHECKED", "-lPxFoundationCHECKED",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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/osx32", "../../../Lib/osx32", "../../../../PxShared/lib/osx32",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CharacterKinematicCHECKED";
};
name = "checked";
};
FFF79484cfe07f8e9484cfe0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++", "-lPhysX3CommonPROFILE", "-lPhysX3ExtensionsPROFILE", "-lPxFoundationPROFILE",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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/osx32", "../../../Lib/osx32", "../../../../PxShared/lib/osx32",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CharacterKinematicPROFILE";
};
name = "profile";
};
FFF79484d6d07f8e9484d6d0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++", "-lPhysX3Common", "-lPhysX3Extensions", "-lPxFoundation",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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/osx32", "../../../Lib/osx32", "../../../../PxShared/lib/osx32",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CharacterKinematic";
};
name = "release";
};
FFF79484de007f8e9484de00 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF79484e4f07f8e9484e4f0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF79484ebe07f8e9484ebe0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF79484f2d07f8e9484f2d0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF79484fa007f8e9484fa00 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++", "-lPsFastXmlDEBUG",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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/osx32",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3ExtensionsDEBUG";
};
name = "debug";
};
FFF7948500f07f8e948500f0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++", "-lPsFastXmlCHECKED",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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/osx32",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3ExtensionsCHECKED";
};
name = "checked";
};
FFF7948507e07f8e948507e0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++", "-lPsFastXmlPROFILE",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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/osx32",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3ExtensionsPROFILE";
};
name = "profile";
};
FFF794850ed07f8e94850ed0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++", "-lPsFastXml",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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/osx32",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3Extensions";
};
name = "release";
};
FFF7948516007f8e94851600 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF794851cf07f8e94851cf0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF7948523e07f8e948523e0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF794852ad07f8e94852ad0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF7948532007f8e94853200 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF7948538f07f8e948538f0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF794853fe07f8e94853fe0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF7948546d07f8e948546d0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF794854e007f8e94854e00 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++", "-lPhysX3Common", "-lPhysX3Extensions", "-lPxFoundation",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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/osx32", "../../../Lib/osx32", "../../../../PxShared/lib/osx32",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3Cooking";
};
name = "release";
};
FFF7948554f07f8e948554f0 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++", "-lPhysX3CommonDEBUG", "-lPhysX3ExtensionsDEBUG", "-lPxFoundationDEBUG",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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/osx32", "../../../Lib/osx32", "../../../../PxShared/lib/osx32",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CookingDEBUG";
};
name = "debug";
};
FFF794855be07f8e94855be0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++", "-lPhysX3CommonCHECKED", "-lPhysX3ExtensionsCHECKED", "-lPxFoundationCHECKED",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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/osx32", "../../../Lib/osx32", "../../../../PxShared/lib/osx32",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CookingCHECKED";
};
name = "checked";
};
FFF7948562d07f8e948562d0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++", "-lPhysX3CommonPROFILE", "-lPhysX3ExtensionsPROFILE", "-lPxFoundationPROFILE",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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/osx32", "../../../Lib/osx32", "../../../../PxShared/lib/osx32",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CookingPROFILE";
};
name = "profile";
};
FFF7948110007f8e94811000 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++", "-lPxFoundation",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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/osx32",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3Common";
};
name = "release";
};
FFF7948116f07f8e948116f0 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++", "-lPxFoundationDEBUG",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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/osx32",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CommonDEBUG";
};
name = "debug";
};
FFF794811de07f8e94811de0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++", "-lPxFoundationCHECKED",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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/osx32",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CommonCHECKED";
};
name = "checked";
};
FFF7948124d07f8e948124d0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++", "-lPxFoundationPROFILE",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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/osx32",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PhysX3CommonPROFILE";
};
name = "profile";
};
FFF7939a42007f8e939a4200 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF7939a48f07f8e939a48f0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/osx32";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PxShared_STATIC_LIB", "NDEBUG",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF7939a4fe07f8e939a4fe0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/osx32";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PxShared_STATIC_LIB", "NDEBUG", "PX_CHECKED=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF7939a56d07f8e939a56d0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/osx32";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PxShared_STATIC_LIB", "NDEBUG", "PX_PROFILE=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF795027a007f8e95027a00 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/osx32";
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 = (
"-stdlib=libc++", "-lPxFoundationDEBUG",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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/osx32",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PxPvdSDKDEBUG";
};
name = "debug";
};
FFF7950280f07f8e950280f0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/osx32";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PxShared_STATIC_LIB", "NDEBUG",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-stdlib=libc++", "-lPxFoundation",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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/osx32",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PxPvdSDK";
};
name = "release";
};
FFF7950287e07f8e950287e0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/osx32";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PxShared_STATIC_LIB", "NDEBUG", "PX_CHECKED=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-stdlib=libc++", "-lPxFoundationCHECKED",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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/osx32",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PxPvdSDKCHECKED";
};
name = "checked";
};
FFF795028ed07f8e95028ed0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/osx32";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PxShared_STATIC_LIB", "NDEBUG", "PX_PROFILE=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-stdlib=libc++", "-lPxFoundationPROFILE",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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/osx32",
);
FRAMEWORK_SEARCH_PATHS = (
);
PRODUCT_NAME = "PxPvdSDKPROFILE";
};
name = "profile";
};
FFF795037c007f8e95037c00 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF7950382f07f8e950382f0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF7950389e07f8e950389e0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF7950390d07f8e950390d0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF79481aa007f8e9481aa00 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF79481b0f07f8e9481b0f0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF79481b7e07f8e9481b7e0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF79481bed07f8e9481bed0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF7939b4e007f8e939b4e00 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF7939b54f07f8e939b54f0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF7939b5be07f8e939b5be0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF7939b62d07f8e939b62d0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF7939bf6007f8e939bf600 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF7939bfcf07f8e939bfcf0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF7939c03e07f8e939c03e0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF7939c0ad07f8e939c0ad0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF7948236007f8e94823600 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF794823cf07f8e94823cf0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF7948243e07f8e948243e0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF794824ad07f8e94824ad0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../Lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF796008e007f8e96008e00 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF7960094f07f8e960094f0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/osx32";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PxShared_STATIC_LIB", "NDEBUG",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF796009be07f8e96009be0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/osx32";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PxShared_STATIC_LIB", "NDEBUG", "PX_CHECKED=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF79600a2d07f8e9600a2d0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/osx32";
ALWAYS_SEARCH_USER_PATHS = NO;
USE_HEADERMAP = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"PxShared_STATIC_LIB", "NDEBUG", "PX_PROFILE=1",
);
GCC_ENABLE_EXCEPTIONS = NO;
OTHER_LDFLAGS = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF79602e4007f8e9602e400 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF79602eaf07f8e9602eaf0 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF79602f1e07f8e9602f1e0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF79602f8d07f8e9602f8d0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx;
CONFIGURATION_BUILD_DIR = "../../../../PxShared/lib/osx32";
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 = (
"-stdlib=libc++",
);
OTHER_CFLAGS = (
"-pipe", "-std=c++11", "-stdlib=libc++", "-mmacosx-version-min=10.9", "-msse2", "-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";
};
FFF39484a6007f8e9484a600 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
};
name = "release";
};
FFF39484acf07f8e9484acf0 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
};
name = "debug";
};
FFF39484b3e07f8e9484b3e0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
};
name = "checked";
};
FFF39484bad07f8e9484bad0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
};
name = "profile";
};
/* End XCBuildConfiguration section */
/* Begin PBXProject section */
FFF99347d0007f8e9347d000 /* Project object */ = {
isa = PBXProject;
buildConfigurationList = FFF69347d0007f8e9347d000 /* Build configuration list for PBXProject PhysX */;
compatibilityVersion = "Xcode 3.2";
hasScannedForEncodings = 1;
mainGroup = FFFB9347d0687f8e9347d068 /* PhysX */;
targets = (
FFFA95cf0bc07f8e95cf0bc0,
FFFA95d1f3407f8e95d1f340,
FFFA95d207307f8e95d20730,
FFFA95d305e07f8e95d305e0,
FFFA95d430907f8e95d43090,
FFFA95d477007f8e95d47700,
FFFA95ad90707f8e95ad9070,
FFFA9415a1507f8e9415a150,
FFFA94146ae07f8e94146ae0,
FFFA9440c6c07f8e9440c6c0,
FFFA94626f907f8e94626f90,
FFFA940ccda07f8e940ccda0,
FFFA941450a07f8e941450a0,
FFFA941173807f8e94117380,
FFFA940bb1407f8e940bb140,
FFFA940815207f8e94081520,
FFFA95d0cbc07f8e95d0cbc0,
);
};
/* End PBXProject section */
};
rootObject = FFF99347d0007f8e9347d000 /* Project object */;
}
|