summaryrefslogtreecommitdiff
path: root/libs/ardour/macosx/libardour.xcodeproj/project.pbxproj
blob: d5b844688d443aa1fe3ddb0a460508e069cdd9c6 (plain)
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
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 46;
	objects = {

/* Begin PBXBuildFile section */
		432653E6194EF73C00BEFB46 /* amp.h in Headers */ = {isa = PBXBuildFile; fileRef = 432652FC194EF73C00BEFB46 /* amp.h */; };
		432653E7194EF73C00BEFB46 /* analyser.h in Headers */ = {isa = PBXBuildFile; fileRef = 432652FD194EF73C00BEFB46 /* analyser.h */; };
		432653E8194EF73C00BEFB46 /* ardour.h in Headers */ = {isa = PBXBuildFile; fileRef = 432652FE194EF73C00BEFB46 /* ardour.h */; };
		432653E9194EF73C00BEFB46 /* async_midi_port.h in Headers */ = {isa = PBXBuildFile; fileRef = 432652FF194EF73C00BEFB46 /* async_midi_port.h */; };
		432653EA194EF73C00BEFB46 /* audio_backend.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265300194EF73C00BEFB46 /* audio_backend.h */; };
		432653EB194EF73C00BEFB46 /* audio_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265301194EF73C00BEFB46 /* audio_buffer.h */; };
		432653EC194EF73C00BEFB46 /* audio_diskstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265302194EF73C00BEFB46 /* audio_diskstream.h */; };
		432653ED194EF73C00BEFB46 /* audio_library.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265303194EF73C00BEFB46 /* audio_library.h */; };
		432653EE194EF73C00BEFB46 /* audio_playlist_importer.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265304194EF73C00BEFB46 /* audio_playlist_importer.h */; };
		432653EF194EF73C00BEFB46 /* audio_playlist_source.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265305194EF73C00BEFB46 /* audio_playlist_source.h */; };
		432653F0194EF73C00BEFB46 /* audio_port.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265306194EF73C00BEFB46 /* audio_port.h */; };
		432653F1194EF73C00BEFB46 /* audio_region_importer.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265307194EF73C00BEFB46 /* audio_region_importer.h */; };
		432653F2194EF73C00BEFB46 /* audio_track.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265308194EF73C00BEFB46 /* audio_track.h */; };
		432653F3194EF73C00BEFB46 /* audio_track_importer.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265309194EF73C00BEFB46 /* audio_track_importer.h */; };
		432653F4194EF73C00BEFB46 /* audio_unit.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326530A194EF73C00BEFB46 /* audio_unit.h */; };
		432653F5194EF73C00BEFB46 /* audioanalyser.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326530B194EF73C00BEFB46 /* audioanalyser.h */; };
		432653F6194EF73C00BEFB46 /* audioengine.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326530C194EF73C00BEFB46 /* audioengine.h */; };
		432653F7194EF73C00BEFB46 /* audiofile_tagger.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326530D194EF73C00BEFB46 /* audiofile_tagger.h */; };
		432653F8194EF73C00BEFB46 /* audiofilesource.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326530E194EF73C00BEFB46 /* audiofilesource.h */; };
		432653F9194EF73C00BEFB46 /* audioplaylist.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326530F194EF73C00BEFB46 /* audioplaylist.h */; };
		432653FA194EF73C00BEFB46 /* audioregion.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265310194EF73C00BEFB46 /* audioregion.h */; };
		432653FB194EF73C00BEFB46 /* audiosource.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265311194EF73C00BEFB46 /* audiosource.h */; };
		432653FC194EF73C00BEFB46 /* auditioner.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265312194EF73C00BEFB46 /* auditioner.h */; };
		432653FD194EF73C00BEFB46 /* auto_bundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265313194EF73C00BEFB46 /* auto_bundle.h */; };
		432653FE194EF73C00BEFB46 /* automatable.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265314194EF73C00BEFB46 /* automatable.h */; };
		432653FF194EF73C00BEFB46 /* automatable_sequence.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265315194EF73C00BEFB46 /* automatable_sequence.h */; };
		43265400194EF73C00BEFB46 /* automation_control.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265316194EF73C00BEFB46 /* automation_control.h */; };
		43265401194EF73C00BEFB46 /* automation_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265317194EF73C00BEFB46 /* automation_list.h */; };
		43265402194EF73C00BEFB46 /* automation_watch.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265318194EF73C00BEFB46 /* automation_watch.h */; };
		43265403194EF73C00BEFB46 /* beats_frames_converter.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265319194EF73C00BEFB46 /* beats_frames_converter.h */; };
		43265404194EF73C00BEFB46 /* broadcast_info.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326531A194EF73C00BEFB46 /* broadcast_info.h */; };
		43265405194EF73C00BEFB46 /* buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326531B194EF73C00BEFB46 /* buffer.h */; };
		43265406194EF73C00BEFB46 /* buffer_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326531C194EF73C00BEFB46 /* buffer_manager.h */; };
		43265407194EF73C00BEFB46 /* buffer_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326531D194EF73C00BEFB46 /* buffer_set.h */; };
		43265408194EF73C00BEFB46 /* bundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326531E194EF73C00BEFB46 /* bundle.h */; };
		43265409194EF73C00BEFB46 /* butler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326531F194EF73C00BEFB46 /* butler.h */; };
		4326540A194EF73C00BEFB46 /* caimportable.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265320194EF73C00BEFB46 /* caimportable.h */; };
		4326540B194EF73C00BEFB46 /* capturing_processor.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265321194EF73C00BEFB46 /* capturing_processor.h */; };
		4326540C194EF73C00BEFB46 /* chan_count.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265322194EF73C00BEFB46 /* chan_count.h */; };
		4326540D194EF73D00BEFB46 /* chan_mapping.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265323194EF73C00BEFB46 /* chan_mapping.h */; };
		4326540E194EF73D00BEFB46 /* click.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265324194EF73C00BEFB46 /* click.h */; };
		4326540F194EF73D00BEFB46 /* comparable_shared_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265325194EF73C00BEFB46 /* comparable_shared_ptr.h */; };
		43265410194EF73D00BEFB46 /* configuration.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265326194EF73C00BEFB46 /* configuration.h */; };
		43265411194EF73D00BEFB46 /* configuration_variable.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265327194EF73C00BEFB46 /* configuration_variable.h */; };
		43265412194EF73D00BEFB46 /* control_protocol_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265328194EF73C00BEFB46 /* control_protocol_manager.h */; };
		43265413194EF73D00BEFB46 /* coreaudiosource.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265329194EF73C00BEFB46 /* coreaudiosource.h */; };
		43265414194EF73D00BEFB46 /* cycle_timer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326532A194EF73C00BEFB46 /* cycle_timer.h */; };
		43265415194EF73D00BEFB46 /* cycles.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326532B194EF73C00BEFB46 /* cycles.h */; };
		43265416194EF73D00BEFB46 /* data_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326532C194EF73C00BEFB46 /* data_type.h */; };
		43265417194EF73D00BEFB46 /* dB.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326532D194EF73C00BEFB46 /* dB.h */; };
		43265418194EF73D00BEFB46 /* debug.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326532E194EF73C00BEFB46 /* debug.h */; };
		43265419194EF73D00BEFB46 /* delivery.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326532F194EF73C00BEFB46 /* delivery.h */; };
		4326541A194EF73D00BEFB46 /* directory_names.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265330194EF73C00BEFB46 /* directory_names.h */; };
		4326541B194EF73D00BEFB46 /* diskstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265331194EF73C00BEFB46 /* diskstream.h */; };
		4326541C194EF73D00BEFB46 /* element_import_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265332194EF73C00BEFB46 /* element_import_handler.h */; };
		4326541D194EF73D00BEFB46 /* element_importer.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265333194EF73C00BEFB46 /* element_importer.h */; };
		4326541E194EF73D00BEFB46 /* engine_state_controller.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265334194EF73C00BEFB46 /* engine_state_controller.h */; };
		4326541F194EF73D00BEFB46 /* event_type_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265335194EF73C00BEFB46 /* event_type_map.h */; };
		43265420194EF73D00BEFB46 /* export_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265336194EF73C00BEFB46 /* export_channel.h */; };
		43265421194EF73D00BEFB46 /* export_channel_configuration.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265337194EF73C00BEFB46 /* export_channel_configuration.h */; };
		43265422194EF73D00BEFB46 /* export_failed.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265338194EF73C00BEFB46 /* export_failed.h */; };
		43265423194EF73D00BEFB46 /* export_filename.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265339194EF73C00BEFB46 /* export_filename.h */; };
		43265424194EF73D00BEFB46 /* export_format_base.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326533A194EF73C00BEFB46 /* export_format_base.h */; };
		43265425194EF73D00BEFB46 /* export_format_compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326533B194EF73C00BEFB46 /* export_format_compatibility.h */; };
		43265426194EF73D00BEFB46 /* export_format_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326533C194EF73C00BEFB46 /* export_format_manager.h */; };
		43265427194EF73D00BEFB46 /* export_format_specification.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326533D194EF73C00BEFB46 /* export_format_specification.h */; };
		43265428194EF73D00BEFB46 /* export_formats.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326533E194EF73C00BEFB46 /* export_formats.h */; };
		43265429194EF73D00BEFB46 /* export_graph_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326533F194EF73C00BEFB46 /* export_graph_builder.h */; };
		4326542A194EF73D00BEFB46 /* export_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265340194EF73C00BEFB46 /* export_handler.h */; };
		4326542B194EF73D00BEFB46 /* export_multiplication.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265341194EF73C00BEFB46 /* export_multiplication.h */; };
		4326542C194EF73D00BEFB46 /* export_pointers.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265342194EF73C00BEFB46 /* export_pointers.h */; };
		4326542D194EF73D00BEFB46 /* export_preset.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265343194EF73C00BEFB46 /* export_preset.h */; };
		4326542E194EF73D00BEFB46 /* export_profile_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265344194EF73C00BEFB46 /* export_profile_manager.h */; };
		4326542F194EF73D00BEFB46 /* export_status.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265345194EF73C00BEFB46 /* export_status.h */; };
		43265430194EF73D00BEFB46 /* export_timespan.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265346194EF73C00BEFB46 /* export_timespan.h */; };
		43265431194EF73D00BEFB46 /* file_source.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265347194EF73C00BEFB46 /* file_source.h */; };
		43265432194EF73D00BEFB46 /* filename_extensions.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265348194EF73C00BEFB46 /* filename_extensions.h */; };
		43265433194EF73D00BEFB46 /* filesystem_paths.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265349194EF73C00BEFB46 /* filesystem_paths.h */; };
		43265434194EF73D00BEFB46 /* filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326534A194EF73C00BEFB46 /* filter.h */; };
		43265435194EF73D00BEFB46 /* graph.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326534B194EF73C00BEFB46 /* graph.h */; };
		43265436194EF73D00BEFB46 /* graphnode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326534C194EF73C00BEFB46 /* graphnode.h */; };
		43265437194EF73D00BEFB46 /* iec1ppmdsp.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326534D194EF73C00BEFB46 /* iec1ppmdsp.h */; };
		43265438194EF73D00BEFB46 /* iec2ppmdsp.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326534E194EF73C00BEFB46 /* iec2ppmdsp.h */; };
		43265439194EF73D00BEFB46 /* import_status.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326534F194EF73C00BEFB46 /* import_status.h */; };
		4326543A194EF73D00BEFB46 /* importable_source.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265350194EF73C00BEFB46 /* importable_source.h */; };
		4326543B194EF73D00BEFB46 /* instrument_info.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265351194EF73C00BEFB46 /* instrument_info.h */; };
		4326543C194EF73D00BEFB46 /* internal_return.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265352194EF73C00BEFB46 /* internal_return.h */; };
		4326543D194EF73D00BEFB46 /* internal_send.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265353194EF73C00BEFB46 /* internal_send.h */; };
		4326543E194EF73D00BEFB46 /* interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265354194EF73C00BEFB46 /* interpolation.h */; };
		4326543F194EF73D00BEFB46 /* interthread_info.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265355194EF73C00BEFB46 /* interthread_info.h */; };
		43265440194EF73D00BEFB46 /* io.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265356194EF73C00BEFB46 /* io.h */; };
		43265441194EF73D00BEFB46 /* io_processor.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265357194EF73C00BEFB46 /* io_processor.h */; };
		43265442194EF73D00BEFB46 /* jack_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265358194EF73C00BEFB46 /* jack_utils.h */; };
		43265443194EF73D00BEFB46 /* kmeterdsp.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265359194EF73C00BEFB46 /* kmeterdsp.h */; };
		43265444194EF73D00BEFB46 /* ladspa.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326535A194EF73C00BEFB46 /* ladspa.h */; };
		43265445194EF73D00BEFB46 /* ladspa_plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326535B194EF73C00BEFB46 /* ladspa_plugin.h */; };
		43265446194EF73D00BEFB46 /* latent.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326535C194EF73C00BEFB46 /* latent.h */; };
		43265447194EF73D00BEFB46 /* libardour_visibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326535D194EF73C00BEFB46 /* libardour_visibility.h */; };
		43265448194EF73D00BEFB46 /* linux_vst_support.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326535E194EF73C00BEFB46 /* linux_vst_support.h */; };
		43265449194EF73D00BEFB46 /* location.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326535F194EF73C00BEFB46 /* location.h */; };
		4326544A194EF73D00BEFB46 /* location_importer.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265360194EF73C00BEFB46 /* location_importer.h */; };
		4326544B194EF73D00BEFB46 /* logcurve.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265361194EF73C00BEFB46 /* logcurve.h */; };
		4326544C194EF73D00BEFB46 /* lv2_plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265362194EF73C00BEFB46 /* lv2_plugin.h */; };
		4326544D194EF73D00BEFB46 /* lxvst_plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265363194EF73C00BEFB46 /* lxvst_plugin.h */; };
		4326544E194EF73D00BEFB46 /* meter.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265364194EF73C00BEFB46 /* meter.h */; };
		4326544F194EF73D00BEFB46 /* midi_automation_list_binder.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265365194EF73C00BEFB46 /* midi_automation_list_binder.h */; };
		43265450194EF73D00BEFB46 /* midi_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265366194EF73C00BEFB46 /* midi_buffer.h */; };
		43265451194EF73D00BEFB46 /* midi_diskstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265367194EF73C00BEFB46 /* midi_diskstream.h */; };
		43265452194EF73D00BEFB46 /* midi_model.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265368194EF73C00BEFB46 /* midi_model.h */; };
		43265453194EF73D00BEFB46 /* midi_operator.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265369194EF73C00BEFB46 /* midi_operator.h */; };
		43265454194EF73D00BEFB46 /* midi_patch_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326536A194EF73C00BEFB46 /* midi_patch_manager.h */; };
		43265455194EF73D00BEFB46 /* midi_playlist.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326536B194EF73C00BEFB46 /* midi_playlist.h */; };
		43265456194EF73D00BEFB46 /* midi_playlist_source.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326536C194EF73C00BEFB46 /* midi_playlist_source.h */; };
		43265457194EF73D00BEFB46 /* midi_port.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326536D194EF73C00BEFB46 /* midi_port.h */; };
		43265458194EF73D00BEFB46 /* midi_region.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326536E194EF73C00BEFB46 /* midi_region.h */; };
		43265459194EF73D00BEFB46 /* midi_ring_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326536F194EF73C00BEFB46 /* midi_ring_buffer.h */; };
		4326545A194EF73D00BEFB46 /* midi_source.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265370194EF73C00BEFB46 /* midi_source.h */; };
		4326545B194EF73D00BEFB46 /* midi_state_tracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265371194EF73C00BEFB46 /* midi_state_tracker.h */; };
		4326545C194EF73D00BEFB46 /* midi_stretch.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265372194EF73C00BEFB46 /* midi_stretch.h */; };
		4326545D194EF73D00BEFB46 /* midi_track.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265373194EF73C00BEFB46 /* midi_track.h */; };
		4326545E194EF73D00BEFB46 /* midi_ui.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265374194EF73C00BEFB46 /* midi_ui.h */; };
		4326545F194EF73D00BEFB46 /* midiport_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265375194EF73C00BEFB46 /* midiport_manager.h */; };
		43265460194EF73D00BEFB46 /* mix.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265376194EF73C00BEFB46 /* mix.h */; };
		43265461194EF73D00BEFB46 /* monitor_processor.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265377194EF73C00BEFB46 /* monitor_processor.h */; };
		43265462194EF73D00BEFB46 /* movable.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265378194EF73C00BEFB46 /* movable.h */; };
		43265463194EF73D00BEFB46 /* msvc_libardour.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265379194EF73C00BEFB46 /* msvc_libardour.h */; };
		43265464194EF73D00BEFB46 /* mtdm.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326537A194EF73C00BEFB46 /* mtdm.h */; };
		43265465194EF73D00BEFB46 /* mute_master.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326537B194EF73C00BEFB46 /* mute_master.h */; };
		43265466194EF73D00BEFB46 /* noise.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326537C194EF73C00BEFB46 /* noise.h */; };
		43265467194EF73D00BEFB46 /* onset_detector.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326537D194EF73C00BEFB46 /* onset_detector.h */; };
		43265468194EF73D00BEFB46 /* operations.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326537E194EF73C00BEFB46 /* operations.h */; };
		43265469194EF73D00BEFB46 /* pan_controllable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326537F194EF73C00BEFB46 /* pan_controllable.h */; };
		4326546A194EF73D00BEFB46 /* pannable.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265380194EF73C00BEFB46 /* pannable.h */; };
		4326546B194EF73D00BEFB46 /* panner.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265381194EF73C00BEFB46 /* panner.h */; };
		4326546C194EF73D00BEFB46 /* panner_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265382194EF73C00BEFB46 /* panner_manager.h */; };
		4326546D194EF73D00BEFB46 /* panner_shell.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265383194EF73C00BEFB46 /* panner_shell.h */; };
		4326546E194EF73D00BEFB46 /* pcm_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265384194EF73C00BEFB46 /* pcm_utils.h */; };
		4326546F194EF73D00BEFB46 /* peak.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265385194EF73C00BEFB46 /* peak.h */; };
		43265470194EF73D00BEFB46 /* pi_controller.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265386194EF73C00BEFB46 /* pi_controller.h */; };
		43265471194EF73D00BEFB46 /* pitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265387194EF73C00BEFB46 /* pitch.h */; };
		43265472194EF73D00BEFB46 /* playlist.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265388194EF73C00BEFB46 /* playlist.h */; };
		43265473194EF73D00BEFB46 /* playlist_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265389194EF73C00BEFB46 /* playlist_factory.h */; };
		43265474194EF73D00BEFB46 /* playlist_source.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326538A194EF73C00BEFB46 /* playlist_source.h */; };
		43265475194EF73D00BEFB46 /* plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326538B194EF73C00BEFB46 /* plugin.h */; };
		43265476194EF73D00BEFB46 /* plugin_insert.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326538C194EF73C00BEFB46 /* plugin_insert.h */; };
		43265477194EF73D00BEFB46 /* plugin_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326538D194EF73C00BEFB46 /* plugin_manager.h */; };
		43265478194EF73D00BEFB46 /* plugin_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326538E194EF73C00BEFB46 /* plugin_types.h */; };
		43265479194EF73D00BEFB46 /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326538F194EF73C00BEFB46 /* port.h */; };
		4326547A194EF73D00BEFB46 /* port_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265390194EF73C00BEFB46 /* port_engine.h */; };
		4326547B194EF73D00BEFB46 /* port_insert.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265391194EF73C00BEFB46 /* port_insert.h */; };
		4326547C194EF73D00BEFB46 /* port_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265392194EF73C00BEFB46 /* port_manager.h */; };
		4326547D194EF73D00BEFB46 /* port_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265393194EF73C00BEFB46 /* port_set.h */; };
		4326547E194EF73D00BEFB46 /* process_thread.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265394194EF73C00BEFB46 /* process_thread.h */; };
		4326547F194EF73D00BEFB46 /* processor.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265395194EF73C00BEFB46 /* processor.h */; };
		43265480194EF73D00BEFB46 /* profile.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265396194EF73C00BEFB46 /* profile.h */; };
		43265481194EF73D00BEFB46 /* progress.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265397194EF73C00BEFB46 /* progress.h */; };
		43265482194EF73D00BEFB46 /* proxy_controllable.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265398194EF73C00BEFB46 /* proxy_controllable.h */; };
		43265483194EF73D00BEFB46 /* public_diskstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 43265399194EF73C00BEFB46 /* public_diskstream.h */; };
		43265484194EF73D00BEFB46 /* quantize.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326539A194EF73C00BEFB46 /* quantize.h */; };
		43265485194EF73D00BEFB46 /* rb_effect.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326539B194EF73C00BEFB46 /* rb_effect.h */; };
		43265486194EF73D00BEFB46 /* rc_configuration.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326539C194EF73C00BEFB46 /* rc_configuration.h */; };
		43265487194EF73D00BEFB46 /* rc_configuration_vars.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326539D194EF73C00BEFB46 /* rc_configuration_vars.h */; };
		43265488194EF73D00BEFB46 /* readable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326539E194EF73C00BEFB46 /* readable.h */; };
		43265489194EF73D00BEFB46 /* recent_sessions.h in Headers */ = {isa = PBXBuildFile; fileRef = 4326539F194EF73C00BEFB46 /* recent_sessions.h */; };
		4326548A194EF73D00BEFB46 /* region.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653A0194EF73C00BEFB46 /* region.h */; };
		4326548B194EF73D00BEFB46 /* region_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653A1194EF73C00BEFB46 /* region_factory.h */; };
		4326548C194EF73D00BEFB46 /* region_sorters.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653A2194EF73C00BEFB46 /* region_sorters.h */; };
		4326548D194EF73D00BEFB46 /* resampled_source.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653A3194EF73C00BEFB46 /* resampled_source.h */; };
		4326548E194EF73D00BEFB46 /* return.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653A4194EF73C00BEFB46 /* return.h */; };
		4326548F194EF73D00BEFB46 /* reverse.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653A5194EF73C00BEFB46 /* reverse.h */; };
		43265490194EF73D00BEFB46 /* revision.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653A6194EF73C00BEFB46 /* revision.h */; };
		43265491194EF73D00BEFB46 /* route.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653A7194EF73C00BEFB46 /* route.h */; };
		43265492194EF73D00BEFB46 /* route_graph.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653A8194EF73C00BEFB46 /* route_graph.h */; };
		43265493194EF73D00BEFB46 /* route_group.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653A9194EF73C00BEFB46 /* route_group.h */; };
		43265494194EF73D00BEFB46 /* route_group_member.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653AA194EF73C00BEFB46 /* route_group_member.h */; };
		43265495194EF73D00BEFB46 /* route_group_specialized.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653AB194EF73C00BEFB46 /* route_group_specialized.h */; };
		43265496194EF73D00BEFB46 /* runtime_functions.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653AC194EF73C00BEFB46 /* runtime_functions.h */; };
		43265497194EF73D00BEFB46 /* search_paths.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653AD194EF73C00BEFB46 /* search_paths.h */; };
		43265498194EF73D00BEFB46 /* send.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653AE194EF73C00BEFB46 /* send.h */; };
		43265499194EF73D00BEFB46 /* session.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653AF194EF73C00BEFB46 /* session.h */; };
		4326549A194EF73D00BEFB46 /* session_configuration.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653B0194EF73C00BEFB46 /* session_configuration.h */; };
		4326549B194EF73D00BEFB46 /* session_configuration_vars.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653B1194EF73C00BEFB46 /* session_configuration_vars.h */; };
		4326549C194EF73D00BEFB46 /* session_directory.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653B2194EF73C00BEFB46 /* session_directory.h */; };
		4326549D194EF73D00BEFB46 /* session_event.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653B3194EF73C00BEFB46 /* session_event.h */; };
		4326549E194EF73D00BEFB46 /* session_handle.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653B4194EF73C00BEFB46 /* session_handle.h */; };
		4326549F194EF73D00BEFB46 /* session_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653B5194EF73C00BEFB46 /* session_metadata.h */; };
		432654A0194EF73D00BEFB46 /* session_object.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653B6194EF73C00BEFB46 /* session_object.h */; };
		432654A1194EF73D00BEFB46 /* session_playlist.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653B7194EF73C00BEFB46 /* session_playlist.h */; };
		432654A2194EF73D00BEFB46 /* session_playlists.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653B8194EF73C00BEFB46 /* session_playlists.h */; };
		432654A3194EF73D00BEFB46 /* session_route.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653B9194EF73C00BEFB46 /* session_route.h */; };
		432654A4194EF73D00BEFB46 /* session_state_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653BA194EF73C00BEFB46 /* session_state_utils.h */; };
		432654A5194EF73D00BEFB46 /* session_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653BB194EF73C00BEFB46 /* session_utils.h */; };
		432654A6194EF73D00BEFB46 /* silentfilesource.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653BC194EF73C00BEFB46 /* silentfilesource.h */; };
		432654A7194EF73D00BEFB46 /* slave.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653BD194EF73C00BEFB46 /* slave.h */; };
		432654A8194EF73D00BEFB46 /* smf_source.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653BE194EF73C00BEFB46 /* smf_source.h */; };
		432654A9194EF73D00BEFB46 /* sndfile_helpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653BF194EF73C00BEFB46 /* sndfile_helpers.h */; };
		432654AA194EF73D00BEFB46 /* sndfileimportable.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653C0194EF73C00BEFB46 /* sndfileimportable.h */; };
		432654AB194EF73D00BEFB46 /* sndfilesource.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653C1194EF73C00BEFB46 /* sndfilesource.h */; };
		432654AC194EF73D00BEFB46 /* soundseq.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653C2194EF73C00BEFB46 /* soundseq.h */; };
		432654AD194EF73D00BEFB46 /* source.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653C3194EF73C00BEFB46 /* source.h */; };
		432654AE194EF73D00BEFB46 /* source_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653C4194EF73C00BEFB46 /* source_factory.h */; };
		432654AF194EF73D00BEFB46 /* speaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653C5194EF73C00BEFB46 /* speaker.h */; };
		432654B0194EF73D00BEFB46 /* speakers.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653C6194EF73C00BEFB46 /* speakers.h */; };
		432654B1194EF73D00BEFB46 /* spline.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653C7194EF73C00BEFB46 /* spline.h */; };
		432654B2194EF73D00BEFB46 /* srcfilesource.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653C8194EF73C00BEFB46 /* srcfilesource.h */; };
		432654B3194EF73D00BEFB46 /* stretch.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653C9194EF73C00BEFB46 /* stretch.h */; };
		432654B4194EF73D00BEFB46 /* strip_silence.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653CA194EF73C00BEFB46 /* strip_silence.h */; };
		432654B5194EF73D00BEFB46 /* system_exec.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653CB194EF73C00BEFB46 /* system_exec.h */; };
		432654B6194EF73D00BEFB46 /* tape_file_matcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653CC194EF73C00BEFB46 /* tape_file_matcher.h */; };
		432654B7194EF73D00BEFB46 /* template_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653CD194EF73C00BEFB46 /* template_utils.h */; };
		432654B8194EF73D00BEFB46 /* tempo.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653CE194EF73C00BEFB46 /* tempo.h */; };
		432654B9194EF73D00BEFB46 /* tempo_map_importer.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653CF194EF73C00BEFB46 /* tempo_map_importer.h */; };
		432654BA194EF73D00BEFB46 /* thread_buffers.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653D0194EF73C00BEFB46 /* thread_buffers.h */; };
		432654BB194EF73D00BEFB46 /* ticker.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653D1194EF73C00BEFB46 /* ticker.h */; };
		432654BC194EF73D00BEFB46 /* timecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653D2194EF73C00BEFB46 /* timecode.h */; };
		432654BD194EF73D00BEFB46 /* timefx_request.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653D3194EF73C00BEFB46 /* timefx_request.h */; };
		432654BE194EF73D00BEFB46 /* timestamps.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653D4194EF73C00BEFB46 /* timestamps.h */; };
		432654BF194EF73D00BEFB46 /* track.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653D5194EF73C00BEFB46 /* track.h */; };
		432654C0194EF73D00BEFB46 /* transient_detector.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653D6194EF73C00BEFB46 /* transient_detector.h */; };
		432654C1194EF73D00BEFB46 /* trimmable.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653D7194EF73C00BEFB46 /* trimmable.h */; };
		432654C2194EF73D00BEFB46 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653D8194EF73C00BEFB46 /* types.h */; };
		432654C3194EF73D00BEFB46 /* unknown_processor.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653D9194EF73C00BEFB46 /* unknown_processor.h */; };
		432654C4194EF73D00BEFB46 /* uri_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653DA194EF73C00BEFB46 /* uri_map.h */; };
		432654C5194EF73D00BEFB46 /* user_bundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653DB194EF73C00BEFB46 /* user_bundle.h */; };
		432654C6194EF73D00BEFB46 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653DC194EF73C00BEFB46 /* utils.h */; };
		432654C7194EF73D00BEFB46 /* version.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653DD194EF73C00BEFB46 /* version.h */; };
		432654C8194EF73D00BEFB46 /* vestige.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653DF194EF73C00BEFB46 /* vestige.h */; };
		432654C9194EF73D00BEFB46 /* vst_info_file.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653E0194EF73C00BEFB46 /* vst_info_file.h */; };
		432654CA194EF73D00BEFB46 /* vst_plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653E1194EF73C00BEFB46 /* vst_plugin.h */; };
		432654CB194EF73D00BEFB46 /* vst_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653E2194EF73C00BEFB46 /* vst_types.h */; };
		432654CC194EF73D00BEFB46 /* vumeterdsp.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653E3194EF73C00BEFB46 /* vumeterdsp.h */; };
		432654CD194EF73D00BEFB46 /* windows_vst_plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653E4194EF73C00BEFB46 /* windows_vst_plugin.h */; };
		432654CE194EF73D00BEFB46 /* worker.h in Headers */ = {isa = PBXBuildFile; fileRef = 432653E5194EF73C00BEFB46 /* worker.h */; };
		432859E61A10F415006C3E03 /* midi_scene_change.h in Headers */ = {isa = PBXBuildFile; fileRef = 432859E21A10F415006C3E03 /* midi_scene_change.h */; };
		432859E71A10F415006C3E03 /* midi_scene_changer.h in Headers */ = {isa = PBXBuildFile; fileRef = 432859E31A10F415006C3E03 /* midi_scene_changer.h */; };
		432859E81A10F415006C3E03 /* mididm.h in Headers */ = {isa = PBXBuildFile; fileRef = 432859E41A10F415006C3E03 /* mididm.h */; };
		432859E91A10F415006C3E03 /* soundcloud_upload.h in Headers */ = {isa = PBXBuildFile; fileRef = 432859E51A10F415006C3E03 /* soundcloud_upload.h */; };
		432859F31A10F436006C3E03 /* midi_scene_change.cc in Sources */ = {isa = PBXBuildFile; fileRef = 432859EE1A10F436006C3E03 /* midi_scene_change.cc */; };
		432859F41A10F436006C3E03 /* midi_scene_changer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 432859EF1A10F436006C3E03 /* midi_scene_changer.cc */; };
		432859F51A10F436006C3E03 /* mididm.cc in Sources */ = {isa = PBXBuildFile; fileRef = 432859F01A10F436006C3E03 /* mididm.cc */; };
		432859F61A10F436006C3E03 /* scene_change.cc in Sources */ = {isa = PBXBuildFile; fileRef = 432859F11A10F436006C3E03 /* scene_change.cc */; };
		432859F71A10F436006C3E03 /* soundcloud_upload.cc in Sources */ = {isa = PBXBuildFile; fileRef = 432859F21A10F436006C3E03 /* soundcloud_upload.cc */; };
		43AA8383194EEB2600A67B56 /* amp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82AE194EEB2600A67B56 /* amp.cc */; };
		43AA8384194EEB2600A67B56 /* analyser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82AF194EEB2600A67B56 /* analyser.cc */; };
		43AA8385194EEB2600A67B56 /* async_midi_port.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82B0194EEB2600A67B56 /* async_midi_port.cc */; };
		43AA8386194EEB2600A67B56 /* audio_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82B1194EEB2600A67B56 /* audio_buffer.cc */; };
		43AA8387194EEB2600A67B56 /* audio_diskstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82B2194EEB2600A67B56 /* audio_diskstream.cc */; };
		43AA8388194EEB2600A67B56 /* audio_library.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82B3194EEB2600A67B56 /* audio_library.cc */; };
		43AA8389194EEB2600A67B56 /* audio_playlist_importer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82B4194EEB2600A67B56 /* audio_playlist_importer.cc */; };
		43AA838A194EEB2600A67B56 /* audio_playlist_source.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82B5194EEB2600A67B56 /* audio_playlist_source.cc */; };
		43AA838B194EEB2600A67B56 /* audio_playlist.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82B6194EEB2600A67B56 /* audio_playlist.cc */; };
		43AA838C194EEB2600A67B56 /* audio_port.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82B7194EEB2600A67B56 /* audio_port.cc */; };
		43AA838D194EEB2600A67B56 /* audio_region_importer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82B8194EEB2600A67B56 /* audio_region_importer.cc */; };
		43AA838E194EEB2600A67B56 /* audio_track_importer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82B9194EEB2600A67B56 /* audio_track_importer.cc */; };
		43AA838F194EEB2600A67B56 /* audio_track.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82BA194EEB2600A67B56 /* audio_track.cc */; };
		43AA8390194EEB2600A67B56 /* audio_unit.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82BB194EEB2600A67B56 /* audio_unit.cc */; };
		43AA8391194EEB2600A67B56 /* audioanalyser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82BC194EEB2600A67B56 /* audioanalyser.cc */; };
		43AA8392194EEB2600A67B56 /* audioengine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82BD194EEB2600A67B56 /* audioengine.cc */; };
		43AA8393194EEB2600A67B56 /* audiofile_tagger.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82BE194EEB2600A67B56 /* audiofile_tagger.cc */; };
		43AA8394194EEB2600A67B56 /* audiofilesource.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82BF194EEB2600A67B56 /* audiofilesource.cc */; };
		43AA8395194EEB2600A67B56 /* audioregion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82C0194EEB2600A67B56 /* audioregion.cc */; };
		43AA8396194EEB2600A67B56 /* audiosource.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82C1194EEB2600A67B56 /* audiosource.cc */; };
		43AA8397194EEB2600A67B56 /* auditioner.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82C2194EEB2600A67B56 /* auditioner.cc */; };
		43AA8398194EEB2600A67B56 /* auto_bundle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82C3194EEB2600A67B56 /* auto_bundle.cc */; };
		43AA8399194EEB2600A67B56 /* automatable.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82C4194EEB2600A67B56 /* automatable.cc */; };
		43AA839A194EEB2600A67B56 /* automation_control.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82C5194EEB2600A67B56 /* automation_control.cc */; };
		43AA839B194EEB2600A67B56 /* automation_list.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82C6194EEB2600A67B56 /* automation_list.cc */; };
		43AA839C194EEB2600A67B56 /* automation_watch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82C7194EEB2600A67B56 /* automation_watch.cc */; };
		43AA839D194EEB2600A67B56 /* automation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82C8194EEB2600A67B56 /* automation.cc */; };
		43AA839E194EEB2600A67B56 /* beats_frames_converter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82C9194EEB2600A67B56 /* beats_frames_converter.cc */; };
		43AA839F194EEB2600A67B56 /* broadcast_info.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82CA194EEB2600A67B56 /* broadcast_info.cc */; };
		43AA83A0194EEB2600A67B56 /* buffer_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82CB194EEB2600A67B56 /* buffer_manager.cc */; };
		43AA83A1194EEB2600A67B56 /* buffer_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82CC194EEB2600A67B56 /* buffer_set.cc */; };
		43AA83A2194EEB2600A67B56 /* buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82CD194EEB2600A67B56 /* buffer.cc */; };
		43AA83A3194EEB2600A67B56 /* bundle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82CE194EEB2600A67B56 /* bundle.cc */; };
		43AA83A4194EEB2600A67B56 /* butler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82CF194EEB2600A67B56 /* butler.cc */; };
		43AA83A5194EEB2600A67B56 /* caimportable.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82D0194EEB2600A67B56 /* caimportable.cc */; };
		43AA83A6194EEB2600A67B56 /* capturing_processor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82D1194EEB2600A67B56 /* capturing_processor.cc */; };
		43AA83A7194EEB2600A67B56 /* chan_count.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82D2194EEB2600A67B56 /* chan_count.cc */; };
		43AA83A8194EEB2600A67B56 /* chan_mapping.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82D3194EEB2600A67B56 /* chan_mapping.cc */; };
		43AA83A9194EEB2600A67B56 /* config_text.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82D4194EEB2600A67B56 /* config_text.cc */; };
		43AA83AA194EEB2600A67B56 /* configuration.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82D5194EEB2600A67B56 /* configuration.cc */; };
		43AA83AB194EEB2600A67B56 /* control_protocol_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82D6194EEB2600A67B56 /* control_protocol_manager.cc */; };
		43AA83AC194EEB2600A67B56 /* coreaudiosource.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82D7194EEB2600A67B56 /* coreaudiosource.cc */; };
		43AA83AD194EEB2600A67B56 /* cycle_timer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82D8194EEB2600A67B56 /* cycle_timer.cc */; };
		43AA83AE194EEB2600A67B56 /* data_type.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82D9194EEB2600A67B56 /* data_type.cc */; };
		43AA83AF194EEB2600A67B56 /* debug.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82DA194EEB2600A67B56 /* debug.cc */; };
		43AA83B0194EEB2600A67B56 /* default_click.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82DB194EEB2600A67B56 /* default_click.cc */; };
		43AA83B1194EEB2600A67B56 /* delivery.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82DC194EEB2600A67B56 /* delivery.cc */; };
		43AA83B2194EEB2600A67B56 /* directory_names.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82DD194EEB2600A67B56 /* directory_names.cc */; };
		43AA83B3194EEB2600A67B56 /* diskstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82DE194EEB2600A67B56 /* diskstream.cc */; };
		43AA83B4194EEB2600A67B56 /* element_import_handler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82DF194EEB2600A67B56 /* element_import_handler.cc */; };
		43AA83B5194EEB2600A67B56 /* element_importer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82E0194EEB2600A67B56 /* element_importer.cc */; };
		43AA83B6194EEB2600A67B56 /* engine_slave.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82E1194EEB2600A67B56 /* engine_slave.cc */; };
		43AA83B7194EEB2600A67B56 /* engine_state_controller.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82E2194EEB2600A67B56 /* engine_state_controller.cc */; };
		43AA83B8194EEB2600A67B56 /* enums.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82E3194EEB2600A67B56 /* enums.cc */; };
		43AA83B9194EEB2600A67B56 /* event_type_map.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82E4194EEB2600A67B56 /* event_type_map.cc */; };
		43AA83BA194EEB2600A67B56 /* export_channel_configuration.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82E5194EEB2600A67B56 /* export_channel_configuration.cc */; };
		43AA83BB194EEB2600A67B56 /* export_channel.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82E6194EEB2600A67B56 /* export_channel.cc */; };
		43AA83BC194EEB2600A67B56 /* export_failed.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82E7194EEB2600A67B56 /* export_failed.cc */; };
		43AA83BD194EEB2600A67B56 /* export_filename.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82E8194EEB2600A67B56 /* export_filename.cc */; };
		43AA83BE194EEB2600A67B56 /* export_format_base.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82E9194EEB2600A67B56 /* export_format_base.cc */; };
		43AA83BF194EEB2600A67B56 /* export_format_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82EA194EEB2600A67B56 /* export_format_manager.cc */; };
		43AA83C0194EEB2600A67B56 /* export_format_specification.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82EB194EEB2600A67B56 /* export_format_specification.cc */; };
		43AA83C1194EEB2600A67B56 /* export_formats.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82EC194EEB2600A67B56 /* export_formats.cc */; };
		43AA83C2194EEB2600A67B56 /* export_graph_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82ED194EEB2600A67B56 /* export_graph_builder.cc */; };
		43AA83C3194EEB2600A67B56 /* export_handler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82EE194EEB2600A67B56 /* export_handler.cc */; };
		43AA83C4194EEB2600A67B56 /* export_multiplication.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82EF194EEB2600A67B56 /* export_multiplication.cc */; };
		43AA83C5194EEB2600A67B56 /* export_preset.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82F0194EEB2600A67B56 /* export_preset.cc */; };
		43AA83C6194EEB2600A67B56 /* export_profile_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82F1194EEB2600A67B56 /* export_profile_manager.cc */; };
		43AA83C7194EEB2600A67B56 /* export_status.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82F2194EEB2600A67B56 /* export_status.cc */; };
		43AA83C8194EEB2600A67B56 /* export_timespan.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82F3194EEB2600A67B56 /* export_timespan.cc */; };
		43AA83C9194EEB2600A67B56 /* file_source.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82F4194EEB2600A67B56 /* file_source.cc */; };
		43AA83CA194EEB2600A67B56 /* filename_extensions.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82F5194EEB2600A67B56 /* filename_extensions.cc */; };
		43AA83CB194EEB2600A67B56 /* filesystem_paths.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82F6194EEB2600A67B56 /* filesystem_paths.cc */; };
		43AA83CC194EEB2600A67B56 /* filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82F7194EEB2600A67B56 /* filter.cc */; };
		43AA83CD194EEB2600A67B56 /* find_session.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82F8194EEB2600A67B56 /* find_session.cc */; };
		43AA83CE194EEB2600A67B56 /* globals.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82F9194EEB2600A67B56 /* globals.cc */; };
		43AA83CF194EEB2600A67B56 /* graph.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82FA194EEB2600A67B56 /* graph.cc */; };
		43AA83D0194EEB2600A67B56 /* graphnode.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82FB194EEB2600A67B56 /* graphnode.cc */; };
		43AA83D1194EEB2600A67B56 /* iec1ppmdsp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82FC194EEB2600A67B56 /* iec1ppmdsp.cc */; };
		43AA83D2194EEB2600A67B56 /* iec2ppmdsp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82FD194EEB2600A67B56 /* iec2ppmdsp.cc */; };
		43AA83D3194EEB2600A67B56 /* import.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82FE194EEB2600A67B56 /* import.cc */; };
		43AA83D4194EEB2600A67B56 /* instrument_info.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA82FF194EEB2600A67B56 /* instrument_info.cc */; };
		43AA83D5194EEB2600A67B56 /* internal_return.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8300194EEB2600A67B56 /* internal_return.cc */; };
		43AA83D6194EEB2600A67B56 /* internal_send.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8301194EEB2600A67B56 /* internal_send.cc */; };
		43AA83D7194EEB2600A67B56 /* interpolation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8302194EEB2600A67B56 /* interpolation.cc */; };
		43AA83D8194EEB2600A67B56 /* io_processor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8303194EEB2600A67B56 /* io_processor.cc */; };
		43AA83D9194EEB2600A67B56 /* io.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8304194EEB2600A67B56 /* io.cc */; };
		43AA83DA194EEB2600A67B56 /* kmeterdsp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8305194EEB2600A67B56 /* kmeterdsp.cc */; };
		43AA83DB194EEB2600A67B56 /* ladspa_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8306194EEB2600A67B56 /* ladspa_plugin.cc */; };
		43AA83DC194EEB2600A67B56 /* linux_vst_support.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8307194EEB2600A67B56 /* linux_vst_support.cc */; };
		43AA83DD194EEB2600A67B56 /* location_importer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8308194EEB2600A67B56 /* location_importer.cc */; };
		43AA83DE194EEB2600A67B56 /* location.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8309194EEB2600A67B56 /* location.cc */; };
		43AA83DF194EEB2600A67B56 /* ltc_slave.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA830A194EEB2600A67B56 /* ltc_slave.cc */; };
		43AA83E0194EEB2600A67B56 /* lv2_evbuf.c in Sources */ = {isa = PBXBuildFile; fileRef = 43AA830B194EEB2600A67B56 /* lv2_evbuf.c */; };
		43AA83E1194EEB2600A67B56 /* lv2_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA830C194EEB2600A67B56 /* lv2_plugin.cc */; };
		43AA83E2194EEB2600A67B56 /* lxvst_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA830D194EEB2600A67B56 /* lxvst_plugin.cc */; };
		43AA83E3194EEB2600A67B56 /* meter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA830E194EEB2600A67B56 /* meter.cc */; };
		43AA83E4194EEB2600A67B56 /* midi_automation_list_binder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA830F194EEB2600A67B56 /* midi_automation_list_binder.cc */; };
		43AA83E5194EEB2600A67B56 /* midi_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8310194EEB2600A67B56 /* midi_buffer.cc */; };
		43AA83E6194EEB2600A67B56 /* midi_clock_slave.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8311194EEB2600A67B56 /* midi_clock_slave.cc */; };
		43AA83E7194EEB2600A67B56 /* midi_diskstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8312194EEB2600A67B56 /* midi_diskstream.cc */; };
		43AA83E8194EEB2600A67B56 /* midi_model.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8313194EEB2600A67B56 /* midi_model.cc */; };
		43AA83E9194EEB2600A67B56 /* midi_patch_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8314194EEB2600A67B56 /* midi_patch_manager.cc */; };
		43AA83EA194EEB2600A67B56 /* midi_playlist_source.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8315194EEB2600A67B56 /* midi_playlist_source.cc */; };
		43AA83EB194EEB2600A67B56 /* midi_playlist.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8316194EEB2600A67B56 /* midi_playlist.cc */; };
		43AA83EC194EEB2600A67B56 /* midi_port.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8317194EEB2600A67B56 /* midi_port.cc */; };
		43AA83ED194EEB2600A67B56 /* midi_region.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8318194EEB2600A67B56 /* midi_region.cc */; };
		43AA83EE194EEB2600A67B56 /* midi_ring_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8319194EEB2600A67B56 /* midi_ring_buffer.cc */; };
		43AA83EF194EEB2600A67B56 /* midi_source.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA831A194EEB2600A67B56 /* midi_source.cc */; };
		43AA83F0194EEB2600A67B56 /* midi_state_tracker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA831B194EEB2600A67B56 /* midi_state_tracker.cc */; };
		43AA83F1194EEB2600A67B56 /* midi_stretch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA831C194EEB2600A67B56 /* midi_stretch.cc */; };
		43AA83F2194EEB2600A67B56 /* midi_track.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA831D194EEB2600A67B56 /* midi_track.cc */; };
		43AA83F3194EEB2600A67B56 /* midi_ui.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA831E194EEB2600A67B56 /* midi_ui.cc */; };
		43AA83F4194EEB2600A67B56 /* midiport_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA831F194EEB2600A67B56 /* midiport_manager.cc */; };
		43AA83F5194EEB2600A67B56 /* mix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8320194EEB2600A67B56 /* mix.cc */; };
		43AA83F6194EEB2600A67B56 /* monitor_processor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8321194EEB2600A67B56 /* monitor_processor.cc */; };
		43AA83F7194EEB2600A67B56 /* mtc_slave.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8322194EEB2600A67B56 /* mtc_slave.cc */; };
		43AA83F8194EEB2600A67B56 /* mtdm.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8323194EEB2600A67B56 /* mtdm.cc */; };
		43AA83F9194EEB2600A67B56 /* mute_master.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8324194EEB2600A67B56 /* mute_master.cc */; };
		43AA83FA194EEB2600A67B56 /* onset_detector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8325194EEB2600A67B56 /* onset_detector.cc */; };
		43AA83FB194EEB2600A67B56 /* operations.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8326194EEB2600A67B56 /* operations.cc */; };
		43AA83FC194EEB2600A67B56 /* pan_controllable.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8327194EEB2600A67B56 /* pan_controllable.cc */; };
		43AA83FD194EEB2600A67B56 /* pannable.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8328194EEB2600A67B56 /* pannable.cc */; };
		43AA83FE194EEB2600A67B56 /* panner_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8329194EEB2600A67B56 /* panner_manager.cc */; };
		43AA83FF194EEB2600A67B56 /* panner_shell.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA832A194EEB2600A67B56 /* panner_shell.cc */; };
		43AA8400194EEB2600A67B56 /* panner.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA832B194EEB2600A67B56 /* panner.cc */; };
		43AA8401194EEB2600A67B56 /* pcm_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA832C194EEB2600A67B56 /* pcm_utils.cc */; };
		43AA8402194EEB2600A67B56 /* pi_controller.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA832D194EEB2600A67B56 /* pi_controller.cc */; };
		43AA8403194EEB2600A67B56 /* playlist_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA832E194EEB2600A67B56 /* playlist_factory.cc */; };
		43AA8404194EEB2600A67B56 /* playlist_source.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA832F194EEB2600A67B56 /* playlist_source.cc */; };
		43AA8405194EEB2600A67B56 /* playlist.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8330194EEB2600A67B56 /* playlist.cc */; };
		43AA8406194EEB2600A67B56 /* plugin_insert.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8331194EEB2600A67B56 /* plugin_insert.cc */; };
		43AA8407194EEB2600A67B56 /* plugin_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8332194EEB2600A67B56 /* plugin_manager.cc */; };
		43AA8408194EEB2600A67B56 /* plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8333194EEB2600A67B56 /* plugin.cc */; };
		43AA8409194EEB2600A67B56 /* port_insert.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8334194EEB2600A67B56 /* port_insert.cc */; };
		43AA840A194EEB2600A67B56 /* port_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8335194EEB2600A67B56 /* port_manager.cc */; };
		43AA840B194EEB2600A67B56 /* port_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8336194EEB2600A67B56 /* port_set.cc */; };
		43AA840C194EEB2600A67B56 /* port.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8337194EEB2600A67B56 /* port.cc */; };
		43AA840D194EEB2600A67B56 /* process_thread.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8338194EEB2600A67B56 /* process_thread.cc */; };
		43AA840E194EEB2600A67B56 /* processor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8339194EEB2600A67B56 /* processor.cc */; };
		43AA840F194EEB2600A67B56 /* progress.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA833A194EEB2600A67B56 /* progress.cc */; };
		43AA8410194EEB2600A67B56 /* quantize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA833B194EEB2600A67B56 /* quantize.cc */; };
		43AA8411194EEB2600A67B56 /* rb_effect.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA833C194EEB2600A67B56 /* rb_effect.cc */; };
		43AA8412194EEB2600A67B56 /* rc_configuration.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA833D194EEB2600A67B56 /* rc_configuration.cc */; };
		43AA8413194EEB2600A67B56 /* rdff.c in Sources */ = {isa = PBXBuildFile; fileRef = 43AA833E194EEB2600A67B56 /* rdff.c */; };
		43AA8414194EEB2600A67B56 /* recent_sessions.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA833F194EEB2600A67B56 /* recent_sessions.cc */; };
		43AA8415194EEB2600A67B56 /* region_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8340194EEB2600A67B56 /* region_factory.cc */; };
		43AA8416194EEB2600A67B56 /* region.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8341194EEB2600A67B56 /* region.cc */; };
		43AA8417194EEB2600A67B56 /* resampled_source.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8342194EEB2600A67B56 /* resampled_source.cc */; };
		43AA8418194EEB2600A67B56 /* return.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8343194EEB2600A67B56 /* return.cc */; };
		43AA8419194EEB2600A67B56 /* reverse.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8344194EEB2600A67B56 /* reverse.cc */; };
		43AA841A194EEB2600A67B56 /* revision.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8345194EEB2600A67B56 /* revision.cc */; };
		43AA841B194EEB2600A67B56 /* route_graph.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8346194EEB2600A67B56 /* route_graph.cc */; };
		43AA841C194EEB2600A67B56 /* route_group_member.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8347194EEB2600A67B56 /* route_group_member.cc */; };
		43AA841D194EEB2600A67B56 /* route_group.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8348194EEB2600A67B56 /* route_group.cc */; };
		43AA841E194EEB2600A67B56 /* route.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8349194EEB2600A67B56 /* route.cc */; };
		43AA841F194EEB2600A67B56 /* search_paths.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA834A194EEB2600A67B56 /* search_paths.cc */; };
		43AA8420194EEB2600A67B56 /* send.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA834B194EEB2600A67B56 /* send.cc */; };
		43AA8421194EEB2600A67B56 /* session_butler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA834C194EEB2600A67B56 /* session_butler.cc */; };
		43AA8422194EEB2600A67B56 /* session_click.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA834D194EEB2600A67B56 /* session_click.cc */; };
		43AA8423194EEB2600A67B56 /* session_command.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA834E194EEB2600A67B56 /* session_command.cc */; };
		43AA8424194EEB2600A67B56 /* session_configuration.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA834F194EEB2600A67B56 /* session_configuration.cc */; };
		43AA8425194EEB2600A67B56 /* session_directory.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8350194EEB2600A67B56 /* session_directory.cc */; };
		43AA8426194EEB2600A67B56 /* session_events.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8351194EEB2600A67B56 /* session_events.cc */; };
		43AA8427194EEB2600A67B56 /* session_export.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8352194EEB2600A67B56 /* session_export.cc */; };
		43AA8428194EEB2600A67B56 /* session_handle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8353194EEB2600A67B56 /* session_handle.cc */; };
		43AA8429194EEB2600A67B56 /* session_ltc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8354194EEB2600A67B56 /* session_ltc.cc */; };
		43AA842A194EEB2600A67B56 /* session_metadata.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8355194EEB2600A67B56 /* session_metadata.cc */; };
		43AA842B194EEB2600A67B56 /* session_midi.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8356194EEB2600A67B56 /* session_midi.cc */; };
		43AA842C194EEB2600A67B56 /* session_object.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8357194EEB2600A67B56 /* session_object.cc */; };
		43AA842D194EEB2600A67B56 /* session_playlists.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8358194EEB2600A67B56 /* session_playlists.cc */; };
		43AA842E194EEB2600A67B56 /* session_process.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8359194EEB2600A67B56 /* session_process.cc */; };
		43AA842F194EEB2600A67B56 /* session_rtevents.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA835A194EEB2600A67B56 /* session_rtevents.cc */; };
		43AA8430194EEB2600A67B56 /* session_state_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA835B194EEB2600A67B56 /* session_state_utils.cc */; };
		43AA8431194EEB2600A67B56 /* session_state.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA835C194EEB2600A67B56 /* session_state.cc */; };
		43AA8432194EEB2600A67B56 /* session_time.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA835D194EEB2600A67B56 /* session_time.cc */; };
		43AA8433194EEB2600A67B56 /* session_transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA835E194EEB2600A67B56 /* session_transport.cc */; };
		43AA8434194EEB2600A67B56 /* session_vst.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA835F194EEB2600A67B56 /* session_vst.cc */; };
		43AA8435194EEB2600A67B56 /* session.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8360194EEB2600A67B56 /* session.cc */; };
		43AA8436194EEB2600A67B56 /* slave.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8361194EEB2600A67B56 /* slave.cc */; };
		43AA8437194EEB2600A67B56 /* smf_source.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8362194EEB2600A67B56 /* smf_source.cc */; };
		43AA8438194EEB2600A67B56 /* sndfile_helpers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8363194EEB2600A67B56 /* sndfile_helpers.cc */; };
		43AA8439194EEB2600A67B56 /* sndfileimportable.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8364194EEB2600A67B56 /* sndfileimportable.cc */; };
		43AA843A194EEB2600A67B56 /* sndfilesource.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8365194EEB2600A67B56 /* sndfilesource.cc */; };
		43AA843B194EEB2600A67B56 /* source_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8366194EEB2600A67B56 /* source_factory.cc */; };
		43AA843C194EEB2600A67B56 /* source.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8367194EEB2600A67B56 /* source.cc */; };
		43AA843D194EEB2600A67B56 /* speakers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8368194EEB2600A67B56 /* speakers.cc */; };
		43AA843E194EEB2600A67B56 /* srcfilesource.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8369194EEB2600A67B56 /* srcfilesource.cc */; };
		43AA843F194EEB2600A67B56 /* sse_functions_64bit.s in Sources */ = {isa = PBXBuildFile; fileRef = 43AA836A194EEB2600A67B56 /* sse_functions_64bit.s */; };
		43AA8440194EEB2600A67B56 /* sse_functions_xmm.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA836B194EEB2600A67B56 /* sse_functions_xmm.cc */; };
		43AA8441194EEB2600A67B56 /* sse_functions.s in Sources */ = {isa = PBXBuildFile; fileRef = 43AA836C194EEB2600A67B56 /* sse_functions.s */; };
		43AA8442194EEB2600A67B56 /* st_pitch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA836D194EEB2600A67B56 /* st_pitch.cc */; };
		43AA8443194EEB2600A67B56 /* st_stretch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA836E194EEB2600A67B56 /* st_stretch.cc */; };
		43AA8444194EEB2600A67B56 /* strip_silence.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA836F194EEB2600A67B56 /* strip_silence.cc */; };
		43AA8445194EEB2600A67B56 /* system_exec.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8370194EEB2600A67B56 /* system_exec.cc */; };
		43AA8446194EEB2600A67B56 /* tape_file_matcher.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8371194EEB2600A67B56 /* tape_file_matcher.cc */; };
		43AA8447194EEB2600A67B56 /* template_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8372194EEB2600A67B56 /* template_utils.cc */; };
		43AA8448194EEB2600A67B56 /* tempo_map_importer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8373194EEB2600A67B56 /* tempo_map_importer.cc */; };
		43AA8449194EEB2600A67B56 /* tempo.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8374194EEB2600A67B56 /* tempo.cc */; };
		43AA844A194EEB2600A67B56 /* thread_buffers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8375194EEB2600A67B56 /* thread_buffers.cc */; };
		43AA844B194EEB2600A67B56 /* ticker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8376194EEB2600A67B56 /* ticker.cc */; };
		43AA844C194EEB2600A67B56 /* track.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8377194EEB2600A67B56 /* track.cc */; };
		43AA844D194EEB2600A67B56 /* transient_detector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8378194EEB2600A67B56 /* transient_detector.cc */; };
		43AA844E194EEB2600A67B56 /* unknown_processor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8379194EEB2600A67B56 /* unknown_processor.cc */; };
		43AA844F194EEB2600A67B56 /* uri_map.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA837A194EEB2600A67B56 /* uri_map.cc */; };
		43AA8450194EEB2600A67B56 /* user_bundle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA837B194EEB2600A67B56 /* user_bundle.cc */; };
		43AA8451194EEB2600A67B56 /* utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA837C194EEB2600A67B56 /* utils.cc */; };
		43AA8452194EEB2600A67B56 /* version.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA837D194EEB2600A67B56 /* version.cc */; };
		43AA8453194EEB2600A67B56 /* vst_info_file.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA837E194EEB2600A67B56 /* vst_info_file.cc */; };
		43AA8454194EEB2600A67B56 /* vst_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA837F194EEB2600A67B56 /* vst_plugin.cc */; };
		43AA8455194EEB2600A67B56 /* vumeterdsp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8380194EEB2600A67B56 /* vumeterdsp.cc */; };
		43AA8456194EEB2600A67B56 /* windows_vst_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8381194EEB2600A67B56 /* windows_vst_plugin.cc */; };
		43AA8457194EEB2600A67B56 /* worker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8382194EEB2600A67B56 /* worker.cc */; };
		43AA84B9194EEB5F00A67B56 /* audio_engine_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8459194EEB5F00A67B56 /* audio_engine_test.cc */; };
		43AA84BA194EEB5F00A67B56 /* audio_engine_test.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA845A194EEB5F00A67B56 /* audio_engine_test.h */; };
		43AA84BB194EEB5F00A67B56 /* audio_region_read_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA845B194EEB5F00A67B56 /* audio_region_read_test.cc */; };
		43AA84BC194EEB5F00A67B56 /* audio_region_read_test.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA845C194EEB5F00A67B56 /* audio_region_read_test.h */; };
		43AA84BD194EEB5F00A67B56 /* audio_region_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA845D194EEB5F00A67B56 /* audio_region_test.cc */; };
		43AA84BE194EEB5F00A67B56 /* audio_region_test.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA845E194EEB5F00A67B56 /* audio_region_test.h */; };
		43AA84BF194EEB5F00A67B56 /* automation_list_property_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA845F194EEB5F00A67B56 /* automation_list_property_test.cc */; };
		43AA84C0194EEB5F00A67B56 /* automation_list_property_test.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8460194EEB5F00A67B56 /* automation_list_property_test.h */; };
		43AA84C1194EEB5F00A67B56 /* bbt_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8461194EEB5F00A67B56 /* bbt_test.cc */; };
		43AA84C2194EEB5F00A67B56 /* bbt_test.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8462194EEB5F00A67B56 /* bbt_test.h */; };
		43AA84C3194EEB5F00A67B56 /* combine_regions_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8463194EEB5F00A67B56 /* combine_regions_test.cc */; };
		43AA84C4194EEB5F00A67B56 /* combine_regions_test.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8464194EEB5F00A67B56 /* combine_regions_test.h */; };
		43AA84C5194EEB5F00A67B56 /* control_surfaces_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8465194EEB5F00A67B56 /* control_surfaces_test.cc */; };
		43AA84C6194EEB5F00A67B56 /* control_surfaces_test.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8466194EEB5F00A67B56 /* control_surfaces_test.h */; };
		43AA84C7194EEB5F00A67B56 /* dummy_lxvst.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA847C194EEB5F00A67B56 /* dummy_lxvst.cc */; };
		43AA84C8194EEB5F00A67B56 /* framepos_minus_beats_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA847D194EEB5F00A67B56 /* framepos_minus_beats_test.cc */; };
		43AA84C9194EEB5F00A67B56 /* framepos_minus_beats_test.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA847E194EEB5F00A67B56 /* framepos_minus_beats_test.h */; };
		43AA84CA194EEB5F00A67B56 /* framepos_plus_beats_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA847F194EEB5F00A67B56 /* framepos_plus_beats_test.cc */; };
		43AA84CB194EEB5F00A67B56 /* framepos_plus_beats_test.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8480194EEB5F00A67B56 /* framepos_plus_beats_test.h */; };
		43AA84CC194EEB5F00A67B56 /* framewalk_to_beats_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8481194EEB5F00A67B56 /* framewalk_to_beats_test.cc */; };
		43AA84CD194EEB5F00A67B56 /* framewalk_to_beats_test.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8482194EEB5F00A67B56 /* framewalk_to_beats_test.h */; };
		43AA84CE194EEB5F00A67B56 /* interpolation_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8483194EEB5F00A67B56 /* interpolation_test.cc */; };
		43AA84CF194EEB5F00A67B56 /* interpolation_test.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8484194EEB5F00A67B56 /* interpolation_test.h */; };
		43AA84D0194EEB5F00A67B56 /* jack_utils_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8485194EEB5F00A67B56 /* jack_utils_test.cc */; };
		43AA84D1194EEB5F00A67B56 /* jack_utils_test.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8486194EEB5F00A67B56 /* jack_utils_test.h */; };
		43AA84D2194EEB5F00A67B56 /* load_session.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8487194EEB5F00A67B56 /* load_session.cc */; };
		43AA84D3194EEB5F00A67B56 /* load_sessions_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8488194EEB5F00A67B56 /* load_sessions_test.cc */; };
		43AA84D4194EEB5F00A67B56 /* load_sessions_test.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8489194EEB5F00A67B56 /* load_sessions_test.h */; };
		43AA84D5194EEB5F00A67B56 /* midi_clock_slave_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA848A194EEB5F00A67B56 /* midi_clock_slave_test.cc */; };
		43AA84D6194EEB5F00A67B56 /* midi_clock_slave_test.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA848B194EEB5F00A67B56 /* midi_clock_slave_test.h */; };
		43AA84D7194EEB5F00A67B56 /* mtdm_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA848C194EEB5F00A67B56 /* mtdm_test.cc */; };
		43AA84D8194EEB5F00A67B56 /* mtdm_test.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA848D194EEB5F00A67B56 /* mtdm_test.h */; };
		43AA84D9194EEB5F00A67B56 /* playlist_equivalent_regions_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA848E194EEB5F00A67B56 /* playlist_equivalent_regions_test.cc */; };
		43AA84DA194EEB5F00A67B56 /* playlist_equivalent_regions_test.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA848F194EEB5F00A67B56 /* playlist_equivalent_regions_test.h */; };
		43AA84DB194EEB5F00A67B56 /* playlist_layering_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8490194EEB5F00A67B56 /* playlist_layering_test.cc */; };
		43AA84DC194EEB5F00A67B56 /* playlist_layering_test.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8491194EEB5F00A67B56 /* playlist_layering_test.h */; };
		43AA84DD194EEB5F00A67B56 /* playlist_read_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8492194EEB5F00A67B56 /* playlist_read_test.cc */; };
		43AA84DE194EEB5F00A67B56 /* playlist_read_test.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8493194EEB5F00A67B56 /* playlist_read_test.h */; };
		43AA84DF194EEB5F00A67B56 /* plugins_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8494194EEB5F00A67B56 /* plugins_test.cc */; };
		43AA84E0194EEB5F00A67B56 /* plugins_test.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8495194EEB5F00A67B56 /* plugins_test.h */; };
		43AA84E1194EEB5F00A67B56 /* load_session.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8497194EEB5F00A67B56 /* load_session.cc */; };
		43AA84E2194EEB5F00A67B56 /* lots_of_regions.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8498194EEB5F00A67B56 /* lots_of_regions.cc */; };
		43AA84E3194EEB5F00A67B56 /* runpc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA8499194EEB5F00A67B56 /* runpc.cc */; };
		43AA84E4194EEB5F00A67B56 /* region_naming_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA84AA194EEB5F00A67B56 /* region_naming_test.cc */; };
		43AA84E5194EEB5F00A67B56 /* region_naming_test.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA84AB194EEB5F00A67B56 /* region_naming_test.h */; };
		43AA84E6194EEB5F00A67B56 /* resampled_source_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA84AC194EEB5F00A67B56 /* resampled_source_test.cc */; };
		43AA84E7194EEB5F00A67B56 /* resampled_source_test.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA84AD194EEB5F00A67B56 /* resampled_source_test.h */; };
		43AA84E8194EEB5F00A67B56 /* session_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA84AE194EEB5F00A67B56 /* session_test.cc */; };
		43AA84E9194EEB5F00A67B56 /* session_test.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA84AF194EEB5F00A67B56 /* session_test.h */; };
		43AA84EA194EEB5F00A67B56 /* tempo_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA84B0194EEB5F00A67B56 /* tempo_test.cc */; };
		43AA84EB194EEB5F00A67B56 /* tempo_test.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA84B1194EEB5F00A67B56 /* tempo_test.h */; };
		43AA84EC194EEB5F00A67B56 /* test_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA84B2194EEB5F00A67B56 /* test_common.cc */; };
		43AA84ED194EEB5F00A67B56 /* test_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA84B3194EEB5F00A67B56 /* test_common.h */; };
		43AA84EE194EEB5F00A67B56 /* test_needing_session.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA84B4194EEB5F00A67B56 /* test_needing_session.cc */; };
		43AA84EF194EEB5F00A67B56 /* test_needing_session.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA84B5194EEB5F00A67B56 /* test_needing_session.h */; };
		43AA84F0194EEB5F00A67B56 /* test_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA84B6194EEB5F00A67B56 /* test_util.cc */; };
		43AA84F1194EEB5F00A67B56 /* test_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA84B7194EEB5F00A67B56 /* test_util.h */; };
		43AA84F2194EEB5F00A67B56 /* testrunner.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43AA84B8194EEB5F00A67B56 /* testrunner.cc */; };
		43AA85DC194EEB8B00A67B56 /* amp.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA84F4194EEB8B00A67B56 /* amp.h */; };
		43AA85DD194EEB8B00A67B56 /* analyser.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA84F5194EEB8B00A67B56 /* analyser.h */; };
		43AA85DE194EEB8B00A67B56 /* ardour.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA84F6194EEB8B00A67B56 /* ardour.h */; };
		43AA85DF194EEB8B00A67B56 /* async_midi_port.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA84F7194EEB8B00A67B56 /* async_midi_port.h */; };
		43AA85E0194EEB8B00A67B56 /* audio_backend.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA84F8194EEB8B00A67B56 /* audio_backend.h */; };
		43AA85E1194EEB8B00A67B56 /* audio_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA84F9194EEB8B00A67B56 /* audio_buffer.h */; };
		43AA85E2194EEB8B00A67B56 /* audio_diskstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA84FA194EEB8B00A67B56 /* audio_diskstream.h */; };
		43AA85E3194EEB8B00A67B56 /* audio_library.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA84FB194EEB8B00A67B56 /* audio_library.h */; };
		43AA85E4194EEB8B00A67B56 /* audio_playlist_importer.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA84FC194EEB8B00A67B56 /* audio_playlist_importer.h */; };
		43AA85E5194EEB8B00A67B56 /* audio_playlist_source.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA84FD194EEB8B00A67B56 /* audio_playlist_source.h */; };
		43AA85E6194EEB8B00A67B56 /* audio_port.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA84FE194EEB8B00A67B56 /* audio_port.h */; };
		43AA85E7194EEB8B00A67B56 /* audio_region_importer.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA84FF194EEB8B00A67B56 /* audio_region_importer.h */; };
		43AA85E8194EEB8B00A67B56 /* audio_track_importer.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8500194EEB8B00A67B56 /* audio_track_importer.h */; };
		43AA85E9194EEB8B00A67B56 /* audio_track.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8501194EEB8B00A67B56 /* audio_track.h */; };
		43AA85EA194EEB8B00A67B56 /* audio_unit.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8502194EEB8B00A67B56 /* audio_unit.h */; };
		43AA85EB194EEB8B00A67B56 /* audioanalyser.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8503194EEB8B00A67B56 /* audioanalyser.h */; };
		43AA85EC194EEB8B00A67B56 /* audioengine.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8504194EEB8B00A67B56 /* audioengine.h */; };
		43AA85ED194EEB8B00A67B56 /* audiofile_tagger.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8505194EEB8B00A67B56 /* audiofile_tagger.h */; };
		43AA85EE194EEB8B00A67B56 /* audiofilesource.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8506194EEB8B00A67B56 /* audiofilesource.h */; };
		43AA85EF194EEB8B00A67B56 /* audioplaylist.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8507194EEB8B00A67B56 /* audioplaylist.h */; };
		43AA85F0194EEB8B00A67B56 /* audioregion.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8508194EEB8B00A67B56 /* audioregion.h */; };
		43AA85F1194EEB8B00A67B56 /* audiosource.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8509194EEB8B00A67B56 /* audiosource.h */; };
		43AA85F2194EEB8B00A67B56 /* auditioner.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA850A194EEB8B00A67B56 /* auditioner.h */; };
		43AA85F3194EEB8B00A67B56 /* auto_bundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA850B194EEB8B00A67B56 /* auto_bundle.h */; };
		43AA85F4194EEB8B00A67B56 /* automatable_sequence.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA850C194EEB8B00A67B56 /* automatable_sequence.h */; };
		43AA85F5194EEB8B00A67B56 /* automatable.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA850D194EEB8B00A67B56 /* automatable.h */; };
		43AA85F6194EEB8B00A67B56 /* automation_control.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA850E194EEB8B00A67B56 /* automation_control.h */; };
		43AA85F7194EEB8B00A67B56 /* automation_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA850F194EEB8B00A67B56 /* automation_list.h */; };
		43AA85F8194EEB8B00A67B56 /* automation_watch.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8510194EEB8B00A67B56 /* automation_watch.h */; };
		43AA85F9194EEB8B00A67B56 /* beats_frames_converter.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8511194EEB8B00A67B56 /* beats_frames_converter.h */; };
		43AA85FA194EEB8B00A67B56 /* broadcast_info.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8512194EEB8B00A67B56 /* broadcast_info.h */; };
		43AA85FB194EEB8B00A67B56 /* buffer_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8513194EEB8B00A67B56 /* buffer_manager.h */; };
		43AA85FC194EEB8B00A67B56 /* buffer_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8514194EEB8B00A67B56 /* buffer_set.h */; };
		43AA85FD194EEB8B00A67B56 /* buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8515194EEB8B00A67B56 /* buffer.h */; };
		43AA85FE194EEB8B00A67B56 /* bundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8516194EEB8B00A67B56 /* bundle.h */; };
		43AA85FF194EEB8B00A67B56 /* butler.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8517194EEB8B00A67B56 /* butler.h */; };
		43AA8600194EEB8B00A67B56 /* caimportable.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8518194EEB8B00A67B56 /* caimportable.h */; };
		43AA8601194EEB8B00A67B56 /* capturing_processor.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8519194EEB8B00A67B56 /* capturing_processor.h */; };
		43AA8602194EEB8B00A67B56 /* chan_count.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA851A194EEB8B00A67B56 /* chan_count.h */; };
		43AA8603194EEB8B00A67B56 /* chan_mapping.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA851B194EEB8B00A67B56 /* chan_mapping.h */; };
		43AA8604194EEB8B00A67B56 /* click.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA851C194EEB8B00A67B56 /* click.h */; };
		43AA8605194EEB8B00A67B56 /* comparable_shared_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA851D194EEB8B00A67B56 /* comparable_shared_ptr.h */; };
		43AA8606194EEB8B00A67B56 /* configuration_variable.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA851E194EEB8B00A67B56 /* configuration_variable.h */; };
		43AA8607194EEB8B00A67B56 /* configuration.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA851F194EEB8B00A67B56 /* configuration.h */; };
		43AA8608194EEB8B00A67B56 /* control_protocol_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8520194EEB8B00A67B56 /* control_protocol_manager.h */; };
		43AA8609194EEB8B00A67B56 /* coreaudiosource.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8521194EEB8B00A67B56 /* coreaudiosource.h */; };
		43AA860A194EEB8B00A67B56 /* cycle_timer.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8522194EEB8B00A67B56 /* cycle_timer.h */; };
		43AA860B194EEB8B00A67B56 /* cycles.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8523194EEB8B00A67B56 /* cycles.h */; };
		43AA860C194EEB8B00A67B56 /* data_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8524194EEB8B00A67B56 /* data_type.h */; };
		43AA860D194EEB8B00A67B56 /* dB.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8525194EEB8B00A67B56 /* dB.h */; };
		43AA860E194EEB8B00A67B56 /* debug.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8526194EEB8B00A67B56 /* debug.h */; };
		43AA860F194EEB8B00A67B56 /* delivery.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8527194EEB8B00A67B56 /* delivery.h */; };
		43AA8610194EEB8B00A67B56 /* directory_names.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8528194EEB8B00A67B56 /* directory_names.h */; };
		43AA8611194EEB8B00A67B56 /* diskstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8529194EEB8B00A67B56 /* diskstream.h */; };
		43AA8612194EEB8B00A67B56 /* element_import_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA852A194EEB8B00A67B56 /* element_import_handler.h */; };
		43AA8613194EEB8B00A67B56 /* element_importer.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA852B194EEB8B00A67B56 /* element_importer.h */; };
		43AA8614194EEB8B00A67B56 /* engine_state_controller.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA852C194EEB8B00A67B56 /* engine_state_controller.h */; };
		43AA8615194EEB8B00A67B56 /* event_type_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA852D194EEB8B00A67B56 /* event_type_map.h */; };
		43AA8616194EEB8B00A67B56 /* export_channel_configuration.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA852E194EEB8B00A67B56 /* export_channel_configuration.h */; };
		43AA8617194EEB8B00A67B56 /* export_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA852F194EEB8B00A67B56 /* export_channel.h */; };
		43AA8618194EEB8B00A67B56 /* export_failed.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8530194EEB8B00A67B56 /* export_failed.h */; };
		43AA8619194EEB8B00A67B56 /* export_filename.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8531194EEB8B00A67B56 /* export_filename.h */; };
		43AA861A194EEB8B00A67B56 /* export_format_base.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8532194EEB8B00A67B56 /* export_format_base.h */; };
		43AA861B194EEB8B00A67B56 /* export_format_compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8533194EEB8B00A67B56 /* export_format_compatibility.h */; };
		43AA861C194EEB8B00A67B56 /* export_format_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8534194EEB8B00A67B56 /* export_format_manager.h */; };
		43AA861D194EEB8B00A67B56 /* export_format_specification.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8535194EEB8B00A67B56 /* export_format_specification.h */; };
		43AA861E194EEB8B00A67B56 /* export_formats.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8536194EEB8B00A67B56 /* export_formats.h */; };
		43AA861F194EEB8B00A67B56 /* export_graph_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8537194EEB8B00A67B56 /* export_graph_builder.h */; };
		43AA8620194EEB8B00A67B56 /* export_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8538194EEB8B00A67B56 /* export_handler.h */; };
		43AA8621194EEB8B00A67B56 /* export_multiplication.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8539194EEB8B00A67B56 /* export_multiplication.h */; };
		43AA8622194EEB8B00A67B56 /* export_pointers.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA853A194EEB8B00A67B56 /* export_pointers.h */; };
		43AA8623194EEB8B00A67B56 /* export_preset.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA853B194EEB8B00A67B56 /* export_preset.h */; };
		43AA8624194EEB8B00A67B56 /* export_profile_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA853C194EEB8B00A67B56 /* export_profile_manager.h */; };
		43AA8625194EEB8B00A67B56 /* export_status.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA853D194EEB8B00A67B56 /* export_status.h */; };
		43AA8626194EEB8B00A67B56 /* export_timespan.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA853E194EEB8B00A67B56 /* export_timespan.h */; };
		43AA8627194EEB8B00A67B56 /* file_source.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA853F194EEB8B00A67B56 /* file_source.h */; };
		43AA8628194EEB8B00A67B56 /* filename_extensions.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8540194EEB8B00A67B56 /* filename_extensions.h */; };
		43AA8629194EEB8B00A67B56 /* filesystem_paths.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8541194EEB8B00A67B56 /* filesystem_paths.h */; };
		43AA862A194EEB8B00A67B56 /* filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8542194EEB8B00A67B56 /* filter.h */; };
		43AA862B194EEB8B00A67B56 /* graph.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8543194EEB8B00A67B56 /* graph.h */; };
		43AA862C194EEB8B00A67B56 /* graphnode.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8544194EEB8B00A67B56 /* graphnode.h */; };
		43AA862D194EEB8B00A67B56 /* iec1ppmdsp.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8545194EEB8B00A67B56 /* iec1ppmdsp.h */; };
		43AA862E194EEB8B00A67B56 /* iec2ppmdsp.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8546194EEB8B00A67B56 /* iec2ppmdsp.h */; };
		43AA862F194EEB8B00A67B56 /* import_status.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8547194EEB8B00A67B56 /* import_status.h */; };
		43AA8630194EEB8B00A67B56 /* importable_source.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8548194EEB8B00A67B56 /* importable_source.h */; };
		43AA8631194EEB8B00A67B56 /* instrument_info.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8549194EEB8B00A67B56 /* instrument_info.h */; };
		43AA8632194EEB8B00A67B56 /* internal_return.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA854A194EEB8B00A67B56 /* internal_return.h */; };
		43AA8633194EEB8B00A67B56 /* internal_send.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA854B194EEB8B00A67B56 /* internal_send.h */; };
		43AA8634194EEB8B00A67B56 /* interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA854C194EEB8B00A67B56 /* interpolation.h */; };
		43AA8635194EEB8B00A67B56 /* interthread_info.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA854D194EEB8B00A67B56 /* interthread_info.h */; };
		43AA8636194EEB8B00A67B56 /* io_processor.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA854E194EEB8B00A67B56 /* io_processor.h */; };
		43AA8637194EEB8B00A67B56 /* io.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA854F194EEB8B00A67B56 /* io.h */; };
		43AA8638194EEB8B00A67B56 /* jack_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8550194EEB8B00A67B56 /* jack_utils.h */; };
		43AA8639194EEB8B00A67B56 /* kmeterdsp.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8551194EEB8B00A67B56 /* kmeterdsp.h */; };
		43AA863A194EEB8B00A67B56 /* ladspa_plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8552194EEB8B00A67B56 /* ladspa_plugin.h */; };
		43AA863B194EEB8B00A67B56 /* ladspa.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8553194EEB8B00A67B56 /* ladspa.h */; };
		43AA863C194EEB8B00A67B56 /* latent.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8554194EEB8B00A67B56 /* latent.h */; };
		43AA863D194EEB8B00A67B56 /* libardour_visibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8555194EEB8B00A67B56 /* libardour_visibility.h */; };
		43AA863E194EEB8B00A67B56 /* linux_vst_support.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8556194EEB8B00A67B56 /* linux_vst_support.h */; };
		43AA863F194EEB8B00A67B56 /* location_importer.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8557194EEB8B00A67B56 /* location_importer.h */; };
		43AA8640194EEB8B00A67B56 /* location.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8558194EEB8B00A67B56 /* location.h */; };
		43AA8641194EEB8B00A67B56 /* logcurve.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8559194EEB8B00A67B56 /* logcurve.h */; };
		43AA8642194EEB8B00A67B56 /* lv2_plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA855A194EEB8B00A67B56 /* lv2_plugin.h */; };
		43AA8643194EEB8B00A67B56 /* lxvst_plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA855B194EEB8B00A67B56 /* lxvst_plugin.h */; };
		43AA8644194EEB8B00A67B56 /* meter.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA855C194EEB8B00A67B56 /* meter.h */; };
		43AA8645194EEB8B00A67B56 /* midi_automation_list_binder.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA855D194EEB8B00A67B56 /* midi_automation_list_binder.h */; };
		43AA8646194EEB8B00A67B56 /* midi_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA855E194EEB8B00A67B56 /* midi_buffer.h */; };
		43AA8647194EEB8B00A67B56 /* midi_diskstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA855F194EEB8B00A67B56 /* midi_diskstream.h */; };
		43AA8648194EEB8B00A67B56 /* midi_model.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8560194EEB8B00A67B56 /* midi_model.h */; };
		43AA8649194EEB8B00A67B56 /* midi_operator.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8561194EEB8B00A67B56 /* midi_operator.h */; };
		43AA864A194EEB8B00A67B56 /* midi_patch_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8562194EEB8B00A67B56 /* midi_patch_manager.h */; };
		43AA864B194EEB8B00A67B56 /* midi_playlist_source.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8563194EEB8B00A67B56 /* midi_playlist_source.h */; };
		43AA864C194EEB8B00A67B56 /* midi_playlist.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8564194EEB8B00A67B56 /* midi_playlist.h */; };
		43AA864D194EEB8B00A67B56 /* midi_port.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8565194EEB8B00A67B56 /* midi_port.h */; };
		43AA864E194EEB8B00A67B56 /* midi_region.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8566194EEB8B00A67B56 /* midi_region.h */; };
		43AA864F194EEB8B00A67B56 /* midi_ring_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8567194EEB8B00A67B56 /* midi_ring_buffer.h */; };
		43AA8650194EEB8B00A67B56 /* midi_source.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8568194EEB8B00A67B56 /* midi_source.h */; };
		43AA8651194EEB8B00A67B56 /* midi_state_tracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8569194EEB8B00A67B56 /* midi_state_tracker.h */; };
		43AA8652194EEB8B00A67B56 /* midi_stretch.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA856A194EEB8B00A67B56 /* midi_stretch.h */; };
		43AA8653194EEB8B00A67B56 /* midi_track.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA856B194EEB8B00A67B56 /* midi_track.h */; };
		43AA8654194EEB8B00A67B56 /* midi_ui.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA856C194EEB8B00A67B56 /* midi_ui.h */; };
		43AA8655194EEB8B00A67B56 /* midiport_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA856D194EEB8B00A67B56 /* midiport_manager.h */; };
		43AA8656194EEB8B00A67B56 /* mix.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA856E194EEB8B00A67B56 /* mix.h */; };
		43AA8657194EEB8B00A67B56 /* monitor_processor.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA856F194EEB8B00A67B56 /* monitor_processor.h */; };
		43AA8658194EEB8B00A67B56 /* movable.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8570194EEB8B00A67B56 /* movable.h */; };
		43AA8659194EEB8B00A67B56 /* msvc_libardour.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8571194EEB8B00A67B56 /* msvc_libardour.h */; };
		43AA865A194EEB8B00A67B56 /* mtdm.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8572194EEB8B00A67B56 /* mtdm.h */; };
		43AA865B194EEB8B00A67B56 /* mute_master.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8573194EEB8B00A67B56 /* mute_master.h */; };
		43AA865C194EEB8B00A67B56 /* noise.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8574194EEB8B00A67B56 /* noise.h */; };
		43AA865D194EEB8B00A67B56 /* onset_detector.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8575194EEB8B00A67B56 /* onset_detector.h */; };
		43AA865E194EEB8B00A67B56 /* operations.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8576194EEB8B00A67B56 /* operations.h */; };
		43AA865F194EEB8B00A67B56 /* pan_controllable.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8577194EEB8B00A67B56 /* pan_controllable.h */; };
		43AA8660194EEB8B00A67B56 /* pannable.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8578194EEB8B00A67B56 /* pannable.h */; };
		43AA8661194EEB8B00A67B56 /* panner_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8579194EEB8B00A67B56 /* panner_manager.h */; };
		43AA8662194EEB8B00A67B56 /* panner_shell.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA857A194EEB8B00A67B56 /* panner_shell.h */; };
		43AA8663194EEB8B00A67B56 /* panner.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA857B194EEB8B00A67B56 /* panner.h */; };
		43AA8664194EEB8B00A67B56 /* pcm_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA857C194EEB8B00A67B56 /* pcm_utils.h */; };
		43AA8665194EEB8B00A67B56 /* peak.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA857D194EEB8B00A67B56 /* peak.h */; };
		43AA8666194EEB8B00A67B56 /* pi_controller.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA857E194EEB8B00A67B56 /* pi_controller.h */; };
		43AA8667194EEB8B00A67B56 /* pitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA857F194EEB8B00A67B56 /* pitch.h */; };
		43AA8668194EEB8B00A67B56 /* playlist_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8580194EEB8B00A67B56 /* playlist_factory.h */; };
		43AA8669194EEB8B00A67B56 /* playlist_source.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8581194EEB8B00A67B56 /* playlist_source.h */; };
		43AA866A194EEB8B00A67B56 /* playlist.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8582194EEB8B00A67B56 /* playlist.h */; };
		43AA866B194EEB8B00A67B56 /* plugin_insert.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8583194EEB8B00A67B56 /* plugin_insert.h */; };
		43AA866C194EEB8B00A67B56 /* plugin_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8584194EEB8B00A67B56 /* plugin_manager.h */; };
		43AA866D194EEB8B00A67B56 /* plugin_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8585194EEB8B00A67B56 /* plugin_types.h */; };
		43AA866E194EEB8B00A67B56 /* plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8586194EEB8B00A67B56 /* plugin.h */; };
		43AA866F194EEB8B00A67B56 /* port_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8587194EEB8B00A67B56 /* port_engine.h */; };
		43AA8670194EEB8B00A67B56 /* port_insert.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8588194EEB8B00A67B56 /* port_insert.h */; };
		43AA8671194EEB8B00A67B56 /* port_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8589194EEB8B00A67B56 /* port_manager.h */; };
		43AA8672194EEB8B00A67B56 /* port_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA858A194EEB8B00A67B56 /* port_set.h */; };
		43AA8673194EEB8B00A67B56 /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA858B194EEB8B00A67B56 /* port.h */; };
		43AA8674194EEB8B00A67B56 /* process_thread.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA858C194EEB8B00A67B56 /* process_thread.h */; };
		43AA8675194EEB8B00A67B56 /* processor.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA858D194EEB8B00A67B56 /* processor.h */; };
		43AA8676194EEB8B00A67B56 /* profile.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA858E194EEB8B00A67B56 /* profile.h */; };
		43AA8677194EEB8B00A67B56 /* progress.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA858F194EEB8B00A67B56 /* progress.h */; };
		43AA8678194EEB8B00A67B56 /* proxy_controllable.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8590194EEB8B00A67B56 /* proxy_controllable.h */; };
		43AA8679194EEB8B00A67B56 /* public_diskstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8591194EEB8B00A67B56 /* public_diskstream.h */; };
		43AA867A194EEB8B00A67B56 /* quantize.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8592194EEB8B00A67B56 /* quantize.h */; };
		43AA867B194EEB8B00A67B56 /* rb_effect.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8593194EEB8B00A67B56 /* rb_effect.h */; };
		43AA867C194EEB8B00A67B56 /* rc_configuration_vars.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8594194EEB8B00A67B56 /* rc_configuration_vars.h */; };
		43AA867D194EEB8B00A67B56 /* rc_configuration.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8595194EEB8B00A67B56 /* rc_configuration.h */; };
		43AA867E194EEB8B00A67B56 /* readable.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8596194EEB8B00A67B56 /* readable.h */; };
		43AA867F194EEB8B00A67B56 /* recent_sessions.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8597194EEB8B00A67B56 /* recent_sessions.h */; };
		43AA8680194EEB8B00A67B56 /* region_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8598194EEB8B00A67B56 /* region_factory.h */; };
		43AA8681194EEB8B00A67B56 /* region_sorters.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA8599194EEB8B00A67B56 /* region_sorters.h */; };
		43AA8682194EEB8B00A67B56 /* region.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA859A194EEB8B00A67B56 /* region.h */; };
		43AA8683194EEB8B00A67B56 /* resampled_source.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA859B194EEB8B00A67B56 /* resampled_source.h */; };
		43AA8684194EEB8B00A67B56 /* return.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA859C194EEB8B00A67B56 /* return.h */; };
		43AA8685194EEB8B00A67B56 /* reverse.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA859D194EEB8B00A67B56 /* reverse.h */; };
		43AA8686194EEB8B00A67B56 /* revision.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA859E194EEB8B00A67B56 /* revision.h */; };
		43AA8687194EEB8B00A67B56 /* route_graph.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA859F194EEB8B00A67B56 /* route_graph.h */; };
		43AA8688194EEB8B00A67B56 /* route_group_member.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85A0194EEB8B00A67B56 /* route_group_member.h */; };
		43AA8689194EEB8B00A67B56 /* route_group_specialized.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85A1194EEB8B00A67B56 /* route_group_specialized.h */; };
		43AA868A194EEB8B00A67B56 /* route_group.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85A2194EEB8B00A67B56 /* route_group.h */; };
		43AA868B194EEB8B00A67B56 /* route.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85A3194EEB8B00A67B56 /* route.h */; };
		43AA868C194EEB8B00A67B56 /* runtime_functions.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85A4194EEB8B00A67B56 /* runtime_functions.h */; };
		43AA868D194EEB8B00A67B56 /* search_paths.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85A5194EEB8B00A67B56 /* search_paths.h */; };
		43AA868E194EEB8B00A67B56 /* send.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85A6194EEB8B00A67B56 /* send.h */; };
		43AA868F194EEB8B00A67B56 /* session_configuration_vars.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85A7194EEB8B00A67B56 /* session_configuration_vars.h */; };
		43AA8690194EEB8B00A67B56 /* session_configuration.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85A8194EEB8B00A67B56 /* session_configuration.h */; };
		43AA8691194EEB8B00A67B56 /* session_directory.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85A9194EEB8B00A67B56 /* session_directory.h */; };
		43AA8692194EEB8B00A67B56 /* session_event.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85AA194EEB8B00A67B56 /* session_event.h */; };
		43AA8693194EEB8B00A67B56 /* session_handle.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85AB194EEB8B00A67B56 /* session_handle.h */; };
		43AA8694194EEB8B00A67B56 /* session_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85AC194EEB8B00A67B56 /* session_metadata.h */; };
		43AA8695194EEB8B00A67B56 /* session_object.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85AD194EEB8B00A67B56 /* session_object.h */; };
		43AA8696194EEB8B00A67B56 /* session_playlist.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85AE194EEB8B00A67B56 /* session_playlist.h */; };
		43AA8697194EEB8B00A67B56 /* session_playlists.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85AF194EEB8B00A67B56 /* session_playlists.h */; };
		43AA8698194EEB8B00A67B56 /* session_route.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85B0194EEB8B00A67B56 /* session_route.h */; };
		43AA8699194EEB8B00A67B56 /* session_state_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85B1194EEB8B00A67B56 /* session_state_utils.h */; };
		43AA869A194EEB8B00A67B56 /* session_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85B2194EEB8B00A67B56 /* session_utils.h */; };
		43AA869B194EEB8B00A67B56 /* session.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85B3194EEB8B00A67B56 /* session.h */; };
		43AA869C194EEB8B00A67B56 /* silentfilesource.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85B4194EEB8B00A67B56 /* silentfilesource.h */; };
		43AA869D194EEB8B00A67B56 /* slave.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85B5194EEB8B00A67B56 /* slave.h */; };
		43AA869E194EEB8B00A67B56 /* smf_source.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85B6194EEB8B00A67B56 /* smf_source.h */; };
		43AA869F194EEB8B00A67B56 /* sndfile_helpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85B7194EEB8B00A67B56 /* sndfile_helpers.h */; };
		43AA86A0194EEB8B00A67B56 /* sndfileimportable.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85B8194EEB8B00A67B56 /* sndfileimportable.h */; };
		43AA86A1194EEB8B00A67B56 /* sndfilesource.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85B9194EEB8B00A67B56 /* sndfilesource.h */; };
		43AA86A2194EEB8B00A67B56 /* soundseq.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85BA194EEB8B00A67B56 /* soundseq.h */; };
		43AA86A3194EEB8B00A67B56 /* source_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85BB194EEB8B00A67B56 /* source_factory.h */; };
		43AA86A4194EEB8B00A67B56 /* source.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85BC194EEB8B00A67B56 /* source.h */; };
		43AA86A5194EEB8B00A67B56 /* speaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85BD194EEB8B00A67B56 /* speaker.h */; };
		43AA86A6194EEB8B00A67B56 /* speakers.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85BE194EEB8B00A67B56 /* speakers.h */; };
		43AA86A7194EEB8B00A67B56 /* spline.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85BF194EEB8B00A67B56 /* spline.h */; };
		43AA86A8194EEB8B00A67B56 /* srcfilesource.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85C0194EEB8B00A67B56 /* srcfilesource.h */; };
		43AA86A9194EEB8B00A67B56 /* stretch.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85C1194EEB8B00A67B56 /* stretch.h */; };
		43AA86AA194EEB8B00A67B56 /* strip_silence.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85C2194EEB8B00A67B56 /* strip_silence.h */; };
		43AA86AB194EEB8B00A67B56 /* system_exec.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85C3194EEB8B00A67B56 /* system_exec.h */; };
		43AA86AC194EEB8B00A67B56 /* tape_file_matcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85C4194EEB8B00A67B56 /* tape_file_matcher.h */; };
		43AA86AD194EEB8B00A67B56 /* template_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85C5194EEB8B00A67B56 /* template_utils.h */; };
		43AA86AE194EEB8B00A67B56 /* tempo_map_importer.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85C6194EEB8B00A67B56 /* tempo_map_importer.h */; };
		43AA86AF194EEB8B00A67B56 /* tempo.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85C7194EEB8B00A67B56 /* tempo.h */; };
		43AA86B0194EEB8B00A67B56 /* thread_buffers.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85C8194EEB8B00A67B56 /* thread_buffers.h */; };
		43AA86B1194EEB8B00A67B56 /* ticker.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85C9194EEB8B00A67B56 /* ticker.h */; };
		43AA86B2194EEB8B00A67B56 /* timecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85CA194EEB8B00A67B56 /* timecode.h */; };
		43AA86B3194EEB8B00A67B56 /* timefx_request.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85CB194EEB8B00A67B56 /* timefx_request.h */; };
		43AA86B4194EEB8B00A67B56 /* timestamps.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85CC194EEB8B00A67B56 /* timestamps.h */; };
		43AA86B5194EEB8B00A67B56 /* track.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85CD194EEB8B00A67B56 /* track.h */; };
		43AA86B6194EEB8B00A67B56 /* transient_detector.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85CE194EEB8B00A67B56 /* transient_detector.h */; };
		43AA86B7194EEB8B00A67B56 /* trimmable.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85CF194EEB8B00A67B56 /* trimmable.h */; };
		43AA86B8194EEB8B00A67B56 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85D0194EEB8B00A67B56 /* types.h */; };
		43AA86B9194EEB8B00A67B56 /* unknown_processor.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85D1194EEB8B00A67B56 /* unknown_processor.h */; };
		43AA86BA194EEB8B00A67B56 /* uri_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85D2194EEB8B00A67B56 /* uri_map.h */; };
		43AA86BB194EEB8B00A67B56 /* user_bundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85D3194EEB8B00A67B56 /* user_bundle.h */; };
		43AA86BC194EEB8B00A67B56 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85D4194EEB8B00A67B56 /* utils.h */; };
		43AA86BD194EEB8B00A67B56 /* version.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85D5194EEB8B00A67B56 /* version.h */; };
		43AA86BE194EEB8B00A67B56 /* vst_info_file.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85D6194EEB8B00A67B56 /* vst_info_file.h */; };
		43AA86BF194EEB8B00A67B56 /* vst_plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85D7194EEB8B00A67B56 /* vst_plugin.h */; };
		43AA86C0194EEB8B00A67B56 /* vst_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85D8194EEB8B00A67B56 /* vst_types.h */; };
		43AA86C1194EEB8B00A67B56 /* vumeterdsp.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85D9194EEB8B00A67B56 /* vumeterdsp.h */; };
		43AA86C2194EEB8B00A67B56 /* windows_vst_plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85DA194EEB8B00A67B56 /* windows_vst_plugin.h */; };
		43AA86C3194EEB8B00A67B56 /* worker.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA85DB194EEB8B00A67B56 /* worker.h */; };
		43AA86C6194EEBAF00A67B56 /* vestige.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA86C5194EEBAF00A67B56 /* vestige.h */; };
		43AA86D0194EEC1400A67B56 /* gettext.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA86CD194EEC1400A67B56 /* gettext.h */; };
		43AA86D1194EEC1400A67B56 /* lv2_evbuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA86CE194EEC1400A67B56 /* lv2_evbuf.h */; };
		43AA86D2194EEC1400A67B56 /* rdff.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AA86CF194EEC1400A67B56 /* rdff.h */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
		432652FC194EF73C00BEFB46 /* amp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = amp.h; sourceTree = "<group>"; };
		432652FD194EF73C00BEFB46 /* analyser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = analyser.h; sourceTree = "<group>"; };
		432652FE194EF73C00BEFB46 /* ardour.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ardour.h; sourceTree = "<group>"; };
		432652FF194EF73C00BEFB46 /* async_midi_port.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = async_midi_port.h; sourceTree = "<group>"; };
		43265300194EF73C00BEFB46 /* audio_backend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = audio_backend.h; sourceTree = "<group>"; };
		43265301194EF73C00BEFB46 /* audio_buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = audio_buffer.h; sourceTree = "<group>"; };
		43265302194EF73C00BEFB46 /* audio_diskstream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = audio_diskstream.h; sourceTree = "<group>"; };
		43265303194EF73C00BEFB46 /* audio_library.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = audio_library.h; sourceTree = "<group>"; };
		43265304194EF73C00BEFB46 /* audio_playlist_importer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = audio_playlist_importer.h; sourceTree = "<group>"; };
		43265305194EF73C00BEFB46 /* audio_playlist_source.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = audio_playlist_source.h; sourceTree = "<group>"; };
		43265306194EF73C00BEFB46 /* audio_port.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = audio_port.h; sourceTree = "<group>"; };
		43265307194EF73C00BEFB46 /* audio_region_importer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = audio_region_importer.h; sourceTree = "<group>"; };
		43265308194EF73C00BEFB46 /* audio_track.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = audio_track.h; sourceTree = "<group>"; };
		43265309194EF73C00BEFB46 /* audio_track_importer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = audio_track_importer.h; sourceTree = "<group>"; };
		4326530A194EF73C00BEFB46 /* audio_unit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = audio_unit.h; sourceTree = "<group>"; };
		4326530B194EF73C00BEFB46 /* audioanalyser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = audioanalyser.h; sourceTree = "<group>"; };
		4326530C194EF73C00BEFB46 /* audioengine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = audioengine.h; sourceTree = "<group>"; };
		4326530D194EF73C00BEFB46 /* audiofile_tagger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = audiofile_tagger.h; sourceTree = "<group>"; };
		4326530E194EF73C00BEFB46 /* audiofilesource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = audiofilesource.h; sourceTree = "<group>"; };
		4326530F194EF73C00BEFB46 /* audioplaylist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = audioplaylist.h; sourceTree = "<group>"; };
		43265310194EF73C00BEFB46 /* audioregion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = audioregion.h; sourceTree = "<group>"; };
		43265311194EF73C00BEFB46 /* audiosource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = audiosource.h; sourceTree = "<group>"; };
		43265312194EF73C00BEFB46 /* auditioner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = auditioner.h; sourceTree = "<group>"; };
		43265313194EF73C00BEFB46 /* auto_bundle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = auto_bundle.h; sourceTree = "<group>"; };
		43265314194EF73C00BEFB46 /* automatable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = automatable.h; sourceTree = "<group>"; };
		43265315194EF73C00BEFB46 /* automatable_sequence.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = automatable_sequence.h; sourceTree = "<group>"; };
		43265316194EF73C00BEFB46 /* automation_control.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = automation_control.h; sourceTree = "<group>"; };
		43265317194EF73C00BEFB46 /* automation_list.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = automation_list.h; sourceTree = "<group>"; };
		43265318194EF73C00BEFB46 /* automation_watch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = automation_watch.h; sourceTree = "<group>"; };
		43265319194EF73C00BEFB46 /* beats_frames_converter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = beats_frames_converter.h; sourceTree = "<group>"; };
		4326531A194EF73C00BEFB46 /* broadcast_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = broadcast_info.h; sourceTree = "<group>"; };
		4326531B194EF73C00BEFB46 /* buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buffer.h; sourceTree = "<group>"; };
		4326531C194EF73C00BEFB46 /* buffer_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buffer_manager.h; sourceTree = "<group>"; };
		4326531D194EF73C00BEFB46 /* buffer_set.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buffer_set.h; sourceTree = "<group>"; };
		4326531E194EF73C00BEFB46 /* bundle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bundle.h; sourceTree = "<group>"; };
		4326531F194EF73C00BEFB46 /* butler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = butler.h; sourceTree = "<group>"; };
		43265320194EF73C00BEFB46 /* caimportable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = caimportable.h; sourceTree = "<group>"; };
		43265321194EF73C00BEFB46 /* capturing_processor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = capturing_processor.h; sourceTree = "<group>"; };
		43265322194EF73C00BEFB46 /* chan_count.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chan_count.h; sourceTree = "<group>"; };
		43265323194EF73C00BEFB46 /* chan_mapping.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chan_mapping.h; sourceTree = "<group>"; };
		43265324194EF73C00BEFB46 /* click.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = click.h; sourceTree = "<group>"; };
		43265325194EF73C00BEFB46 /* comparable_shared_ptr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = comparable_shared_ptr.h; sourceTree = "<group>"; };
		43265326194EF73C00BEFB46 /* configuration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = configuration.h; sourceTree = "<group>"; };
		43265327194EF73C00BEFB46 /* configuration_variable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = configuration_variable.h; sourceTree = "<group>"; };
		43265328194EF73C00BEFB46 /* control_protocol_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = control_protocol_manager.h; sourceTree = "<group>"; };
		43265329194EF73C00BEFB46 /* coreaudiosource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = coreaudiosource.h; sourceTree = "<group>"; };
		4326532A194EF73C00BEFB46 /* cycle_timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cycle_timer.h; sourceTree = "<group>"; };
		4326532B194EF73C00BEFB46 /* cycles.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cycles.h; sourceTree = "<group>"; };
		4326532C194EF73C00BEFB46 /* data_type.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = data_type.h; sourceTree = "<group>"; };
		4326532D194EF73C00BEFB46 /* dB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dB.h; sourceTree = "<group>"; };
		4326532E194EF73C00BEFB46 /* debug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = debug.h; sourceTree = "<group>"; };
		4326532F194EF73C00BEFB46 /* delivery.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = delivery.h; sourceTree = "<group>"; };
		43265330194EF73C00BEFB46 /* directory_names.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = directory_names.h; sourceTree = "<group>"; };
		43265331194EF73C00BEFB46 /* diskstream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = diskstream.h; sourceTree = "<group>"; };
		43265332194EF73C00BEFB46 /* element_import_handler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = element_import_handler.h; sourceTree = "<group>"; };
		43265333194EF73C00BEFB46 /* element_importer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = element_importer.h; sourceTree = "<group>"; };
		43265334194EF73C00BEFB46 /* engine_state_controller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = engine_state_controller.h; sourceTree = "<group>"; };
		43265335194EF73C00BEFB46 /* event_type_map.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = event_type_map.h; sourceTree = "<group>"; };
		43265336194EF73C00BEFB46 /* export_channel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = export_channel.h; sourceTree = "<group>"; };
		43265337194EF73C00BEFB46 /* export_channel_configuration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = export_channel_configuration.h; sourceTree = "<group>"; };
		43265338194EF73C00BEFB46 /* export_failed.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = export_failed.h; sourceTree = "<group>"; };
		43265339194EF73C00BEFB46 /* export_filename.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = export_filename.h; sourceTree = "<group>"; };
		4326533A194EF73C00BEFB46 /* export_format_base.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = export_format_base.h; sourceTree = "<group>"; };
		4326533B194EF73C00BEFB46 /* export_format_compatibility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = export_format_compatibility.h; sourceTree = "<group>"; };
		4326533C194EF73C00BEFB46 /* export_format_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = export_format_manager.h; sourceTree = "<group>"; };
		4326533D194EF73C00BEFB46 /* export_format_specification.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = export_format_specification.h; sourceTree = "<group>"; };
		4326533E194EF73C00BEFB46 /* export_formats.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = export_formats.h; sourceTree = "<group>"; };
		4326533F194EF73C00BEFB46 /* export_graph_builder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = export_graph_builder.h; sourceTree = "<group>"; };
		43265340194EF73C00BEFB46 /* export_handler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = export_handler.h; sourceTree = "<group>"; };
		43265341194EF73C00BEFB46 /* export_multiplication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = export_multiplication.h; sourceTree = "<group>"; };
		43265342194EF73C00BEFB46 /* export_pointers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = export_pointers.h; sourceTree = "<group>"; };
		43265343194EF73C00BEFB46 /* export_preset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = export_preset.h; sourceTree = "<group>"; };
		43265344194EF73C00BEFB46 /* export_profile_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = export_profile_manager.h; sourceTree = "<group>"; };
		43265345194EF73C00BEFB46 /* export_status.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = export_status.h; sourceTree = "<group>"; };
		43265346194EF73C00BEFB46 /* export_timespan.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = export_timespan.h; sourceTree = "<group>"; };
		43265347194EF73C00BEFB46 /* file_source.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = file_source.h; sourceTree = "<group>"; };
		43265348194EF73C00BEFB46 /* filename_extensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = filename_extensions.h; sourceTree = "<group>"; };
		43265349194EF73C00BEFB46 /* filesystem_paths.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = filesystem_paths.h; sourceTree = "<group>"; };
		4326534A194EF73C00BEFB46 /* filter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = filter.h; sourceTree = "<group>"; };
		4326534B194EF73C00BEFB46 /* graph.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = graph.h; sourceTree = "<group>"; };
		4326534C194EF73C00BEFB46 /* graphnode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = graphnode.h; sourceTree = "<group>"; };
		4326534D194EF73C00BEFB46 /* iec1ppmdsp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = iec1ppmdsp.h; sourceTree = "<group>"; };
		4326534E194EF73C00BEFB46 /* iec2ppmdsp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = iec2ppmdsp.h; sourceTree = "<group>"; };
		4326534F194EF73C00BEFB46 /* import_status.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = import_status.h; sourceTree = "<group>"; };
		43265350194EF73C00BEFB46 /* importable_source.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = importable_source.h; sourceTree = "<group>"; };
		43265351194EF73C00BEFB46 /* instrument_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = instrument_info.h; sourceTree = "<group>"; };
		43265352194EF73C00BEFB46 /* internal_return.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = internal_return.h; sourceTree = "<group>"; };
		43265353194EF73C00BEFB46 /* internal_send.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = internal_send.h; sourceTree = "<group>"; };
		43265354194EF73C00BEFB46 /* interpolation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = interpolation.h; sourceTree = "<group>"; };
		43265355194EF73C00BEFB46 /* interthread_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = interthread_info.h; sourceTree = "<group>"; };
		43265356194EF73C00BEFB46 /* io.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = io.h; sourceTree = "<group>"; };
		43265357194EF73C00BEFB46 /* io_processor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = io_processor.h; sourceTree = "<group>"; };
		43265358194EF73C00BEFB46 /* jack_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jack_utils.h; sourceTree = "<group>"; };
		43265359194EF73C00BEFB46 /* kmeterdsp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kmeterdsp.h; sourceTree = "<group>"; };
		4326535A194EF73C00BEFB46 /* ladspa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ladspa.h; sourceTree = "<group>"; };
		4326535B194EF73C00BEFB46 /* ladspa_plugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ladspa_plugin.h; sourceTree = "<group>"; };
		4326535C194EF73C00BEFB46 /* latent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = latent.h; sourceTree = "<group>"; };
		4326535D194EF73C00BEFB46 /* libardour_visibility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = libardour_visibility.h; sourceTree = "<group>"; };
		4326535E194EF73C00BEFB46 /* linux_vst_support.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = linux_vst_support.h; sourceTree = "<group>"; };
		4326535F194EF73C00BEFB46 /* location.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = location.h; sourceTree = "<group>"; };
		43265360194EF73C00BEFB46 /* location_importer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = location_importer.h; sourceTree = "<group>"; };
		43265361194EF73C00BEFB46 /* logcurve.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = logcurve.h; sourceTree = "<group>"; };
		43265362194EF73C00BEFB46 /* lv2_plugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lv2_plugin.h; sourceTree = "<group>"; };
		43265363194EF73C00BEFB46 /* lxvst_plugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lxvst_plugin.h; sourceTree = "<group>"; };
		43265364194EF73C00BEFB46 /* meter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = meter.h; sourceTree = "<group>"; };
		43265365194EF73C00BEFB46 /* midi_automation_list_binder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = midi_automation_list_binder.h; sourceTree = "<group>"; };
		43265366194EF73C00BEFB46 /* midi_buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = midi_buffer.h; sourceTree = "<group>"; };
		43265367194EF73C00BEFB46 /* midi_diskstream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = midi_diskstream.h; sourceTree = "<group>"; };
		43265368194EF73C00BEFB46 /* midi_model.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = midi_model.h; sourceTree = "<group>"; };
		43265369194EF73C00BEFB46 /* midi_operator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = midi_operator.h; sourceTree = "<group>"; };
		4326536A194EF73C00BEFB46 /* midi_patch_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = midi_patch_manager.h; sourceTree = "<group>"; };
		4326536B194EF73C00BEFB46 /* midi_playlist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = midi_playlist.h; sourceTree = "<group>"; };
		4326536C194EF73C00BEFB46 /* midi_playlist_source.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = midi_playlist_source.h; sourceTree = "<group>"; };
		4326536D194EF73C00BEFB46 /* midi_port.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = midi_port.h; sourceTree = "<group>"; };
		4326536E194EF73C00BEFB46 /* midi_region.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = midi_region.h; sourceTree = "<group>"; };
		4326536F194EF73C00BEFB46 /* midi_ring_buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = midi_ring_buffer.h; sourceTree = "<group>"; };
		43265370194EF73C00BEFB46 /* midi_source.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = midi_source.h; sourceTree = "<group>"; };
		43265371194EF73C00BEFB46 /* midi_state_tracker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = midi_state_tracker.h; sourceTree = "<group>"; };
		43265372194EF73C00BEFB46 /* midi_stretch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = midi_stretch.h; sourceTree = "<group>"; };
		43265373194EF73C00BEFB46 /* midi_track.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = midi_track.h; sourceTree = "<group>"; };
		43265374194EF73C00BEFB46 /* midi_ui.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = midi_ui.h; sourceTree = "<group>"; };
		43265375194EF73C00BEFB46 /* midiport_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = midiport_manager.h; sourceTree = "<group>"; };
		43265376194EF73C00BEFB46 /* mix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mix.h; sourceTree = "<group>"; };
		43265377194EF73C00BEFB46 /* monitor_processor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = monitor_processor.h; sourceTree = "<group>"; };
		43265378194EF73C00BEFB46 /* movable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = movable.h; sourceTree = "<group>"; };
		43265379194EF73C00BEFB46 /* msvc_libardour.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = msvc_libardour.h; sourceTree = "<group>"; };
		4326537A194EF73C00BEFB46 /* mtdm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mtdm.h; sourceTree = "<group>"; };
		4326537B194EF73C00BEFB46 /* mute_master.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mute_master.h; sourceTree = "<group>"; };
		4326537C194EF73C00BEFB46 /* noise.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = noise.h; sourceTree = "<group>"; };
		4326537D194EF73C00BEFB46 /* onset_detector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = onset_detector.h; sourceTree = "<group>"; };
		4326537E194EF73C00BEFB46 /* operations.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = operations.h; sourceTree = "<group>"; };
		4326537F194EF73C00BEFB46 /* pan_controllable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pan_controllable.h; sourceTree = "<group>"; };
		43265380194EF73C00BEFB46 /* pannable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pannable.h; sourceTree = "<group>"; };
		43265381194EF73C00BEFB46 /* panner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = panner.h; sourceTree = "<group>"; };
		43265382194EF73C00BEFB46 /* panner_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = panner_manager.h; sourceTree = "<group>"; };
		43265383194EF73C00BEFB46 /* panner_shell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = panner_shell.h; sourceTree = "<group>"; };
		43265384194EF73C00BEFB46 /* pcm_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pcm_utils.h; sourceTree = "<group>"; };
		43265385194EF73C00BEFB46 /* peak.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = peak.h; sourceTree = "<group>"; };
		43265386194EF73C00BEFB46 /* pi_controller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pi_controller.h; sourceTree = "<group>"; };
		43265387194EF73C00BEFB46 /* pitch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pitch.h; sourceTree = "<group>"; };
		43265388194EF73C00BEFB46 /* playlist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = playlist.h; sourceTree = "<group>"; };
		43265389194EF73C00BEFB46 /* playlist_factory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = playlist_factory.h; sourceTree = "<group>"; };
		4326538A194EF73C00BEFB46 /* playlist_source.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = playlist_source.h; sourceTree = "<group>"; };
		4326538B194EF73C00BEFB46 /* plugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plugin.h; sourceTree = "<group>"; };
		4326538C194EF73C00BEFB46 /* plugin_insert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plugin_insert.h; sourceTree = "<group>"; };
		4326538D194EF73C00BEFB46 /* plugin_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plugin_manager.h; sourceTree = "<group>"; };
		4326538E194EF73C00BEFB46 /* plugin_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plugin_types.h; sourceTree = "<group>"; };
		4326538F194EF73C00BEFB46 /* port.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = port.h; sourceTree = "<group>"; };
		43265390194EF73C00BEFB46 /* port_engine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = port_engine.h; sourceTree = "<group>"; };
		43265391194EF73C00BEFB46 /* port_insert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = port_insert.h; sourceTree = "<group>"; };
		43265392194EF73C00BEFB46 /* port_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = port_manager.h; sourceTree = "<group>"; };
		43265393194EF73C00BEFB46 /* port_set.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = port_set.h; sourceTree = "<group>"; };
		43265394194EF73C00BEFB46 /* process_thread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = process_thread.h; sourceTree = "<group>"; };
		43265395194EF73C00BEFB46 /* processor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = processor.h; sourceTree = "<group>"; };
		43265396194EF73C00BEFB46 /* profile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = profile.h; sourceTree = "<group>"; };
		43265397194EF73C00BEFB46 /* progress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = progress.h; sourceTree = "<group>"; };
		43265398194EF73C00BEFB46 /* proxy_controllable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = proxy_controllable.h; sourceTree = "<group>"; };
		43265399194EF73C00BEFB46 /* public_diskstream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = public_diskstream.h; sourceTree = "<group>"; };
		4326539A194EF73C00BEFB46 /* quantize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = quantize.h; sourceTree = "<group>"; };
		4326539B194EF73C00BEFB46 /* rb_effect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rb_effect.h; sourceTree = "<group>"; };
		4326539C194EF73C00BEFB46 /* rc_configuration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rc_configuration.h; sourceTree = "<group>"; };
		4326539D194EF73C00BEFB46 /* rc_configuration_vars.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rc_configuration_vars.h; sourceTree = "<group>"; };
		4326539E194EF73C00BEFB46 /* readable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = readable.h; sourceTree = "<group>"; };
		4326539F194EF73C00BEFB46 /* recent_sessions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = recent_sessions.h; sourceTree = "<group>"; };
		432653A0194EF73C00BEFB46 /* region.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = region.h; sourceTree = "<group>"; };
		432653A1194EF73C00BEFB46 /* region_factory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = region_factory.h; sourceTree = "<group>"; };
		432653A2194EF73C00BEFB46 /* region_sorters.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = region_sorters.h; sourceTree = "<group>"; };
		432653A3194EF73C00BEFB46 /* resampled_source.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = resampled_source.h; sourceTree = "<group>"; };
		432653A4194EF73C00BEFB46 /* return.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = return.h; sourceTree = "<group>"; };
		432653A5194EF73C00BEFB46 /* reverse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = reverse.h; sourceTree = "<group>"; };
		432653A6194EF73C00BEFB46 /* revision.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = revision.h; sourceTree = "<group>"; };
		432653A7194EF73C00BEFB46 /* route.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = route.h; sourceTree = "<group>"; };
		432653A8194EF73C00BEFB46 /* route_graph.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = route_graph.h; sourceTree = "<group>"; };
		432653A9194EF73C00BEFB46 /* route_group.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = route_group.h; sourceTree = "<group>"; };
		432653AA194EF73C00BEFB46 /* route_group_member.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = route_group_member.h; sourceTree = "<group>"; };
		432653AB194EF73C00BEFB46 /* route_group_specialized.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = route_group_specialized.h; sourceTree = "<group>"; };
		432653AC194EF73C00BEFB46 /* runtime_functions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = runtime_functions.h; sourceTree = "<group>"; };
		432653AD194EF73C00BEFB46 /* search_paths.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = search_paths.h; sourceTree = "<group>"; };
		432653AE194EF73C00BEFB46 /* send.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = send.h; sourceTree = "<group>"; };
		432653AF194EF73C00BEFB46 /* session.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = session.h; sourceTree = "<group>"; };
		432653B0194EF73C00BEFB46 /* session_configuration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = session_configuration.h; sourceTree = "<group>"; };
		432653B1194EF73C00BEFB46 /* session_configuration_vars.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = session_configuration_vars.h; sourceTree = "<group>"; };
		432653B2194EF73C00BEFB46 /* session_directory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = session_directory.h; sourceTree = "<group>"; };
		432653B3194EF73C00BEFB46 /* session_event.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = session_event.h; sourceTree = "<group>"; };
		432653B4194EF73C00BEFB46 /* session_handle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = session_handle.h; sourceTree = "<group>"; };
		432653B5194EF73C00BEFB46 /* session_metadata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = session_metadata.h; sourceTree = "<group>"; };
		432653B6194EF73C00BEFB46 /* session_object.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = session_object.h; sourceTree = "<group>"; };
		432653B7194EF73C00BEFB46 /* session_playlist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = session_playlist.h; sourceTree = "<group>"; };
		432653B8194EF73C00BEFB46 /* session_playlists.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = session_playlists.h; sourceTree = "<group>"; };
		432653B9194EF73C00BEFB46 /* session_route.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = session_route.h; sourceTree = "<group>"; };
		432653BA194EF73C00BEFB46 /* session_state_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = session_state_utils.h; sourceTree = "<group>"; };
		432653BB194EF73C00BEFB46 /* session_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = session_utils.h; sourceTree = "<group>"; };
		432653BC194EF73C00BEFB46 /* silentfilesource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = silentfilesource.h; sourceTree = "<group>"; };
		432653BD194EF73C00BEFB46 /* slave.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = slave.h; sourceTree = "<group>"; };
		432653BE194EF73C00BEFB46 /* smf_source.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = smf_source.h; sourceTree = "<group>"; };
		432653BF194EF73C00BEFB46 /* sndfile_helpers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sndfile_helpers.h; sourceTree = "<group>"; };
		432653C0194EF73C00BEFB46 /* sndfileimportable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sndfileimportable.h; sourceTree = "<group>"; };
		432653C1194EF73C00BEFB46 /* sndfilesource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sndfilesource.h; sourceTree = "<group>"; };
		432653C2194EF73C00BEFB46 /* soundseq.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = soundseq.h; sourceTree = "<group>"; };
		432653C3194EF73C00BEFB46 /* source.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = source.h; sourceTree = "<group>"; };
		432653C4194EF73C00BEFB46 /* source_factory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = source_factory.h; sourceTree = "<group>"; };
		432653C5194EF73C00BEFB46 /* speaker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = speaker.h; sourceTree = "<group>"; };
		432653C6194EF73C00BEFB46 /* speakers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = speakers.h; sourceTree = "<group>"; };
		432653C7194EF73C00BEFB46 /* spline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = spline.h; sourceTree = "<group>"; };
		432653C8194EF73C00BEFB46 /* srcfilesource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = srcfilesource.h; sourceTree = "<group>"; };
		432653C9194EF73C00BEFB46 /* stretch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stretch.h; sourceTree = "<group>"; };
		432653CA194EF73C00BEFB46 /* strip_silence.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = strip_silence.h; sourceTree = "<group>"; };
		432653CB194EF73C00BEFB46 /* system_exec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = system_exec.h; sourceTree = "<group>"; };
		432653CC194EF73C00BEFB46 /* tape_file_matcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tape_file_matcher.h; sourceTree = "<group>"; };
		432653CD194EF73C00BEFB46 /* template_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = template_utils.h; sourceTree = "<group>"; };
		432653CE194EF73C00BEFB46 /* tempo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tempo.h; sourceTree = "<group>"; };
		432653CF194EF73C00BEFB46 /* tempo_map_importer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tempo_map_importer.h; sourceTree = "<group>"; };
		432653D0194EF73C00BEFB46 /* thread_buffers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_buffers.h; sourceTree = "<group>"; };
		432653D1194EF73C00BEFB46 /* ticker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ticker.h; sourceTree = "<group>"; };
		432653D2194EF73C00BEFB46 /* timecode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = timecode.h; sourceTree = "<group>"; };
		432653D3194EF73C00BEFB46 /* timefx_request.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = timefx_request.h; sourceTree = "<group>"; };
		432653D4194EF73C00BEFB46 /* timestamps.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = timestamps.h; sourceTree = "<group>"; };
		432653D5194EF73C00BEFB46 /* track.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = track.h; sourceTree = "<group>"; };
		432653D6194EF73C00BEFB46 /* transient_detector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = transient_detector.h; sourceTree = "<group>"; };
		432653D7194EF73C00BEFB46 /* trimmable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = trimmable.h; sourceTree = "<group>"; };
		432653D8194EF73C00BEFB46 /* types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = types.h; sourceTree = "<group>"; };
		432653D9194EF73C00BEFB46 /* unknown_processor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unknown_processor.h; sourceTree = "<group>"; };
		432653DA194EF73C00BEFB46 /* uri_map.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uri_map.h; sourceTree = "<group>"; };
		432653DB194EF73C00BEFB46 /* user_bundle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = user_bundle.h; sourceTree = "<group>"; };
		432653DC194EF73C00BEFB46 /* utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utils.h; sourceTree = "<group>"; };
		432653DD194EF73C00BEFB46 /* version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = version.h; sourceTree = "<group>"; };
		432653DF194EF73C00BEFB46 /* vestige.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vestige.h; sourceTree = "<group>"; };
		432653E0194EF73C00BEFB46 /* vst_info_file.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vst_info_file.h; sourceTree = "<group>"; };
		432653E1194EF73C00BEFB46 /* vst_plugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vst_plugin.h; sourceTree = "<group>"; };
		432653E2194EF73C00BEFB46 /* vst_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vst_types.h; sourceTree = "<group>"; };
		432653E3194EF73C00BEFB46 /* vumeterdsp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vumeterdsp.h; sourceTree = "<group>"; };
		432653E4194EF73C00BEFB46 /* windows_vst_plugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = windows_vst_plugin.h; sourceTree = "<group>"; };
		432653E5194EF73C00BEFB46 /* worker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = worker.h; sourceTree = "<group>"; };
		432859E21A10F415006C3E03 /* midi_scene_change.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = midi_scene_change.h; path = ../ardour/midi_scene_change.h; sourceTree = "<group>"; };
		432859E31A10F415006C3E03 /* midi_scene_changer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = midi_scene_changer.h; path = ../ardour/midi_scene_changer.h; sourceTree = "<group>"; };
		432859E41A10F415006C3E03 /* mididm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mididm.h; path = ../ardour/mididm.h; sourceTree = "<group>"; };
		432859E51A10F415006C3E03 /* soundcloud_upload.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = soundcloud_upload.h; path = ../ardour/soundcloud_upload.h; sourceTree = "<group>"; };
		432859EB1A10F436006C3E03 /* libardour.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; path = libardour.xcodeproj; sourceTree = "<group>"; };
		432859EE1A10F436006C3E03 /* midi_scene_change.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = midi_scene_change.cc; path = ../midi_scene_change.cc; sourceTree = "<group>"; };
		432859EF1A10F436006C3E03 /* midi_scene_changer.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = midi_scene_changer.cc; path = ../midi_scene_changer.cc; sourceTree = "<group>"; };
		432859F01A10F436006C3E03 /* mididm.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = mididm.cc; path = ../mididm.cc; sourceTree = "<group>"; };
		432859F11A10F436006C3E03 /* scene_change.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = scene_change.cc; path = ../scene_change.cc; sourceTree = "<group>"; };
		432859F21A10F436006C3E03 /* soundcloud_upload.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = soundcloud_upload.cc; path = ../soundcloud_upload.cc; sourceTree = "<group>"; };
		43AA82A9194EEAAF00A67B56 /* liblibardour.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = liblibardour.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
		43AA82AE194EEB2600A67B56 /* amp.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = amp.cc; path = ../amp.cc; sourceTree = SOURCE_ROOT; };
		43AA82AF194EEB2600A67B56 /* analyser.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = analyser.cc; path = ../analyser.cc; sourceTree = SOURCE_ROOT; };
		43AA82B0194EEB2600A67B56 /* async_midi_port.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = async_midi_port.cc; path = ../async_midi_port.cc; sourceTree = SOURCE_ROOT; };
		43AA82B1194EEB2600A67B56 /* audio_buffer.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = audio_buffer.cc; path = ../audio_buffer.cc; sourceTree = SOURCE_ROOT; };
		43AA82B2194EEB2600A67B56 /* audio_diskstream.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = audio_diskstream.cc; path = ../audio_diskstream.cc; sourceTree = SOURCE_ROOT; };
		43AA82B3194EEB2600A67B56 /* audio_library.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = audio_library.cc; path = ../audio_library.cc; sourceTree = SOURCE_ROOT; };
		43AA82B4194EEB2600A67B56 /* audio_playlist_importer.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = audio_playlist_importer.cc; path = ../audio_playlist_importer.cc; sourceTree = SOURCE_ROOT; };
		43AA82B5194EEB2600A67B56 /* audio_playlist_source.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = audio_playlist_source.cc; path = ../audio_playlist_source.cc; sourceTree = SOURCE_ROOT; };
		43AA82B6194EEB2600A67B56 /* audio_playlist.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = audio_playlist.cc; path = ../audio_playlist.cc; sourceTree = SOURCE_ROOT; };
		43AA82B7194EEB2600A67B56 /* audio_port.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = audio_port.cc; path = ../audio_port.cc; sourceTree = SOURCE_ROOT; };
		43AA82B8194EEB2600A67B56 /* audio_region_importer.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = audio_region_importer.cc; path = ../audio_region_importer.cc; sourceTree = SOURCE_ROOT; };
		43AA82B9194EEB2600A67B56 /* audio_track_importer.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = audio_track_importer.cc; path = ../audio_track_importer.cc; sourceTree = SOURCE_ROOT; };
		43AA82BA194EEB2600A67B56 /* audio_track.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = audio_track.cc; path = ../audio_track.cc; sourceTree = SOURCE_ROOT; };
		43AA82BB194EEB2600A67B56 /* audio_unit.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = audio_unit.cc; path = ../audio_unit.cc; sourceTree = SOURCE_ROOT; };
		43AA82BC194EEB2600A67B56 /* audioanalyser.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = audioanalyser.cc; path = ../audioanalyser.cc; sourceTree = SOURCE_ROOT; };
		43AA82BD194EEB2600A67B56 /* audioengine.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = audioengine.cc; path = ../audioengine.cc; sourceTree = SOURCE_ROOT; };
		43AA82BE194EEB2600A67B56 /* audiofile_tagger.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = audiofile_tagger.cc; path = ../audiofile_tagger.cc; sourceTree = SOURCE_ROOT; };
		43AA82BF194EEB2600A67B56 /* audiofilesource.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = audiofilesource.cc; path = ../audiofilesource.cc; sourceTree = SOURCE_ROOT; };
		43AA82C0194EEB2600A67B56 /* audioregion.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = audioregion.cc; path = ../audioregion.cc; sourceTree = SOURCE_ROOT; };
		43AA82C1194EEB2600A67B56 /* audiosource.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = audiosource.cc; path = ../audiosource.cc; sourceTree = SOURCE_ROOT; };
		43AA82C2194EEB2600A67B56 /* auditioner.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = auditioner.cc; path = ../auditioner.cc; sourceTree = SOURCE_ROOT; };
		43AA82C3194EEB2600A67B56 /* auto_bundle.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = auto_bundle.cc; path = ../auto_bundle.cc; sourceTree = SOURCE_ROOT; };
		43AA82C4194EEB2600A67B56 /* automatable.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = automatable.cc; path = ../automatable.cc; sourceTree = SOURCE_ROOT; };
		43AA82C5194EEB2600A67B56 /* automation_control.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = automation_control.cc; path = ../automation_control.cc; sourceTree = SOURCE_ROOT; };
		43AA82C6194EEB2600A67B56 /* automation_list.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = automation_list.cc; path = ../automation_list.cc; sourceTree = SOURCE_ROOT; };
		43AA82C7194EEB2600A67B56 /* automation_watch.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = automation_watch.cc; path = ../automation_watch.cc; sourceTree = SOURCE_ROOT; };
		43AA82C8194EEB2600A67B56 /* automation.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = automation.cc; path = ../automation.cc; sourceTree = SOURCE_ROOT; };
		43AA82C9194EEB2600A67B56 /* beats_frames_converter.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = beats_frames_converter.cc; path = ../beats_frames_converter.cc; sourceTree = SOURCE_ROOT; };
		43AA82CA194EEB2600A67B56 /* broadcast_info.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = broadcast_info.cc; path = ../broadcast_info.cc; sourceTree = SOURCE_ROOT; };
		43AA82CB194EEB2600A67B56 /* buffer_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = buffer_manager.cc; path = ../buffer_manager.cc; sourceTree = SOURCE_ROOT; };
		43AA82CC194EEB2600A67B56 /* buffer_set.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = buffer_set.cc; path = ../buffer_set.cc; sourceTree = SOURCE_ROOT; };
		43AA82CD194EEB2600A67B56 /* buffer.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = buffer.cc; path = ../buffer.cc; sourceTree = SOURCE_ROOT; };
		43AA82CE194EEB2600A67B56 /* bundle.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = bundle.cc; path = ../bundle.cc; sourceTree = SOURCE_ROOT; };
		43AA82CF194EEB2600A67B56 /* butler.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = butler.cc; path = ../butler.cc; sourceTree = SOURCE_ROOT; };
		43AA82D0194EEB2600A67B56 /* caimportable.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = caimportable.cc; path = ../caimportable.cc; sourceTree = SOURCE_ROOT; };
		43AA82D1194EEB2600A67B56 /* capturing_processor.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = capturing_processor.cc; path = ../capturing_processor.cc; sourceTree = SOURCE_ROOT; };
		43AA82D2194EEB2600A67B56 /* chan_count.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = chan_count.cc; path = ../chan_count.cc; sourceTree = SOURCE_ROOT; };
		43AA82D3194EEB2600A67B56 /* chan_mapping.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = chan_mapping.cc; path = ../chan_mapping.cc; sourceTree = SOURCE_ROOT; };
		43AA82D4194EEB2600A67B56 /* config_text.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = config_text.cc; path = ../config_text.cc; sourceTree = SOURCE_ROOT; };
		43AA82D5194EEB2600A67B56 /* configuration.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = configuration.cc; path = ../configuration.cc; sourceTree = SOURCE_ROOT; };
		43AA82D6194EEB2600A67B56 /* control_protocol_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = control_protocol_manager.cc; path = ../control_protocol_manager.cc; sourceTree = SOURCE_ROOT; };
		43AA82D7194EEB2600A67B56 /* coreaudiosource.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = coreaudiosource.cc; path = ../coreaudiosource.cc; sourceTree = SOURCE_ROOT; };
		43AA82D8194EEB2600A67B56 /* cycle_timer.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = cycle_timer.cc; path = ../cycle_timer.cc; sourceTree = SOURCE_ROOT; };
		43AA82D9194EEB2600A67B56 /* data_type.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = data_type.cc; path = ../data_type.cc; sourceTree = SOURCE_ROOT; };
		43AA82DA194EEB2600A67B56 /* debug.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = debug.cc; path = ../debug.cc; sourceTree = SOURCE_ROOT; };
		43AA82DB194EEB2600A67B56 /* default_click.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = default_click.cc; path = ../default_click.cc; sourceTree = SOURCE_ROOT; };
		43AA82DC194EEB2600A67B56 /* delivery.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = delivery.cc; path = ../delivery.cc; sourceTree = SOURCE_ROOT; };
		43AA82DD194EEB2600A67B56 /* directory_names.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = directory_names.cc; path = ../directory_names.cc; sourceTree = SOURCE_ROOT; };
		43AA82DE194EEB2600A67B56 /* diskstream.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = diskstream.cc; path = ../diskstream.cc; sourceTree = SOURCE_ROOT; };
		43AA82DF194EEB2600A67B56 /* element_import_handler.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = element_import_handler.cc; path = ../element_import_handler.cc; sourceTree = SOURCE_ROOT; };
		43AA82E0194EEB2600A67B56 /* element_importer.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = element_importer.cc; path = ../element_importer.cc; sourceTree = SOURCE_ROOT; };
		43AA82E1194EEB2600A67B56 /* engine_slave.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = engine_slave.cc; path = ../engine_slave.cc; sourceTree = SOURCE_ROOT; };
		43AA82E2194EEB2600A67B56 /* engine_state_controller.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = engine_state_controller.cc; path = ../engine_state_controller.cc; sourceTree = SOURCE_ROOT; };
		43AA82E3194EEB2600A67B56 /* enums.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = enums.cc; path = ../enums.cc; sourceTree = SOURCE_ROOT; };
		43AA82E4194EEB2600A67B56 /* event_type_map.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = event_type_map.cc; path = ../event_type_map.cc; sourceTree = SOURCE_ROOT; };
		43AA82E5194EEB2600A67B56 /* export_channel_configuration.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = export_channel_configuration.cc; path = ../export_channel_configuration.cc; sourceTree = SOURCE_ROOT; };
		43AA82E6194EEB2600A67B56 /* export_channel.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = export_channel.cc; path = ../export_channel.cc; sourceTree = SOURCE_ROOT; };
		43AA82E7194EEB2600A67B56 /* export_failed.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = export_failed.cc; path = ../export_failed.cc; sourceTree = SOURCE_ROOT; };
		43AA82E8194EEB2600A67B56 /* export_filename.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = export_filename.cc; path = ../export_filename.cc; sourceTree = SOURCE_ROOT; };
		43AA82E9194EEB2600A67B56 /* export_format_base.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = export_format_base.cc; path = ../export_format_base.cc; sourceTree = SOURCE_ROOT; };
		43AA82EA194EEB2600A67B56 /* export_format_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = export_format_manager.cc; path = ../export_format_manager.cc; sourceTree = SOURCE_ROOT; };
		43AA82EB194EEB2600A67B56 /* export_format_specification.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = export_format_specification.cc; path = ../export_format_specification.cc; sourceTree = SOURCE_ROOT; };
		43AA82EC194EEB2600A67B56 /* export_formats.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = export_formats.cc; path = ../export_formats.cc; sourceTree = SOURCE_ROOT; };
		43AA82ED194EEB2600A67B56 /* export_graph_builder.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = export_graph_builder.cc; path = ../export_graph_builder.cc; sourceTree = SOURCE_ROOT; };
		43AA82EE194EEB2600A67B56 /* export_handler.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = export_handler.cc; path = ../export_handler.cc; sourceTree = SOURCE_ROOT; };
		43AA82EF194EEB2600A67B56 /* export_multiplication.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = export_multiplication.cc; path = ../export_multiplication.cc; sourceTree = SOURCE_ROOT; };
		43AA82F0194EEB2600A67B56 /* export_preset.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = export_preset.cc; path = ../export_preset.cc; sourceTree = SOURCE_ROOT; };
		43AA82F1194EEB2600A67B56 /* export_profile_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = export_profile_manager.cc; path = ../export_profile_manager.cc; sourceTree = SOURCE_ROOT; };
		43AA82F2194EEB2600A67B56 /* export_status.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = export_status.cc; path = ../export_status.cc; sourceTree = SOURCE_ROOT; };
		43AA82F3194EEB2600A67B56 /* export_timespan.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = export_timespan.cc; path = ../export_timespan.cc; sourceTree = SOURCE_ROOT; };
		43AA82F4194EEB2600A67B56 /* file_source.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = file_source.cc; path = ../file_source.cc; sourceTree = SOURCE_ROOT; };
		43AA82F5194EEB2600A67B56 /* filename_extensions.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = filename_extensions.cc; path = ../filename_extensions.cc; sourceTree = SOURCE_ROOT; };
		43AA82F6194EEB2600A67B56 /* filesystem_paths.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = filesystem_paths.cc; path = ../filesystem_paths.cc; sourceTree = SOURCE_ROOT; };
		43AA82F7194EEB2600A67B56 /* filter.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = filter.cc; path = ../filter.cc; sourceTree = SOURCE_ROOT; };
		43AA82F8194EEB2600A67B56 /* find_session.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = find_session.cc; path = ../find_session.cc; sourceTree = SOURCE_ROOT; };
		43AA82F9194EEB2600A67B56 /* globals.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = globals.cc; path = ../globals.cc; sourceTree = SOURCE_ROOT; };
		43AA82FA194EEB2600A67B56 /* graph.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = graph.cc; path = ../graph.cc; sourceTree = SOURCE_ROOT; };
		43AA82FB194EEB2600A67B56 /* graphnode.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = graphnode.cc; path = ../graphnode.cc; sourceTree = SOURCE_ROOT; };
		43AA82FC194EEB2600A67B56 /* iec1ppmdsp.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = iec1ppmdsp.cc; path = ../iec1ppmdsp.cc; sourceTree = SOURCE_ROOT; };
		43AA82FD194EEB2600A67B56 /* iec2ppmdsp.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = iec2ppmdsp.cc; path = ../iec2ppmdsp.cc; sourceTree = SOURCE_ROOT; };
		43AA82FE194EEB2600A67B56 /* import.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = import.cc; path = ../import.cc; sourceTree = SOURCE_ROOT; };
		43AA82FF194EEB2600A67B56 /* instrument_info.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = instrument_info.cc; path = ../instrument_info.cc; sourceTree = SOURCE_ROOT; };
		43AA8300194EEB2600A67B56 /* internal_return.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = internal_return.cc; path = ../internal_return.cc; sourceTree = SOURCE_ROOT; };
		43AA8301194EEB2600A67B56 /* internal_send.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = internal_send.cc; path = ../internal_send.cc; sourceTree = SOURCE_ROOT; };
		43AA8302194EEB2600A67B56 /* interpolation.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = interpolation.cc; path = ../interpolation.cc; sourceTree = SOURCE_ROOT; };
		43AA8303194EEB2600A67B56 /* io_processor.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = io_processor.cc; path = ../io_processor.cc; sourceTree = SOURCE_ROOT; };
		43AA8304194EEB2600A67B56 /* io.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = io.cc; path = ../io.cc; sourceTree = SOURCE_ROOT; };
		43AA8305194EEB2600A67B56 /* kmeterdsp.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = kmeterdsp.cc; path = ../kmeterdsp.cc; sourceTree = SOURCE_ROOT; };
		43AA8306194EEB2600A67B56 /* ladspa_plugin.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ladspa_plugin.cc; path = ../ladspa_plugin.cc; sourceTree = SOURCE_ROOT; };
		43AA8307194EEB2600A67B56 /* linux_vst_support.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = linux_vst_support.cc; path = ../linux_vst_support.cc; sourceTree = SOURCE_ROOT; };
		43AA8308194EEB2600A67B56 /* location_importer.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = location_importer.cc; path = ../location_importer.cc; sourceTree = SOURCE_ROOT; };
		43AA8309194EEB2600A67B56 /* location.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = location.cc; path = ../location.cc; sourceTree = SOURCE_ROOT; };
		43AA830A194EEB2600A67B56 /* ltc_slave.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ltc_slave.cc; path = ../ltc_slave.cc; sourceTree = SOURCE_ROOT; };
		43AA830B194EEB2600A67B56 /* lv2_evbuf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = lv2_evbuf.c; path = ../lv2_evbuf.c; sourceTree = SOURCE_ROOT; };
		43AA830C194EEB2600A67B56 /* lv2_plugin.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = lv2_plugin.cc; path = ../lv2_plugin.cc; sourceTree = SOURCE_ROOT; };
		43AA830D194EEB2600A67B56 /* lxvst_plugin.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = lxvst_plugin.cc; path = ../lxvst_plugin.cc; sourceTree = SOURCE_ROOT; };
		43AA830E194EEB2600A67B56 /* meter.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = meter.cc; path = ../meter.cc; sourceTree = SOURCE_ROOT; };
		43AA830F194EEB2600A67B56 /* midi_automation_list_binder.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = midi_automation_list_binder.cc; path = ../midi_automation_list_binder.cc; sourceTree = SOURCE_ROOT; };
		43AA8310194EEB2600A67B56 /* midi_buffer.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = midi_buffer.cc; path = ../midi_buffer.cc; sourceTree = SOURCE_ROOT; };
		43AA8311194EEB2600A67B56 /* midi_clock_slave.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = midi_clock_slave.cc; path = ../midi_clock_slave.cc; sourceTree = SOURCE_ROOT; };
		43AA8312194EEB2600A67B56 /* midi_diskstream.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = midi_diskstream.cc; path = ../midi_diskstream.cc; sourceTree = SOURCE_ROOT; };
		43AA8313194EEB2600A67B56 /* midi_model.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = midi_model.cc; path = ../midi_model.cc; sourceTree = SOURCE_ROOT; };
		43AA8314194EEB2600A67B56 /* midi_patch_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = midi_patch_manager.cc; path = ../midi_patch_manager.cc; sourceTree = SOURCE_ROOT; };
		43AA8315194EEB2600A67B56 /* midi_playlist_source.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = midi_playlist_source.cc; path = ../midi_playlist_source.cc; sourceTree = SOURCE_ROOT; };
		43AA8316194EEB2600A67B56 /* midi_playlist.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = midi_playlist.cc; path = ../midi_playlist.cc; sourceTree = SOURCE_ROOT; };
		43AA8317194EEB2600A67B56 /* midi_port.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = midi_port.cc; path = ../midi_port.cc; sourceTree = SOURCE_ROOT; };
		43AA8318194EEB2600A67B56 /* midi_region.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = midi_region.cc; path = ../midi_region.cc; sourceTree = SOURCE_ROOT; };
		43AA8319194EEB2600A67B56 /* midi_ring_buffer.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = midi_ring_buffer.cc; path = ../midi_ring_buffer.cc; sourceTree = SOURCE_ROOT; };
		43AA831A194EEB2600A67B56 /* midi_source.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = midi_source.cc; path = ../midi_source.cc; sourceTree = SOURCE_ROOT; };
		43AA831B194EEB2600A67B56 /* midi_state_tracker.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = midi_state_tracker.cc; path = ../midi_state_tracker.cc; sourceTree = SOURCE_ROOT; };
		43AA831C194EEB2600A67B56 /* midi_stretch.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = midi_stretch.cc; path = ../midi_stretch.cc; sourceTree = SOURCE_ROOT; };
		43AA831D194EEB2600A67B56 /* midi_track.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = midi_track.cc; path = ../midi_track.cc; sourceTree = SOURCE_ROOT; };
		43AA831E194EEB2600A67B56 /* midi_ui.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = midi_ui.cc; path = ../midi_ui.cc; sourceTree = SOURCE_ROOT; };
		43AA831F194EEB2600A67B56 /* midiport_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = midiport_manager.cc; path = ../midiport_manager.cc; sourceTree = SOURCE_ROOT; };
		43AA8320194EEB2600A67B56 /* mix.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = mix.cc; path = ../mix.cc; sourceTree = SOURCE_ROOT; };
		43AA8321194EEB2600A67B56 /* monitor_processor.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = monitor_processor.cc; path = ../monitor_processor.cc; sourceTree = SOURCE_ROOT; };
		43AA8322194EEB2600A67B56 /* mtc_slave.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = mtc_slave.cc; path = ../mtc_slave.cc; sourceTree = SOURCE_ROOT; };
		43AA8323194EEB2600A67B56 /* mtdm.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = mtdm.cc; path = ../mtdm.cc; sourceTree = SOURCE_ROOT; };
		43AA8324194EEB2600A67B56 /* mute_master.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = mute_master.cc; path = ../mute_master.cc; sourceTree = SOURCE_ROOT; };
		43AA8325194EEB2600A67B56 /* onset_detector.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = onset_detector.cc; path = ../onset_detector.cc; sourceTree = SOURCE_ROOT; };
		43AA8326194EEB2600A67B56 /* operations.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = operations.cc; path = ../operations.cc; sourceTree = SOURCE_ROOT; };
		43AA8327194EEB2600A67B56 /* pan_controllable.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = pan_controllable.cc; path = ../pan_controllable.cc; sourceTree = SOURCE_ROOT; };
		43AA8328194EEB2600A67B56 /* pannable.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = pannable.cc; path = ../pannable.cc; sourceTree = SOURCE_ROOT; };
		43AA8329194EEB2600A67B56 /* panner_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = panner_manager.cc; path = ../panner_manager.cc; sourceTree = SOURCE_ROOT; };
		43AA832A194EEB2600A67B56 /* panner_shell.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = panner_shell.cc; path = ../panner_shell.cc; sourceTree = SOURCE_ROOT; };
		43AA832B194EEB2600A67B56 /* panner.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = panner.cc; path = ../panner.cc; sourceTree = SOURCE_ROOT; };
		43AA832C194EEB2600A67B56 /* pcm_utils.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = pcm_utils.cc; path = ../pcm_utils.cc; sourceTree = SOURCE_ROOT; };
		43AA832D194EEB2600A67B56 /* pi_controller.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = pi_controller.cc; path = ../pi_controller.cc; sourceTree = SOURCE_ROOT; };
		43AA832E194EEB2600A67B56 /* playlist_factory.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = playlist_factory.cc; path = ../playlist_factory.cc; sourceTree = SOURCE_ROOT; };
		43AA832F194EEB2600A67B56 /* playlist_source.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = playlist_source.cc; path = ../playlist_source.cc; sourceTree = SOURCE_ROOT; };
		43AA8330194EEB2600A67B56 /* playlist.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = playlist.cc; path = ../playlist.cc; sourceTree = SOURCE_ROOT; };
		43AA8331194EEB2600A67B56 /* plugin_insert.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = plugin_insert.cc; path = ../plugin_insert.cc; sourceTree = SOURCE_ROOT; };
		43AA8332194EEB2600A67B56 /* plugin_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = plugin_manager.cc; path = ../plugin_manager.cc; sourceTree = SOURCE_ROOT; };
		43AA8333194EEB2600A67B56 /* plugin.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = plugin.cc; path = ../plugin.cc; sourceTree = SOURCE_ROOT; };
		43AA8334194EEB2600A67B56 /* port_insert.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = port_insert.cc; path = ../port_insert.cc; sourceTree = SOURCE_ROOT; };
		43AA8335194EEB2600A67B56 /* port_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = port_manager.cc; path = ../port_manager.cc; sourceTree = SOURCE_ROOT; };
		43AA8336194EEB2600A67B56 /* port_set.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = port_set.cc; path = ../port_set.cc; sourceTree = SOURCE_ROOT; };
		43AA8337194EEB2600A67B56 /* port.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = port.cc; path = ../port.cc; sourceTree = SOURCE_ROOT; };
		43AA8338194EEB2600A67B56 /* process_thread.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = process_thread.cc; path = ../process_thread.cc; sourceTree = SOURCE_ROOT; };
		43AA8339194EEB2600A67B56 /* processor.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = processor.cc; path = ../processor.cc; sourceTree = SOURCE_ROOT; };
		43AA833A194EEB2600A67B56 /* progress.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = progress.cc; path = ../progress.cc; sourceTree = SOURCE_ROOT; };
		43AA833B194EEB2600A67B56 /* quantize.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = quantize.cc; path = ../quantize.cc; sourceTree = SOURCE_ROOT; };
		43AA833C194EEB2600A67B56 /* rb_effect.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = rb_effect.cc; path = ../rb_effect.cc; sourceTree = SOURCE_ROOT; };
		43AA833D194EEB2600A67B56 /* rc_configuration.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = rc_configuration.cc; path = ../rc_configuration.cc; sourceTree = SOURCE_ROOT; };
		43AA833E194EEB2600A67B56 /* rdff.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = rdff.c; path = ../rdff.c; sourceTree = SOURCE_ROOT; };
		43AA833F194EEB2600A67B56 /* recent_sessions.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = recent_sessions.cc; path = ../recent_sessions.cc; sourceTree = SOURCE_ROOT; };
		43AA8340194EEB2600A67B56 /* region_factory.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = region_factory.cc; path = ../region_factory.cc; sourceTree = SOURCE_ROOT; };
		43AA8341194EEB2600A67B56 /* region.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = region.cc; path = ../region.cc; sourceTree = SOURCE_ROOT; };
		43AA8342194EEB2600A67B56 /* resampled_source.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = resampled_source.cc; path = ../resampled_source.cc; sourceTree = SOURCE_ROOT; };
		43AA8343194EEB2600A67B56 /* return.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = return.cc; path = ../return.cc; sourceTree = SOURCE_ROOT; };
		43AA8344194EEB2600A67B56 /* reverse.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = reverse.cc; path = ../reverse.cc; sourceTree = SOURCE_ROOT; };
		43AA8345194EEB2600A67B56 /* revision.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = revision.cc; path = ../revision.cc; sourceTree = SOURCE_ROOT; };
		43AA8346194EEB2600A67B56 /* route_graph.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = route_graph.cc; path = ../route_graph.cc; sourceTree = SOURCE_ROOT; };
		43AA8347194EEB2600A67B56 /* route_group_member.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = route_group_member.cc; path = ../route_group_member.cc; sourceTree = SOURCE_ROOT; };
		43AA8348194EEB2600A67B56 /* route_group.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = route_group.cc; path = ../route_group.cc; sourceTree = SOURCE_ROOT; };
		43AA8349194EEB2600A67B56 /* route.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = route.cc; path = ../route.cc; sourceTree = SOURCE_ROOT; };
		43AA834A194EEB2600A67B56 /* search_paths.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = search_paths.cc; path = ../search_paths.cc; sourceTree = SOURCE_ROOT; };
		43AA834B194EEB2600A67B56 /* send.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = send.cc; path = ../send.cc; sourceTree = SOURCE_ROOT; };
		43AA834C194EEB2600A67B56 /* session_butler.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = session_butler.cc; path = ../session_butler.cc; sourceTree = SOURCE_ROOT; };
		43AA834D194EEB2600A67B56 /* session_click.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = session_click.cc; path = ../session_click.cc; sourceTree = SOURCE_ROOT; };
		43AA834E194EEB2600A67B56 /* session_command.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = session_command.cc; path = ../session_command.cc; sourceTree = SOURCE_ROOT; };
		43AA834F194EEB2600A67B56 /* session_configuration.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = session_configuration.cc; path = ../session_configuration.cc; sourceTree = SOURCE_ROOT; };
		43AA8350194EEB2600A67B56 /* session_directory.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = session_directory.cc; path = ../session_directory.cc; sourceTree = SOURCE_ROOT; };
		43AA8351194EEB2600A67B56 /* session_events.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = session_events.cc; path = ../session_events.cc; sourceTree = SOURCE_ROOT; };
		43AA8352194EEB2600A67B56 /* session_export.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = session_export.cc; path = ../session_export.cc; sourceTree = SOURCE_ROOT; };
		43AA8353194EEB2600A67B56 /* session_handle.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = session_handle.cc; path = ../session_handle.cc; sourceTree = SOURCE_ROOT; };
		43AA8354194EEB2600A67B56 /* session_ltc.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = session_ltc.cc; path = ../session_ltc.cc; sourceTree = SOURCE_ROOT; };
		43AA8355194EEB2600A67B56 /* session_metadata.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = session_metadata.cc; path = ../session_metadata.cc; sourceTree = SOURCE_ROOT; };
		43AA8356194EEB2600A67B56 /* session_midi.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = session_midi.cc; path = ../session_midi.cc; sourceTree = SOURCE_ROOT; };
		43AA8357194EEB2600A67B56 /* session_object.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = session_object.cc; path = ../session_object.cc; sourceTree = SOURCE_ROOT; };
		43AA8358194EEB2600A67B56 /* session_playlists.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = session_playlists.cc; path = ../session_playlists.cc; sourceTree = SOURCE_ROOT; };
		43AA8359194EEB2600A67B56 /* session_process.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = session_process.cc; path = ../session_process.cc; sourceTree = SOURCE_ROOT; };
		43AA835A194EEB2600A67B56 /* session_rtevents.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = session_rtevents.cc; path = ../session_rtevents.cc; sourceTree = SOURCE_ROOT; };
		43AA835B194EEB2600A67B56 /* session_state_utils.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = session_state_utils.cc; path = ../session_state_utils.cc; sourceTree = SOURCE_ROOT; };
		43AA835C194EEB2600A67B56 /* session_state.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = session_state.cc; path = ../session_state.cc; sourceTree = SOURCE_ROOT; };
		43AA835D194EEB2600A67B56 /* session_time.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = session_time.cc; path = ../session_time.cc; sourceTree = SOURCE_ROOT; };
		43AA835E194EEB2600A67B56 /* session_transport.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = session_transport.cc; path = ../session_transport.cc; sourceTree = SOURCE_ROOT; };
		43AA835F194EEB2600A67B56 /* session_vst.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = session_vst.cc; path = ../session_vst.cc; sourceTree = SOURCE_ROOT; };
		43AA8360194EEB2600A67B56 /* session.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = session.cc; path = ../session.cc; sourceTree = SOURCE_ROOT; };
		43AA8361194EEB2600A67B56 /* slave.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = slave.cc; path = ../slave.cc; sourceTree = SOURCE_ROOT; };
		43AA8362194EEB2600A67B56 /* smf_source.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = smf_source.cc; path = ../smf_source.cc; sourceTree = SOURCE_ROOT; };
		43AA8363194EEB2600A67B56 /* sndfile_helpers.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = sndfile_helpers.cc; path = ../sndfile_helpers.cc; sourceTree = SOURCE_ROOT; };
		43AA8364194EEB2600A67B56 /* sndfileimportable.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = sndfileimportable.cc; path = ../sndfileimportable.cc; sourceTree = SOURCE_ROOT; };
		43AA8365194EEB2600A67B56 /* sndfilesource.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = sndfilesource.cc; path = ../sndfilesource.cc; sourceTree = SOURCE_ROOT; };
		43AA8366194EEB2600A67B56 /* source_factory.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = source_factory.cc; path = ../source_factory.cc; sourceTree = SOURCE_ROOT; };
		43AA8367194EEB2600A67B56 /* source.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = source.cc; path = ../source.cc; sourceTree = SOURCE_ROOT; };
		43AA8368194EEB2600A67B56 /* speakers.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = speakers.cc; path = ../speakers.cc; sourceTree = SOURCE_ROOT; };
		43AA8369194EEB2600A67B56 /* srcfilesource.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = srcfilesource.cc; path = ../srcfilesource.cc; sourceTree = SOURCE_ROOT; };
		43AA836A194EEB2600A67B56 /* sse_functions_64bit.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; name = sse_functions_64bit.s; path = ../sse_functions_64bit.s; sourceTree = SOURCE_ROOT; };
		43AA836B194EEB2600A67B56 /* sse_functions_xmm.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = sse_functions_xmm.cc; path = ../sse_functions_xmm.cc; sourceTree = SOURCE_ROOT; };
		43AA836C194EEB2600A67B56 /* sse_functions.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; name = sse_functions.s; path = ../sse_functions.s; sourceTree = SOURCE_ROOT; };
		43AA836D194EEB2600A67B56 /* st_pitch.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = st_pitch.cc; path = ../st_pitch.cc; sourceTree = SOURCE_ROOT; };
		43AA836E194EEB2600A67B56 /* st_stretch.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = st_stretch.cc; path = ../st_stretch.cc; sourceTree = SOURCE_ROOT; };
		43AA836F194EEB2600A67B56 /* strip_silence.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = strip_silence.cc; path = ../strip_silence.cc; sourceTree = SOURCE_ROOT; };
		43AA8370194EEB2600A67B56 /* system_exec.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = system_exec.cc; path = ../system_exec.cc; sourceTree = SOURCE_ROOT; };
		43AA8371194EEB2600A67B56 /* tape_file_matcher.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = tape_file_matcher.cc; path = ../tape_file_matcher.cc; sourceTree = SOURCE_ROOT; };
		43AA8372194EEB2600A67B56 /* template_utils.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = template_utils.cc; path = ../template_utils.cc; sourceTree = SOURCE_ROOT; };
		43AA8373194EEB2600A67B56 /* tempo_map_importer.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = tempo_map_importer.cc; path = ../tempo_map_importer.cc; sourceTree = SOURCE_ROOT; };
		43AA8374194EEB2600A67B56 /* tempo.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = tempo.cc; path = ../tempo.cc; sourceTree = SOURCE_ROOT; };
		43AA8375194EEB2600A67B56 /* thread_buffers.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = thread_buffers.cc; path = ../thread_buffers.cc; sourceTree = SOURCE_ROOT; };
		43AA8376194EEB2600A67B56 /* ticker.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ticker.cc; path = ../ticker.cc; sourceTree = SOURCE_ROOT; };
		43AA8377194EEB2600A67B56 /* track.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = track.cc; path = ../track.cc; sourceTree = SOURCE_ROOT; };
		43AA8378194EEB2600A67B56 /* transient_detector.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = transient_detector.cc; path = ../transient_detector.cc; sourceTree = SOURCE_ROOT; };
		43AA8379194EEB2600A67B56 /* unknown_processor.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = unknown_processor.cc; path = ../unknown_processor.cc; sourceTree = SOURCE_ROOT; };
		43AA837A194EEB2600A67B56 /* uri_map.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = uri_map.cc; path = ../uri_map.cc; sourceTree = SOURCE_ROOT; };
		43AA837B194EEB2600A67B56 /* user_bundle.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = user_bundle.cc; path = ../user_bundle.cc; sourceTree = SOURCE_ROOT; };
		43AA837C194EEB2600A67B56 /* utils.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = utils.cc; path = ../utils.cc; sourceTree = SOURCE_ROOT; };
		43AA837D194EEB2600A67B56 /* version.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = version.cc; path = ../version.cc; sourceTree = SOURCE_ROOT; };
		43AA837E194EEB2600A67B56 /* vst_info_file.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = vst_info_file.cc; path = ../vst_info_file.cc; sourceTree = SOURCE_ROOT; };
		43AA837F194EEB2600A67B56 /* vst_plugin.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = vst_plugin.cc; path = ../vst_plugin.cc; sourceTree = SOURCE_ROOT; };
		43AA8380194EEB2600A67B56 /* vumeterdsp.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = vumeterdsp.cc; path = ../vumeterdsp.cc; sourceTree = SOURCE_ROOT; };
		43AA8381194EEB2600A67B56 /* windows_vst_plugin.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = windows_vst_plugin.cc; path = ../windows_vst_plugin.cc; sourceTree = SOURCE_ROOT; };
		43AA8382194EEB2600A67B56 /* worker.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = worker.cc; path = ../worker.cc; sourceTree = SOURCE_ROOT; };
		43AA8459194EEB5F00A67B56 /* audio_engine_test.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = audio_engine_test.cc; path = ../test/audio_engine_test.cc; sourceTree = SOURCE_ROOT; };
		43AA845A194EEB5F00A67B56 /* audio_engine_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = audio_engine_test.h; path = ../test/audio_engine_test.h; sourceTree = SOURCE_ROOT; };
		43AA845B194EEB5F00A67B56 /* audio_region_read_test.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = audio_region_read_test.cc; path = ../test/audio_region_read_test.cc; sourceTree = SOURCE_ROOT; };
		43AA845C194EEB5F00A67B56 /* audio_region_read_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = audio_region_read_test.h; path = ../test/audio_region_read_test.h; sourceTree = SOURCE_ROOT; };
		43AA845D194EEB5F00A67B56 /* audio_region_test.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = audio_region_test.cc; path = ../test/audio_region_test.cc; sourceTree = SOURCE_ROOT; };
		43AA845E194EEB5F00A67B56 /* audio_region_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = audio_region_test.h; path = ../test/audio_region_test.h; sourceTree = SOURCE_ROOT; };
		43AA845F194EEB5F00A67B56 /* automation_list_property_test.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = automation_list_property_test.cc; path = ../test/automation_list_property_test.cc; sourceTree = SOURCE_ROOT; };
		43AA8460194EEB5F00A67B56 /* automation_list_property_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = automation_list_property_test.h; path = ../test/automation_list_property_test.h; sourceTree = SOURCE_ROOT; };
		43AA8461194EEB5F00A67B56 /* bbt_test.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = bbt_test.cc; path = ../test/bbt_test.cc; sourceTree = SOURCE_ROOT; };
		43AA8462194EEB5F00A67B56 /* bbt_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = bbt_test.h; path = ../test/bbt_test.h; sourceTree = SOURCE_ROOT; };
		43AA8463194EEB5F00A67B56 /* combine_regions_test.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = combine_regions_test.cc; path = ../test/combine_regions_test.cc; sourceTree = SOURCE_ROOT; };
		43AA8464194EEB5F00A67B56 /* combine_regions_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = combine_regions_test.h; path = ../test/combine_regions_test.h; sourceTree = SOURCE_ROOT; };
		43AA8465194EEB5F00A67B56 /* control_surfaces_test.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = control_surfaces_test.cc; path = ../test/control_surfaces_test.cc; sourceTree = SOURCE_ROOT; };
		43AA8466194EEB5F00A67B56 /* control_surfaces_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = control_surfaces_test.h; path = ../test/control_surfaces_test.h; sourceTree = SOURCE_ROOT; };
		43AA8469194EEB5F00A67B56 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = folder; sourceTree = "<group>"; };
		43AA846A194EEB5F00A67B56 /* automation_list_property_test1.ref */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; name = automation_list_property_test1.ref; path = ../test/data/automation_list_property_test1.ref; sourceTree = SOURCE_ROOT; };
		43AA846B194EEB5F00A67B56 /* automation_list_property_test2.ref */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; name = automation_list_property_test2.ref; path = ../test/data/automation_list_property_test2.ref; sourceTree = SOURCE_ROOT; };
		43AA846C194EEB5F00A67B56 /* automation_list_property_test3.ref */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; name = automation_list_property_test3.ref; path = ../test/data/automation_list_property_test3.ref; sourceTree = SOURCE_ROOT; };
		43AA846D194EEB5F00A67B56 /* automation_list_property_test4.ref */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; name = automation_list_property_test4.ref; path = ../test/data/automation_list_property_test4.ref; sourceTree = SOURCE_ROOT; };
		43AA846F194EEB5F00A67B56 /* instant.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; name = instant.xml; path = ../test/data/mantis_3356/instant.xml; sourceTree = SOURCE_ROOT; };
		43AA8473194EEB5F00A67B56 /* Midi 1-1.mid */ = {isa = PBXFileReference; lastKnownFileType = audio.midi; path = "Midi 1-1.mid"; sourceTree = "<group>"; };
		43AA8474194EEB5F00A67B56 /* mantis_3356.ardour */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; name = mantis_3356.ardour; path = ../test/data/mantis_3356/mantis_3356.ardour; sourceTree = SOURCE_ROOT; };
		43AA8475194EEB5F00A67B56 /* mantis_3356.ref */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = mantis_3356.ref; path = ../test/data/mantis_3356.ref; sourceTree = SOURCE_ROOT; };
		43AA8478194EEB5F00A67B56 /* instant.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = instant.xml; sourceTree = "<group>"; };
		43AA8479194EEB5F00A67B56 /* rec_enabled.ardour */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = rec_enabled.ardour; sourceTree = "<group>"; };
		43AA847A194EEB5F00A67B56 /* rec_enabled.history */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = rec_enabled.history; sourceTree = "<group>"; };
		43AA847B194EEB5F00A67B56 /* test.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = test.wav; sourceTree = "<group>"; };
		43AA847C194EEB5F00A67B56 /* dummy_lxvst.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = dummy_lxvst.cc; path = ../test/dummy_lxvst.cc; sourceTree = SOURCE_ROOT; };
		43AA847D194EEB5F00A67B56 /* framepos_minus_beats_test.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = framepos_minus_beats_test.cc; path = ../test/framepos_minus_beats_test.cc; sourceTree = SOURCE_ROOT; };
		43AA847E194EEB5F00A67B56 /* framepos_minus_beats_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = framepos_minus_beats_test.h; path = ../test/framepos_minus_beats_test.h; sourceTree = SOURCE_ROOT; };
		43AA847F194EEB5F00A67B56 /* framepos_plus_beats_test.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = framepos_plus_beats_test.cc; path = ../test/framepos_plus_beats_test.cc; sourceTree = SOURCE_ROOT; };
		43AA8480194EEB5F00A67B56 /* framepos_plus_beats_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = framepos_plus_beats_test.h; path = ../test/framepos_plus_beats_test.h; sourceTree = SOURCE_ROOT; };
		43AA8481194EEB5F00A67B56 /* framewalk_to_beats_test.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = framewalk_to_beats_test.cc; path = ../test/framewalk_to_beats_test.cc; sourceTree = SOURCE_ROOT; };
		43AA8482194EEB5F00A67B56 /* framewalk_to_beats_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = framewalk_to_beats_test.h; path = ../test/framewalk_to_beats_test.h; sourceTree = SOURCE_ROOT; };
		43AA8483194EEB5F00A67B56 /* interpolation_test.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = interpolation_test.cc; path = ../test/interpolation_test.cc; sourceTree = SOURCE_ROOT; };
		43AA8484194EEB5F00A67B56 /* interpolation_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = interpolation_test.h; path = ../test/interpolation_test.h; sourceTree = SOURCE_ROOT; };
		43AA8485194EEB5F00A67B56 /* jack_utils_test.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = jack_utils_test.cc; path = ../test/jack_utils_test.cc; sourceTree = SOURCE_ROOT; };
		43AA8486194EEB5F00A67B56 /* jack_utils_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = jack_utils_test.h; path = ../test/jack_utils_test.h; sourceTree = SOURCE_ROOT; };
		43AA8487194EEB5F00A67B56 /* load_session.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = load_session.cc; path = ../test/load_session.cc; sourceTree = SOURCE_ROOT; };
		43AA8488194EEB5F00A67B56 /* load_sessions_test.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = load_sessions_test.cc; path = ../test/load_sessions_test.cc; sourceTree = SOURCE_ROOT; };
		43AA8489194EEB5F00A67B56 /* load_sessions_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = load_sessions_test.h; path = ../test/load_sessions_test.h; sourceTree = SOURCE_ROOT; };
		43AA848A194EEB5F00A67B56 /* midi_clock_slave_test.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = midi_clock_slave_test.cc; path = ../test/midi_clock_slave_test.cc; sourceTree = SOURCE_ROOT; };
		43AA848B194EEB5F00A67B56 /* midi_clock_slave_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = midi_clock_slave_test.h; path = ../test/midi_clock_slave_test.h; sourceTree = SOURCE_ROOT; };
		43AA848C194EEB5F00A67B56 /* mtdm_test.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = mtdm_test.cc; path = ../test/mtdm_test.cc; sourceTree = SOURCE_ROOT; };
		43AA848D194EEB5F00A67B56 /* mtdm_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mtdm_test.h; path = ../test/mtdm_test.h; sourceTree = SOURCE_ROOT; };
		43AA848E194EEB5F00A67B56 /* playlist_equivalent_regions_test.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = playlist_equivalent_regions_test.cc; path = ../test/playlist_equivalent_regions_test.cc; sourceTree = SOURCE_ROOT; };
		43AA848F194EEB5F00A67B56 /* playlist_equivalent_regions_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = playlist_equivalent_regions_test.h; path = ../test/playlist_equivalent_regions_test.h; sourceTree = SOURCE_ROOT; };
		43AA8490194EEB5F00A67B56 /* playlist_layering_test.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = playlist_layering_test.cc; path = ../test/playlist_layering_test.cc; sourceTree = SOURCE_ROOT; };
		43AA8491194EEB5F00A67B56 /* playlist_layering_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = playlist_layering_test.h; path = ../test/playlist_layering_test.h; sourceTree = SOURCE_ROOT; };
		43AA8492194EEB5F00A67B56 /* playlist_read_test.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = playlist_read_test.cc; path = ../test/playlist_read_test.cc; sourceTree = SOURCE_ROOT; };
		43AA8493194EEB5F00A67B56 /* playlist_read_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = playlist_read_test.h; path = ../test/playlist_read_test.h; sourceTree = SOURCE_ROOT; };
		43AA8494194EEB5F00A67B56 /* plugins_test.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = plugins_test.cc; path = ../test/plugins_test.cc; sourceTree = SOURCE_ROOT; };
		43AA8495194EEB5F00A67B56 /* plugins_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = plugins_test.h; path = ../test/plugins_test.h; sourceTree = SOURCE_ROOT; };
		43AA8497194EEB5F00A67B56 /* load_session.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = load_session.cc; sourceTree = "<group>"; };
		43AA8498194EEB5F00A67B56 /* lots_of_regions.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = lots_of_regions.cc; sourceTree = "<group>"; };
		43AA8499194EEB5F00A67B56 /* runpc.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = runpc.cc; sourceTree = "<group>"; };
		43AA849C194EEB5F00A67B56 /* 0tracks.ardour */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = 0tracks.ardour; sourceTree = "<group>"; };
		43AA849D194EEB5F00A67B56 /* 0tracks.history */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = 0tracks.history; sourceTree = "<group>"; };
		43AA849F194EEB5F00A67B56 /* 1region.ardour */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = 1region.ardour; sourceTree = "<group>"; };
		43AA84A0194EEB5F00A67B56 /* 1region.history */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = 1region.history; sourceTree = "<group>"; };
		43AA84A1194EEB5F00A67B56 /* instant.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = instant.xml; sourceTree = "<group>"; };
		43AA84A5194EEB5F00A67B56 /* MIDI 1-1.mid */ = {isa = PBXFileReference; lastKnownFileType = audio.midi; path = "MIDI 1-1.mid"; sourceTree = "<group>"; };
		43AA84A7194EEB5F00A67B56 /* 32tracks.ardour */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = 32tracks.ardour; sourceTree = "<group>"; };
		43AA84A8194EEB5F00A67B56 /* 32tracks.history */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = 32tracks.history; sourceTree = "<group>"; };
		43AA84A9194EEB5F00A67B56 /* instant.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = instant.xml; sourceTree = "<group>"; };
		43AA84AA194EEB5F00A67B56 /* region_naming_test.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = region_naming_test.cc; path = ../test/region_naming_test.cc; sourceTree = SOURCE_ROOT; };
		43AA84AB194EEB5F00A67B56 /* region_naming_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = region_naming_test.h; path = ../test/region_naming_test.h; sourceTree = SOURCE_ROOT; };
		43AA84AC194EEB5F00A67B56 /* resampled_source_test.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = resampled_source_test.cc; path = ../test/resampled_source_test.cc; sourceTree = SOURCE_ROOT; };
		43AA84AD194EEB5F00A67B56 /* resampled_source_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = resampled_source_test.h; path = ../test/resampled_source_test.h; sourceTree = SOURCE_ROOT; };
		43AA84AE194EEB5F00A67B56 /* session_test.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = session_test.cc; path = ../test/session_test.cc; sourceTree = SOURCE_ROOT; };
		43AA84AF194EEB5F00A67B56 /* session_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = session_test.h; path = ../test/session_test.h; sourceTree = SOURCE_ROOT; };
		43AA84B0194EEB5F00A67B56 /* tempo_test.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = tempo_test.cc; path = ../test/tempo_test.cc; sourceTree = SOURCE_ROOT; };
		43AA84B1194EEB5F00A67B56 /* tempo_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tempo_test.h; path = ../test/tempo_test.h; sourceTree = SOURCE_ROOT; };
		43AA84B2194EEB5F00A67B56 /* test_common.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = test_common.cc; path = ../test/test_common.cc; sourceTree = SOURCE_ROOT; };
		43AA84B3194EEB5F00A67B56 /* test_common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = test_common.h; path = ../test/test_common.h; sourceTree = SOURCE_ROOT; };
		43AA84B4194EEB5F00A67B56 /* test_needing_session.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = test_needing_session.cc; path = ../test/test_needing_session.cc; sourceTree = SOURCE_ROOT; };
		43AA84B5194EEB5F00A67B56 /* test_needing_session.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = test_needing_session.h; path = ../test/test_needing_session.h; sourceTree = SOURCE_ROOT; };
		43AA84B6194EEB5F00A67B56 /* test_util.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = test_util.cc; path = ../test/test_util.cc; sourceTree = SOURCE_ROOT; };
		43AA84B7194EEB5F00A67B56 /* test_util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = test_util.h; path = ../test/test_util.h; sourceTree = SOURCE_ROOT; };
		43AA84B8194EEB5F00A67B56 /* testrunner.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = testrunner.cc; path = ../test/testrunner.cc; sourceTree = SOURCE_ROOT; };
		43AA84F4194EEB8B00A67B56 /* amp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = amp.h; path = ../ardour/amp.h; sourceTree = SOURCE_ROOT; };
		43AA84F5194EEB8B00A67B56 /* analyser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = analyser.h; path = ../ardour/analyser.h; sourceTree = SOURCE_ROOT; };
		43AA84F6194EEB8B00A67B56 /* ardour.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ardour.h; path = ../ardour/ardour.h; sourceTree = SOURCE_ROOT; };
		43AA84F7194EEB8B00A67B56 /* async_midi_port.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = async_midi_port.h; path = ../ardour/async_midi_port.h; sourceTree = SOURCE_ROOT; };
		43AA84F8194EEB8B00A67B56 /* audio_backend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = audio_backend.h; path = ../ardour/audio_backend.h; sourceTree = SOURCE_ROOT; };
		43AA84F9194EEB8B00A67B56 /* audio_buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = audio_buffer.h; path = ../ardour/audio_buffer.h; sourceTree = SOURCE_ROOT; };
		43AA84FA194EEB8B00A67B56 /* audio_diskstream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = audio_diskstream.h; path = ../ardour/audio_diskstream.h; sourceTree = SOURCE_ROOT; };
		43AA84FB194EEB8B00A67B56 /* audio_library.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = audio_library.h; path = ../ardour/audio_library.h; sourceTree = SOURCE_ROOT; };
		43AA84FC194EEB8B00A67B56 /* audio_playlist_importer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = audio_playlist_importer.h; path = ../ardour/audio_playlist_importer.h; sourceTree = SOURCE_ROOT; };
		43AA84FD194EEB8B00A67B56 /* audio_playlist_source.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = audio_playlist_source.h; path = ../ardour/audio_playlist_source.h; sourceTree = SOURCE_ROOT; };
		43AA84FE194EEB8B00A67B56 /* audio_port.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = audio_port.h; path = ../ardour/audio_port.h; sourceTree = SOURCE_ROOT; };
		43AA84FF194EEB8B00A67B56 /* audio_region_importer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = audio_region_importer.h; path = ../ardour/audio_region_importer.h; sourceTree = SOURCE_ROOT; };
		43AA8500194EEB8B00A67B56 /* audio_track_importer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = audio_track_importer.h; path = ../ardour/audio_track_importer.h; sourceTree = SOURCE_ROOT; };
		43AA8501194EEB8B00A67B56 /* audio_track.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = audio_track.h; path = ../ardour/audio_track.h; sourceTree = SOURCE_ROOT; };
		43AA8502194EEB8B00A67B56 /* audio_unit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = audio_unit.h; path = ../ardour/audio_unit.h; sourceTree = SOURCE_ROOT; };
		43AA8503194EEB8B00A67B56 /* audioanalyser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = audioanalyser.h; path = ../ardour/audioanalyser.h; sourceTree = SOURCE_ROOT; };
		43AA8504194EEB8B00A67B56 /* audioengine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = audioengine.h; path = ../ardour/audioengine.h; sourceTree = SOURCE_ROOT; };
		43AA8505194EEB8B00A67B56 /* audiofile_tagger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = audiofile_tagger.h; path = ../ardour/audiofile_tagger.h; sourceTree = SOURCE_ROOT; };
		43AA8506194EEB8B00A67B56 /* audiofilesource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = audiofilesource.h; path = ../ardour/audiofilesource.h; sourceTree = SOURCE_ROOT; };
		43AA8507194EEB8B00A67B56 /* audioplaylist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = audioplaylist.h; path = ../ardour/audioplaylist.h; sourceTree = SOURCE_ROOT; };
		43AA8508194EEB8B00A67B56 /* audioregion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = audioregion.h; path = ../ardour/audioregion.h; sourceTree = SOURCE_ROOT; };
		43AA8509194EEB8B00A67B56 /* audiosource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = audiosource.h; path = ../ardour/audiosource.h; sourceTree = SOURCE_ROOT; };
		43AA850A194EEB8B00A67B56 /* auditioner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = auditioner.h; path = ../ardour/auditioner.h; sourceTree = SOURCE_ROOT; };
		43AA850B194EEB8B00A67B56 /* auto_bundle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = auto_bundle.h; path = ../ardour/auto_bundle.h; sourceTree = SOURCE_ROOT; };
		43AA850C194EEB8B00A67B56 /* automatable_sequence.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = automatable_sequence.h; path = ../ardour/automatable_sequence.h; sourceTree = SOURCE_ROOT; };
		43AA850D194EEB8B00A67B56 /* automatable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = automatable.h; path = ../ardour/automatable.h; sourceTree = SOURCE_ROOT; };
		43AA850E194EEB8B00A67B56 /* automation_control.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = automation_control.h; path = ../ardour/automation_control.h; sourceTree = SOURCE_ROOT; };
		43AA850F194EEB8B00A67B56 /* automation_list.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = automation_list.h; path = ../ardour/automation_list.h; sourceTree = SOURCE_ROOT; };
		43AA8510194EEB8B00A67B56 /* automation_watch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = automation_watch.h; path = ../ardour/automation_watch.h; sourceTree = SOURCE_ROOT; };
		43AA8511194EEB8B00A67B56 /* beats_frames_converter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = beats_frames_converter.h; path = ../ardour/beats_frames_converter.h; sourceTree = SOURCE_ROOT; };
		43AA8512194EEB8B00A67B56 /* broadcast_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = broadcast_info.h; path = ../ardour/broadcast_info.h; sourceTree = SOURCE_ROOT; };
		43AA8513194EEB8B00A67B56 /* buffer_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = buffer_manager.h; path = ../ardour/buffer_manager.h; sourceTree = SOURCE_ROOT; };
		43AA8514194EEB8B00A67B56 /* buffer_set.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = buffer_set.h; path = ../ardour/buffer_set.h; sourceTree = SOURCE_ROOT; };
		43AA8515194EEB8B00A67B56 /* buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = buffer.h; path = ../ardour/buffer.h; sourceTree = SOURCE_ROOT; };
		43AA8516194EEB8B00A67B56 /* bundle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = bundle.h; path = ../ardour/bundle.h; sourceTree = SOURCE_ROOT; };
		43AA8517194EEB8B00A67B56 /* butler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = butler.h; path = ../ardour/butler.h; sourceTree = SOURCE_ROOT; };
		43AA8518194EEB8B00A67B56 /* caimportable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = caimportable.h; path = ../ardour/caimportable.h; sourceTree = SOURCE_ROOT; };
		43AA8519194EEB8B00A67B56 /* capturing_processor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = capturing_processor.h; path = ../ardour/capturing_processor.h; sourceTree = SOURCE_ROOT; };
		43AA851A194EEB8B00A67B56 /* chan_count.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = chan_count.h; path = ../ardour/chan_count.h; sourceTree = SOURCE_ROOT; };
		43AA851B194EEB8B00A67B56 /* chan_mapping.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = chan_mapping.h; path = ../ardour/chan_mapping.h; sourceTree = SOURCE_ROOT; };
		43AA851C194EEB8B00A67B56 /* click.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = click.h; path = ../ardour/click.h; sourceTree = SOURCE_ROOT; };
		43AA851D194EEB8B00A67B56 /* comparable_shared_ptr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = comparable_shared_ptr.h; path = ../ardour/comparable_shared_ptr.h; sourceTree = SOURCE_ROOT; };
		43AA851E194EEB8B00A67B56 /* configuration_variable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = configuration_variable.h; path = ../ardour/configuration_variable.h; sourceTree = SOURCE_ROOT; };
		43AA851F194EEB8B00A67B56 /* configuration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = configuration.h; path = ../ardour/configuration.h; sourceTree = SOURCE_ROOT; };
		43AA8520194EEB8B00A67B56 /* control_protocol_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = control_protocol_manager.h; path = ../ardour/control_protocol_manager.h; sourceTree = SOURCE_ROOT; };
		43AA8521194EEB8B00A67B56 /* coreaudiosource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = coreaudiosource.h; path = ../ardour/coreaudiosource.h; sourceTree = SOURCE_ROOT; };
		43AA8522194EEB8B00A67B56 /* cycle_timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cycle_timer.h; path = ../ardour/cycle_timer.h; sourceTree = SOURCE_ROOT; };
		43AA8523194EEB8B00A67B56 /* cycles.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cycles.h; path = ../ardour/cycles.h; sourceTree = SOURCE_ROOT; };
		43AA8524194EEB8B00A67B56 /* data_type.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = data_type.h; path = ../ardour/data_type.h; sourceTree = SOURCE_ROOT; };
		43AA8525194EEB8B00A67B56 /* dB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = dB.h; path = ../ardour/dB.h; sourceTree = SOURCE_ROOT; };
		43AA8526194EEB8B00A67B56 /* debug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = debug.h; path = ../ardour/debug.h; sourceTree = SOURCE_ROOT; };
		43AA8527194EEB8B00A67B56 /* delivery.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = delivery.h; path = ../ardour/delivery.h; sourceTree = SOURCE_ROOT; };
		43AA8528194EEB8B00A67B56 /* directory_names.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = directory_names.h; path = ../ardour/directory_names.h; sourceTree = SOURCE_ROOT; };
		43AA8529194EEB8B00A67B56 /* diskstream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = diskstream.h; path = ../ardour/diskstream.h; sourceTree = SOURCE_ROOT; };
		43AA852A194EEB8B00A67B56 /* element_import_handler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = element_import_handler.h; path = ../ardour/element_import_handler.h; sourceTree = SOURCE_ROOT; };
		43AA852B194EEB8B00A67B56 /* element_importer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = element_importer.h; path = ../ardour/element_importer.h; sourceTree = SOURCE_ROOT; };
		43AA852C194EEB8B00A67B56 /* engine_state_controller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = engine_state_controller.h; path = ../ardour/engine_state_controller.h; sourceTree = SOURCE_ROOT; };
		43AA852D194EEB8B00A67B56 /* event_type_map.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = event_type_map.h; path = ../ardour/event_type_map.h; sourceTree = SOURCE_ROOT; };
		43AA852E194EEB8B00A67B56 /* export_channel_configuration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = export_channel_configuration.h; path = ../ardour/export_channel_configuration.h; sourceTree = SOURCE_ROOT; };
		43AA852F194EEB8B00A67B56 /* export_channel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = export_channel.h; path = ../ardour/export_channel.h; sourceTree = SOURCE_ROOT; };
		43AA8530194EEB8B00A67B56 /* export_failed.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = export_failed.h; path = ../ardour/export_failed.h; sourceTree = SOURCE_ROOT; };
		43AA8531194EEB8B00A67B56 /* export_filename.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = export_filename.h; path = ../ardour/export_filename.h; sourceTree = SOURCE_ROOT; };
		43AA8532194EEB8B00A67B56 /* export_format_base.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = export_format_base.h; path = ../ardour/export_format_base.h; sourceTree = SOURCE_ROOT; };
		43AA8533194EEB8B00A67B56 /* export_format_compatibility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = export_format_compatibility.h; path = ../ardour/export_format_compatibility.h; sourceTree = SOURCE_ROOT; };
		43AA8534194EEB8B00A67B56 /* export_format_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = export_format_manager.h; path = ../ardour/export_format_manager.h; sourceTree = SOURCE_ROOT; };
		43AA8535194EEB8B00A67B56 /* export_format_specification.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = export_format_specification.h; path = ../ardour/export_format_specification.h; sourceTree = SOURCE_ROOT; };
		43AA8536194EEB8B00A67B56 /* export_formats.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = export_formats.h; path = ../ardour/export_formats.h; sourceTree = SOURCE_ROOT; };
		43AA8537194EEB8B00A67B56 /* export_graph_builder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = export_graph_builder.h; path = ../ardour/export_graph_builder.h; sourceTree = SOURCE_ROOT; };
		43AA8538194EEB8B00A67B56 /* export_handler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = export_handler.h; path = ../ardour/export_handler.h; sourceTree = SOURCE_ROOT; };
		43AA8539194EEB8B00A67B56 /* export_multiplication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = export_multiplication.h; path = ../ardour/export_multiplication.h; sourceTree = SOURCE_ROOT; };
		43AA853A194EEB8B00A67B56 /* export_pointers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = export_pointers.h; path = ../ardour/export_pointers.h; sourceTree = SOURCE_ROOT; };
		43AA853B194EEB8B00A67B56 /* export_preset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = export_preset.h; path = ../ardour/export_preset.h; sourceTree = SOURCE_ROOT; };
		43AA853C194EEB8B00A67B56 /* export_profile_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = export_profile_manager.h; path = ../ardour/export_profile_manager.h; sourceTree = SOURCE_ROOT; };
		43AA853D194EEB8B00A67B56 /* export_status.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = export_status.h; path = ../ardour/export_status.h; sourceTree = SOURCE_ROOT; };
		43AA853E194EEB8B00A67B56 /* export_timespan.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = export_timespan.h; path = ../ardour/export_timespan.h; sourceTree = SOURCE_ROOT; };
		43AA853F194EEB8B00A67B56 /* file_source.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = file_source.h; path = ../ardour/file_source.h; sourceTree = SOURCE_ROOT; };
		43AA8540194EEB8B00A67B56 /* filename_extensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = filename_extensions.h; path = ../ardour/filename_extensions.h; sourceTree = SOURCE_ROOT; };
		43AA8541194EEB8B00A67B56 /* filesystem_paths.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = filesystem_paths.h; path = ../ardour/filesystem_paths.h; sourceTree = SOURCE_ROOT; };
		43AA8542194EEB8B00A67B56 /* filter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = filter.h; path = ../ardour/filter.h; sourceTree = SOURCE_ROOT; };
		43AA8543194EEB8B00A67B56 /* graph.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = graph.h; path = ../ardour/graph.h; sourceTree = SOURCE_ROOT; };
		43AA8544194EEB8B00A67B56 /* graphnode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = graphnode.h; path = ../ardour/graphnode.h; sourceTree = SOURCE_ROOT; };
		43AA8545194EEB8B00A67B56 /* iec1ppmdsp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = iec1ppmdsp.h; path = ../ardour/iec1ppmdsp.h; sourceTree = SOURCE_ROOT; };
		43AA8546194EEB8B00A67B56 /* iec2ppmdsp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = iec2ppmdsp.h; path = ../ardour/iec2ppmdsp.h; sourceTree = SOURCE_ROOT; };
		43AA8547194EEB8B00A67B56 /* import_status.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = import_status.h; path = ../ardour/import_status.h; sourceTree = SOURCE_ROOT; };
		43AA8548194EEB8B00A67B56 /* importable_source.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = importable_source.h; path = ../ardour/importable_source.h; sourceTree = SOURCE_ROOT; };
		43AA8549194EEB8B00A67B56 /* instrument_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = instrument_info.h; path = ../ardour/instrument_info.h; sourceTree = SOURCE_ROOT; };
		43AA854A194EEB8B00A67B56 /* internal_return.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = internal_return.h; path = ../ardour/internal_return.h; sourceTree = SOURCE_ROOT; };
		43AA854B194EEB8B00A67B56 /* internal_send.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = internal_send.h; path = ../ardour/internal_send.h; sourceTree = SOURCE_ROOT; };
		43AA854C194EEB8B00A67B56 /* interpolation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = interpolation.h; path = ../ardour/interpolation.h; sourceTree = SOURCE_ROOT; };
		43AA854D194EEB8B00A67B56 /* interthread_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = interthread_info.h; path = ../ardour/interthread_info.h; sourceTree = SOURCE_ROOT; };
		43AA854E194EEB8B00A67B56 /* io_processor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = io_processor.h; path = ../ardour/io_processor.h; sourceTree = SOURCE_ROOT; };
		43AA854F194EEB8B00A67B56 /* io.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = io.h; path = ../ardour/io.h; sourceTree = SOURCE_ROOT; };
		43AA8550194EEB8B00A67B56 /* jack_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = jack_utils.h; path = ../ardour/jack_utils.h; sourceTree = SOURCE_ROOT; };
		43AA8551194EEB8B00A67B56 /* kmeterdsp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = kmeterdsp.h; path = ../ardour/kmeterdsp.h; sourceTree = SOURCE_ROOT; };
		43AA8552194EEB8B00A67B56 /* ladspa_plugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ladspa_plugin.h; path = ../ardour/ladspa_plugin.h; sourceTree = SOURCE_ROOT; };
		43AA8553194EEB8B00A67B56 /* ladspa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ladspa.h; path = ../ardour/ladspa.h; sourceTree = SOURCE_ROOT; };
		43AA8554194EEB8B00A67B56 /* latent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = latent.h; path = ../ardour/latent.h; sourceTree = SOURCE_ROOT; };
		43AA8555194EEB8B00A67B56 /* libardour_visibility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = libardour_visibility.h; path = ../ardour/libardour_visibility.h; sourceTree = SOURCE_ROOT; };
		43AA8556194EEB8B00A67B56 /* linux_vst_support.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = linux_vst_support.h; path = ../ardour/linux_vst_support.h; sourceTree = SOURCE_ROOT; };
		43AA8557194EEB8B00A67B56 /* location_importer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = location_importer.h; path = ../ardour/location_importer.h; sourceTree = SOURCE_ROOT; };
		43AA8558194EEB8B00A67B56 /* location.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = location.h; path = ../ardour/location.h; sourceTree = SOURCE_ROOT; };
		43AA8559194EEB8B00A67B56 /* logcurve.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = logcurve.h; path = ../ardour/logcurve.h; sourceTree = SOURCE_ROOT; };
		43AA855A194EEB8B00A67B56 /* lv2_plugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = lv2_plugin.h; path = ../ardour/lv2_plugin.h; sourceTree = SOURCE_ROOT; };
		43AA855B194EEB8B00A67B56 /* lxvst_plugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = lxvst_plugin.h; path = ../ardour/lxvst_plugin.h; sourceTree = SOURCE_ROOT; };
		43AA855C194EEB8B00A67B56 /* meter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = meter.h; path = ../ardour/meter.h; sourceTree = SOURCE_ROOT; };
		43AA855D194EEB8B00A67B56 /* midi_automation_list_binder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = midi_automation_list_binder.h; path = ../ardour/midi_automation_list_binder.h; sourceTree = SOURCE_ROOT; };
		43AA855E194EEB8B00A67B56 /* midi_buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = midi_buffer.h; path = ../ardour/midi_buffer.h; sourceTree = SOURCE_ROOT; };
		43AA855F194EEB8B00A67B56 /* midi_diskstream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = midi_diskstream.h; path = ../ardour/midi_diskstream.h; sourceTree = SOURCE_ROOT; };
		43AA8560194EEB8B00A67B56 /* midi_model.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = midi_model.h; path = ../ardour/midi_model.h; sourceTree = SOURCE_ROOT; };
		43AA8561194EEB8B00A67B56 /* midi_operator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = midi_operator.h; path = ../ardour/midi_operator.h; sourceTree = SOURCE_ROOT; };
		43AA8562194EEB8B00A67B56 /* midi_patch_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = midi_patch_manager.h; path = ../ardour/midi_patch_manager.h; sourceTree = SOURCE_ROOT; };
		43AA8563194EEB8B00A67B56 /* midi_playlist_source.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = midi_playlist_source.h; path = ../ardour/midi_playlist_source.h; sourceTree = SOURCE_ROOT; };
		43AA8564194EEB8B00A67B56 /* midi_playlist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = midi_playlist.h; path = ../ardour/midi_playlist.h; sourceTree = SOURCE_ROOT; };
		43AA8565194EEB8B00A67B56 /* midi_port.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = midi_port.h; path = ../ardour/midi_port.h; sourceTree = SOURCE_ROOT; };
		43AA8566194EEB8B00A67B56 /* midi_region.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = midi_region.h; path = ../ardour/midi_region.h; sourceTree = SOURCE_ROOT; };
		43AA8567194EEB8B00A67B56 /* midi_ring_buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = midi_ring_buffer.h; path = ../ardour/midi_ring_buffer.h; sourceTree = SOURCE_ROOT; };
		43AA8568194EEB8B00A67B56 /* midi_source.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = midi_source.h; path = ../ardour/midi_source.h; sourceTree = SOURCE_ROOT; };
		43AA8569194EEB8B00A67B56 /* midi_state_tracker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = midi_state_tracker.h; path = ../ardour/midi_state_tracker.h; sourceTree = SOURCE_ROOT; };
		43AA856A194EEB8B00A67B56 /* midi_stretch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = midi_stretch.h; path = ../ardour/midi_stretch.h; sourceTree = SOURCE_ROOT; };
		43AA856B194EEB8B00A67B56 /* midi_track.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = midi_track.h; path = ../ardour/midi_track.h; sourceTree = SOURCE_ROOT; };
		43AA856C194EEB8B00A67B56 /* midi_ui.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = midi_ui.h; path = ../ardour/midi_ui.h; sourceTree = SOURCE_ROOT; };
		43AA856D194EEB8B00A67B56 /* midiport_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = midiport_manager.h; path = ../ardour/midiport_manager.h; sourceTree = SOURCE_ROOT; };
		43AA856E194EEB8B00A67B56 /* mix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mix.h; path = ../ardour/mix.h; sourceTree = SOURCE_ROOT; };
		43AA856F194EEB8B00A67B56 /* monitor_processor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = monitor_processor.h; path = ../ardour/monitor_processor.h; sourceTree = SOURCE_ROOT; };
		43AA8570194EEB8B00A67B56 /* movable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = movable.h; path = ../ardour/movable.h; sourceTree = SOURCE_ROOT; };
		43AA8571194EEB8B00A67B56 /* msvc_libardour.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = msvc_libardour.h; path = ../ardour/msvc_libardour.h; sourceTree = SOURCE_ROOT; };
		43AA8572194EEB8B00A67B56 /* mtdm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mtdm.h; path = ../ardour/mtdm.h; sourceTree = SOURCE_ROOT; };
		43AA8573194EEB8B00A67B56 /* mute_master.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mute_master.h; path = ../ardour/mute_master.h; sourceTree = SOURCE_ROOT; };
		43AA8574194EEB8B00A67B56 /* noise.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = noise.h; path = ../ardour/noise.h; sourceTree = SOURCE_ROOT; };
		43AA8575194EEB8B00A67B56 /* onset_detector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = onset_detector.h; path = ../ardour/onset_detector.h; sourceTree = SOURCE_ROOT; };
		43AA8576194EEB8B00A67B56 /* operations.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = operations.h; path = ../ardour/operations.h; sourceTree = SOURCE_ROOT; };
		43AA8577194EEB8B00A67B56 /* pan_controllable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pan_controllable.h; path = ../ardour/pan_controllable.h; sourceTree = SOURCE_ROOT; };
		43AA8578194EEB8B00A67B56 /* pannable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pannable.h; path = ../ardour/pannable.h; sourceTree = SOURCE_ROOT; };
		43AA8579194EEB8B00A67B56 /* panner_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = panner_manager.h; path = ../ardour/panner_manager.h; sourceTree = SOURCE_ROOT; };
		43AA857A194EEB8B00A67B56 /* panner_shell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = panner_shell.h; path = ../ardour/panner_shell.h; sourceTree = SOURCE_ROOT; };
		43AA857B194EEB8B00A67B56 /* panner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = panner.h; path = ../ardour/panner.h; sourceTree = SOURCE_ROOT; };
		43AA857C194EEB8B00A67B56 /* pcm_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pcm_utils.h; path = ../ardour/pcm_utils.h; sourceTree = SOURCE_ROOT; };
		43AA857D194EEB8B00A67B56 /* peak.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = peak.h; path = ../ardour/peak.h; sourceTree = SOURCE_ROOT; };
		43AA857E194EEB8B00A67B56 /* pi_controller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pi_controller.h; path = ../ardour/pi_controller.h; sourceTree = SOURCE_ROOT; };
		43AA857F194EEB8B00A67B56 /* pitch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pitch.h; path = ../ardour/pitch.h; sourceTree = SOURCE_ROOT; };
		43AA8580194EEB8B00A67B56 /* playlist_factory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = playlist_factory.h; path = ../ardour/playlist_factory.h; sourceTree = SOURCE_ROOT; };
		43AA8581194EEB8B00A67B56 /* playlist_source.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = playlist_source.h; path = ../ardour/playlist_source.h; sourceTree = SOURCE_ROOT; };
		43AA8582194EEB8B00A67B56 /* playlist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = playlist.h; path = ../ardour/playlist.h; sourceTree = SOURCE_ROOT; };
		43AA8583194EEB8B00A67B56 /* plugin_insert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = plugin_insert.h; path = ../ardour/plugin_insert.h; sourceTree = SOURCE_ROOT; };
		43AA8584194EEB8B00A67B56 /* plugin_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = plugin_manager.h; path = ../ardour/plugin_manager.h; sourceTree = SOURCE_ROOT; };
		43AA8585194EEB8B00A67B56 /* plugin_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = plugin_types.h; path = ../ardour/plugin_types.h; sourceTree = SOURCE_ROOT; };
		43AA8586194EEB8B00A67B56 /* plugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = plugin.h; path = ../ardour/plugin.h; sourceTree = SOURCE_ROOT; };
		43AA8587194EEB8B00A67B56 /* port_engine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = port_engine.h; path = ../ardour/port_engine.h; sourceTree = SOURCE_ROOT; };
		43AA8588194EEB8B00A67B56 /* port_insert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = port_insert.h; path = ../ardour/port_insert.h; sourceTree = SOURCE_ROOT; };
		43AA8589194EEB8B00A67B56 /* port_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = port_manager.h; path = ../ardour/port_manager.h; sourceTree = SOURCE_ROOT; };
		43AA858A194EEB8B00A67B56 /* port_set.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = port_set.h; path = ../ardour/port_set.h; sourceTree = SOURCE_ROOT; };
		43AA858B194EEB8B00A67B56 /* port.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = port.h; path = ../ardour/port.h; sourceTree = SOURCE_ROOT; };
		43AA858C194EEB8B00A67B56 /* process_thread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = process_thread.h; path = ../ardour/process_thread.h; sourceTree = SOURCE_ROOT; };
		43AA858D194EEB8B00A67B56 /* processor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = processor.h; path = ../ardour/processor.h; sourceTree = SOURCE_ROOT; };
		43AA858E194EEB8B00A67B56 /* profile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = profile.h; path = ../ardour/profile.h; sourceTree = SOURCE_ROOT; };
		43AA858F194EEB8B00A67B56 /* progress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = progress.h; path = ../ardour/progress.h; sourceTree = SOURCE_ROOT; };
		43AA8590194EEB8B00A67B56 /* proxy_controllable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = proxy_controllable.h; path = ../ardour/proxy_controllable.h; sourceTree = SOURCE_ROOT; };
		43AA8591194EEB8B00A67B56 /* public_diskstream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = public_diskstream.h; path = ../ardour/public_diskstream.h; sourceTree = SOURCE_ROOT; };
		43AA8592194EEB8B00A67B56 /* quantize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = quantize.h; path = ../ardour/quantize.h; sourceTree = SOURCE_ROOT; };
		43AA8593194EEB8B00A67B56 /* rb_effect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rb_effect.h; path = ../ardour/rb_effect.h; sourceTree = SOURCE_ROOT; };
		43AA8594194EEB8B00A67B56 /* rc_configuration_vars.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rc_configuration_vars.h; path = ../ardour/rc_configuration_vars.h; sourceTree = SOURCE_ROOT; };
		43AA8595194EEB8B00A67B56 /* rc_configuration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rc_configuration.h; path = ../ardour/rc_configuration.h; sourceTree = SOURCE_ROOT; };
		43AA8596194EEB8B00A67B56 /* readable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = readable.h; path = ../ardour/readable.h; sourceTree = SOURCE_ROOT; };
		43AA8597194EEB8B00A67B56 /* recent_sessions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = recent_sessions.h; path = ../ardour/recent_sessions.h; sourceTree = SOURCE_ROOT; };
		43AA8598194EEB8B00A67B56 /* region_factory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = region_factory.h; path = ../ardour/region_factory.h; sourceTree = SOURCE_ROOT; };
		43AA8599194EEB8B00A67B56 /* region_sorters.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = region_sorters.h; path = ../ardour/region_sorters.h; sourceTree = SOURCE_ROOT; };
		43AA859A194EEB8B00A67B56 /* region.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = region.h; path = ../ardour/region.h; sourceTree = SOURCE_ROOT; };
		43AA859B194EEB8B00A67B56 /* resampled_source.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = resampled_source.h; path = ../ardour/resampled_source.h; sourceTree = SOURCE_ROOT; };
		43AA859C194EEB8B00A67B56 /* return.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = return.h; path = ../ardour/return.h; sourceTree = SOURCE_ROOT; };
		43AA859D194EEB8B00A67B56 /* reverse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = reverse.h; path = ../ardour/reverse.h; sourceTree = SOURCE_ROOT; };
		43AA859E194EEB8B00A67B56 /* revision.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = revision.h; path = ../ardour/revision.h; sourceTree = SOURCE_ROOT; };
		43AA859F194EEB8B00A67B56 /* route_graph.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = route_graph.h; path = ../ardour/route_graph.h; sourceTree = SOURCE_ROOT; };
		43AA85A0194EEB8B00A67B56 /* route_group_member.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = route_group_member.h; path = ../ardour/route_group_member.h; sourceTree = SOURCE_ROOT; };
		43AA85A1194EEB8B00A67B56 /* route_group_specialized.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = route_group_specialized.h; path = ../ardour/route_group_specialized.h; sourceTree = SOURCE_ROOT; };
		43AA85A2194EEB8B00A67B56 /* route_group.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = route_group.h; path = ../ardour/route_group.h; sourceTree = SOURCE_ROOT; };
		43AA85A3194EEB8B00A67B56 /* route.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = route.h; path = ../ardour/route.h; sourceTree = SOURCE_ROOT; };
		43AA85A4194EEB8B00A67B56 /* runtime_functions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = runtime_functions.h; path = ../ardour/runtime_functions.h; sourceTree = SOURCE_ROOT; };
		43AA85A5194EEB8B00A67B56 /* search_paths.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = search_paths.h; path = ../ardour/search_paths.h; sourceTree = SOURCE_ROOT; };
		43AA85A6194EEB8B00A67B56 /* send.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = send.h; path = ../ardour/send.h; sourceTree = SOURCE_ROOT; };
		43AA85A7194EEB8B00A67B56 /* session_configuration_vars.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = session_configuration_vars.h; path = ../ardour/session_configuration_vars.h; sourceTree = SOURCE_ROOT; };
		43AA85A8194EEB8B00A67B56 /* session_configuration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = session_configuration.h; path = ../ardour/session_configuration.h; sourceTree = SOURCE_ROOT; };
		43AA85A9194EEB8B00A67B56 /* session_directory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = session_directory.h; path = ../ardour/session_directory.h; sourceTree = SOURCE_ROOT; };
		43AA85AA194EEB8B00A67B56 /* session_event.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = session_event.h; path = ../ardour/session_event.h; sourceTree = SOURCE_ROOT; };
		43AA85AB194EEB8B00A67B56 /* session_handle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = session_handle.h; path = ../ardour/session_handle.h; sourceTree = SOURCE_ROOT; };
		43AA85AC194EEB8B00A67B56 /* session_metadata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = session_metadata.h; path = ../ardour/session_metadata.h; sourceTree = SOURCE_ROOT; };
		43AA85AD194EEB8B00A67B56 /* session_object.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = session_object.h; path = ../ardour/session_object.h; sourceTree = SOURCE_ROOT; };
		43AA85AE194EEB8B00A67B56 /* session_playlist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = session_playlist.h; path = ../ardour/session_playlist.h; sourceTree = SOURCE_ROOT; };
		43AA85AF194EEB8B00A67B56 /* session_playlists.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = session_playlists.h; path = ../ardour/session_playlists.h; sourceTree = SOURCE_ROOT; };
		43AA85B0194EEB8B00A67B56 /* session_route.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = session_route.h; path = ../ardour/session_route.h; sourceTree = SOURCE_ROOT; };
		43AA85B1194EEB8B00A67B56 /* session_state_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = session_state_utils.h; path = ../ardour/session_state_utils.h; sourceTree = SOURCE_ROOT; };
		43AA85B2194EEB8B00A67B56 /* session_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = session_utils.h; path = ../ardour/session_utils.h; sourceTree = SOURCE_ROOT; };
		43AA85B3194EEB8B00A67B56 /* session.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = session.h; path = ../ardour/session.h; sourceTree = SOURCE_ROOT; };
		43AA85B4194EEB8B00A67B56 /* silentfilesource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = silentfilesource.h; path = ../ardour/silentfilesource.h; sourceTree = SOURCE_ROOT; };
		43AA85B5194EEB8B00A67B56 /* slave.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = slave.h; path = ../ardour/slave.h; sourceTree = SOURCE_ROOT; };
		43AA85B6194EEB8B00A67B56 /* smf_source.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = smf_source.h; path = ../ardour/smf_source.h; sourceTree = SOURCE_ROOT; };
		43AA85B7194EEB8B00A67B56 /* sndfile_helpers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sndfile_helpers.h; path = ../ardour/sndfile_helpers.h; sourceTree = SOURCE_ROOT; };
		43AA85B8194EEB8B00A67B56 /* sndfileimportable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sndfileimportable.h; path = ../ardour/sndfileimportable.h; sourceTree = SOURCE_ROOT; };
		43AA85B9194EEB8B00A67B56 /* sndfilesource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sndfilesource.h; path = ../ardour/sndfilesource.h; sourceTree = SOURCE_ROOT; };
		43AA85BA194EEB8B00A67B56 /* soundseq.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = soundseq.h; path = ../ardour/soundseq.h; sourceTree = SOURCE_ROOT; };
		43AA85BB194EEB8B00A67B56 /* source_factory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = source_factory.h; path = ../ardour/source_factory.h; sourceTree = SOURCE_ROOT; };
		43AA85BC194EEB8B00A67B56 /* source.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = source.h; path = ../ardour/source.h; sourceTree = SOURCE_ROOT; };
		43AA85BD194EEB8B00A67B56 /* speaker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = speaker.h; path = ../ardour/speaker.h; sourceTree = SOURCE_ROOT; };
		43AA85BE194EEB8B00A67B56 /* speakers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = speakers.h; path = ../ardour/speakers.h; sourceTree = SOURCE_ROOT; };
		43AA85BF194EEB8B00A67B56 /* spline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = spline.h; path = ../ardour/spline.h; sourceTree = SOURCE_ROOT; };
		43AA85C0194EEB8B00A67B56 /* srcfilesource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = srcfilesource.h; path = ../ardour/srcfilesource.h; sourceTree = SOURCE_ROOT; };
		43AA85C1194EEB8B00A67B56 /* stretch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = stretch.h; path = ../ardour/stretch.h; sourceTree = SOURCE_ROOT; };
		43AA85C2194EEB8B00A67B56 /* strip_silence.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = strip_silence.h; path = ../ardour/strip_silence.h; sourceTree = SOURCE_ROOT; };
		43AA85C3194EEB8B00A67B56 /* system_exec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = system_exec.h; path = ../ardour/system_exec.h; sourceTree = SOURCE_ROOT; };
		43AA85C4194EEB8B00A67B56 /* tape_file_matcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tape_file_matcher.h; path = ../ardour/tape_file_matcher.h; sourceTree = SOURCE_ROOT; };
		43AA85C5194EEB8B00A67B56 /* template_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = template_utils.h; path = ../ardour/template_utils.h; sourceTree = SOURCE_ROOT; };
		43AA85C6194EEB8B00A67B56 /* tempo_map_importer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tempo_map_importer.h; path = ../ardour/tempo_map_importer.h; sourceTree = SOURCE_ROOT; };
		43AA85C7194EEB8B00A67B56 /* tempo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tempo.h; path = ../ardour/tempo.h; sourceTree = SOURCE_ROOT; };
		43AA85C8194EEB8B00A67B56 /* thread_buffers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = thread_buffers.h; path = ../ardour/thread_buffers.h; sourceTree = SOURCE_ROOT; };
		43AA85C9194EEB8B00A67B56 /* ticker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ticker.h; path = ../ardour/ticker.h; sourceTree = SOURCE_ROOT; };
		43AA85CA194EEB8B00A67B56 /* timecode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = timecode.h; path = ../ardour/timecode.h; sourceTree = SOURCE_ROOT; };
		43AA85CB194EEB8B00A67B56 /* timefx_request.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = timefx_request.h; path = ../ardour/timefx_request.h; sourceTree = SOURCE_ROOT; };
		43AA85CC194EEB8B00A67B56 /* timestamps.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = timestamps.h; path = ../ardour/timestamps.h; sourceTree = SOURCE_ROOT; };
		43AA85CD194EEB8B00A67B56 /* track.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = track.h; path = ../ardour/track.h; sourceTree = SOURCE_ROOT; };
		43AA85CE194EEB8B00A67B56 /* transient_detector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = transient_detector.h; path = ../ardour/transient_detector.h; sourceTree = SOURCE_ROOT; };
		43AA85CF194EEB8B00A67B56 /* trimmable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = trimmable.h; path = ../ardour/trimmable.h; sourceTree = SOURCE_ROOT; };
		43AA85D0194EEB8B00A67B56 /* types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = types.h; path = ../ardour/types.h; sourceTree = SOURCE_ROOT; };
		43AA85D1194EEB8B00A67B56 /* unknown_processor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = unknown_processor.h; path = ../ardour/unknown_processor.h; sourceTree = SOURCE_ROOT; };
		43AA85D2194EEB8B00A67B56 /* uri_map.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = uri_map.h; path = ../ardour/uri_map.h; sourceTree = SOURCE_ROOT; };
		43AA85D3194EEB8B00A67B56 /* user_bundle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = user_bundle.h; path = ../ardour/user_bundle.h; sourceTree = SOURCE_ROOT; };
		43AA85D4194EEB8B00A67B56 /* utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = utils.h; path = ../ardour/utils.h; sourceTree = SOURCE_ROOT; };
		43AA85D5194EEB8B00A67B56 /* version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = version.h; path = ../ardour/version.h; sourceTree = SOURCE_ROOT; };
		43AA85D6194EEB8B00A67B56 /* vst_info_file.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = vst_info_file.h; path = ../ardour/vst_info_file.h; sourceTree = SOURCE_ROOT; };
		43AA85D7194EEB8B00A67B56 /* vst_plugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = vst_plugin.h; path = ../ardour/vst_plugin.h; sourceTree = SOURCE_ROOT; };
		43AA85D8194EEB8B00A67B56 /* vst_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = vst_types.h; path = ../ardour/vst_types.h; sourceTree = SOURCE_ROOT; };
		43AA85D9194EEB8B00A67B56 /* vumeterdsp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = vumeterdsp.h; path = ../ardour/vumeterdsp.h; sourceTree = SOURCE_ROOT; };
		43AA85DA194EEB8B00A67B56 /* windows_vst_plugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = windows_vst_plugin.h; path = ../ardour/windows_vst_plugin.h; sourceTree = SOURCE_ROOT; };
		43AA85DB194EEB8B00A67B56 /* worker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = worker.h; path = ../ardour/worker.h; sourceTree = SOURCE_ROOT; };
		43AA86C5194EEBAF00A67B56 /* vestige.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = vestige.h; path = ../ardour/vestige/vestige.h; sourceTree = SOURCE_ROOT; };
		43AA86C8194EEBF100A67B56 /* run-profiling.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; name = "run-profiling.sh"; path = "../run-profiling.sh"; sourceTree = SOURCE_ROOT; };
		43AA86C9194EEBF100A67B56 /* run-session-tests.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; name = "run-session-tests.sh"; path = "../run-session-tests.sh"; sourceTree = SOURCE_ROOT; };
		43AA86CA194EEBF100A67B56 /* run-tests.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; name = "run-tests.sh"; path = "../run-tests.sh"; sourceTree = SOURCE_ROOT; };
		43AA86CB194EEBF100A67B56 /* test-env.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; name = "test-env.sh"; path = "../test-env.sh"; sourceTree = SOURCE_ROOT; };
		43AA86CC194EEBF100A67B56 /* wscript */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = wscript; path = ../wscript; sourceTree = SOURCE_ROOT; };
		43AA86CD194EEC1400A67B56 /* gettext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = gettext.h; path = ../gettext.h; sourceTree = SOURCE_ROOT; };
		43AA86CE194EEC1400A67B56 /* lv2_evbuf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = lv2_evbuf.h; path = ../lv2_evbuf.h; sourceTree = SOURCE_ROOT; };
		43AA86CF194EEC1400A67B56 /* rdff.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rdff.h; path = ../rdff.h; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		43AA82A6194EEAAF00A67B56 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		432652FB194EF72700BEFB46 /* ardour */ = {
			isa = PBXGroup;
			children = (
				432652FC194EF73C00BEFB46 /* amp.h */,
				432652FD194EF73C00BEFB46 /* analyser.h */,
				432652FE194EF73C00BEFB46 /* ardour.h */,
				432652FF194EF73C00BEFB46 /* async_midi_port.h */,
				43265300194EF73C00BEFB46 /* audio_backend.h */,
				43265301194EF73C00BEFB46 /* audio_buffer.h */,
				43265302194EF73C00BEFB46 /* audio_diskstream.h */,
				43265303194EF73C00BEFB46 /* audio_library.h */,
				43265304194EF73C00BEFB46 /* audio_playlist_importer.h */,
				43265305194EF73C00BEFB46 /* audio_playlist_source.h */,
				43265306194EF73C00BEFB46 /* audio_port.h */,
				43265307194EF73C00BEFB46 /* audio_region_importer.h */,
				43265308194EF73C00BEFB46 /* audio_track.h */,
				43265309194EF73C00BEFB46 /* audio_track_importer.h */,
				4326530A194EF73C00BEFB46 /* audio_unit.h */,
				4326530B194EF73C00BEFB46 /* audioanalyser.h */,
				4326530C194EF73C00BEFB46 /* audioengine.h */,
				4326530D194EF73C00BEFB46 /* audiofile_tagger.h */,
				4326530E194EF73C00BEFB46 /* audiofilesource.h */,
				4326530F194EF73C00BEFB46 /* audioplaylist.h */,
				43265310194EF73C00BEFB46 /* audioregion.h */,
				43265311194EF73C00BEFB46 /* audiosource.h */,
				43265312194EF73C00BEFB46 /* auditioner.h */,
				43265313194EF73C00BEFB46 /* auto_bundle.h */,
				43265314194EF73C00BEFB46 /* automatable.h */,
				43265315194EF73C00BEFB46 /* automatable_sequence.h */,
				43265316194EF73C00BEFB46 /* automation_control.h */,
				43265317194EF73C00BEFB46 /* automation_list.h */,
				43265318194EF73C00BEFB46 /* automation_watch.h */,
				43265319194EF73C00BEFB46 /* beats_frames_converter.h */,
				4326531A194EF73C00BEFB46 /* broadcast_info.h */,
				4326531B194EF73C00BEFB46 /* buffer.h */,
				4326531C194EF73C00BEFB46 /* buffer_manager.h */,
				4326531D194EF73C00BEFB46 /* buffer_set.h */,
				4326531E194EF73C00BEFB46 /* bundle.h */,
				4326531F194EF73C00BEFB46 /* butler.h */,
				43265320194EF73C00BEFB46 /* caimportable.h */,
				43265321194EF73C00BEFB46 /* capturing_processor.h */,
				43265322194EF73C00BEFB46 /* chan_count.h */,
				43265323194EF73C00BEFB46 /* chan_mapping.h */,
				43265324194EF73C00BEFB46 /* click.h */,
				43265325194EF73C00BEFB46 /* comparable_shared_ptr.h */,
				43265326194EF73C00BEFB46 /* configuration.h */,
				43265327194EF73C00BEFB46 /* configuration_variable.h */,
				43265328194EF73C00BEFB46 /* control_protocol_manager.h */,
				43265329194EF73C00BEFB46 /* coreaudiosource.h */,
				4326532A194EF73C00BEFB46 /* cycle_timer.h */,
				4326532B194EF73C00BEFB46 /* cycles.h */,
				4326532C194EF73C00BEFB46 /* data_type.h */,
				4326532D194EF73C00BEFB46 /* dB.h */,
				4326532E194EF73C00BEFB46 /* debug.h */,
				4326532F194EF73C00BEFB46 /* delivery.h */,
				43265330194EF73C00BEFB46 /* directory_names.h */,
				43265331194EF73C00BEFB46 /* diskstream.h */,
				43265332194EF73C00BEFB46 /* element_import_handler.h */,
				43265333194EF73C00BEFB46 /* element_importer.h */,
				43265334194EF73C00BEFB46 /* engine_state_controller.h */,
				43265335194EF73C00BEFB46 /* event_type_map.h */,
				43265336194EF73C00BEFB46 /* export_channel.h */,
				43265337194EF73C00BEFB46 /* export_channel_configuration.h */,
				43265338194EF73C00BEFB46 /* export_failed.h */,
				43265339194EF73C00BEFB46 /* export_filename.h */,
				4326533A194EF73C00BEFB46 /* export_format_base.h */,
				4326533B194EF73C00BEFB46 /* export_format_compatibility.h */,
				4326533C194EF73C00BEFB46 /* export_format_manager.h */,
				4326533D194EF73C00BEFB46 /* export_format_specification.h */,
				4326533E194EF73C00BEFB46 /* export_formats.h */,
				4326533F194EF73C00BEFB46 /* export_graph_builder.h */,
				43265340194EF73C00BEFB46 /* export_handler.h */,
				43265341194EF73C00BEFB46 /* export_multiplication.h */,
				43265342194EF73C00BEFB46 /* export_pointers.h */,
				43265343194EF73C00BEFB46 /* export_preset.h */,
				43265344194EF73C00BEFB46 /* export_profile_manager.h */,
				43265345194EF73C00BEFB46 /* export_status.h */,
				43265346194EF73C00BEFB46 /* export_timespan.h */,
				43265347194EF73C00BEFB46 /* file_source.h */,
				43265348194EF73C00BEFB46 /* filename_extensions.h */,
				43265349194EF73C00BEFB46 /* filesystem_paths.h */,
				4326534A194EF73C00BEFB46 /* filter.h */,
				4326534B194EF73C00BEFB46 /* graph.h */,
				4326534C194EF73C00BEFB46 /* graphnode.h */,
				4326534D194EF73C00BEFB46 /* iec1ppmdsp.h */,
				4326534E194EF73C00BEFB46 /* iec2ppmdsp.h */,
				4326534F194EF73C00BEFB46 /* import_status.h */,
				43265350194EF73C00BEFB46 /* importable_source.h */,
				43265351194EF73C00BEFB46 /* instrument_info.h */,
				43265352194EF73C00BEFB46 /* internal_return.h */,
				43265353194EF73C00BEFB46 /* internal_send.h */,
				43265354194EF73C00BEFB46 /* interpolation.h */,
				43265355194EF73C00BEFB46 /* interthread_info.h */,
				43265356194EF73C00BEFB46 /* io.h */,
				43265357194EF73C00BEFB46 /* io_processor.h */,
				43265358194EF73C00BEFB46 /* jack_utils.h */,
				43265359194EF73C00BEFB46 /* kmeterdsp.h */,
				4326535A194EF73C00BEFB46 /* ladspa.h */,
				4326535B194EF73C00BEFB46 /* ladspa_plugin.h */,
				4326535C194EF73C00BEFB46 /* latent.h */,
				4326535D194EF73C00BEFB46 /* libardour_visibility.h */,
				4326535E194EF73C00BEFB46 /* linux_vst_support.h */,
				4326535F194EF73C00BEFB46 /* location.h */,
				43265360194EF73C00BEFB46 /* location_importer.h */,
				43265361194EF73C00BEFB46 /* logcurve.h */,
				43265362194EF73C00BEFB46 /* lv2_plugin.h */,
				43265363194EF73C00BEFB46 /* lxvst_plugin.h */,
				43265364194EF73C00BEFB46 /* meter.h */,
				43265365194EF73C00BEFB46 /* midi_automation_list_binder.h */,
				43265366194EF73C00BEFB46 /* midi_buffer.h */,
				43265367194EF73C00BEFB46 /* midi_diskstream.h */,
				43265368194EF73C00BEFB46 /* midi_model.h */,
				43265369194EF73C00BEFB46 /* midi_operator.h */,
				4326536A194EF73C00BEFB46 /* midi_patch_manager.h */,
				4326536B194EF73C00BEFB46 /* midi_playlist.h */,
				4326536C194EF73C00BEFB46 /* midi_playlist_source.h */,
				4326536D194EF73C00BEFB46 /* midi_port.h */,
				4326536E194EF73C00BEFB46 /* midi_region.h */,
				4326536F194EF73C00BEFB46 /* midi_ring_buffer.h */,
				43265370194EF73C00BEFB46 /* midi_source.h */,
				43265371194EF73C00BEFB46 /* midi_state_tracker.h */,
				43265372194EF73C00BEFB46 /* midi_stretch.h */,
				43265373194EF73C00BEFB46 /* midi_track.h */,
				43265374194EF73C00BEFB46 /* midi_ui.h */,
				43265375194EF73C00BEFB46 /* midiport_manager.h */,
				43265376194EF73C00BEFB46 /* mix.h */,
				43265377194EF73C00BEFB46 /* monitor_processor.h */,
				43265378194EF73C00BEFB46 /* movable.h */,
				43265379194EF73C00BEFB46 /* msvc_libardour.h */,
				4326537A194EF73C00BEFB46 /* mtdm.h */,
				4326537B194EF73C00BEFB46 /* mute_master.h */,
				4326537C194EF73C00BEFB46 /* noise.h */,
				4326537D194EF73C00BEFB46 /* onset_detector.h */,
				4326537E194EF73C00BEFB46 /* operations.h */,
				4326537F194EF73C00BEFB46 /* pan_controllable.h */,
				43265380194EF73C00BEFB46 /* pannable.h */,
				43265381194EF73C00BEFB46 /* panner.h */,
				43265382194EF73C00BEFB46 /* panner_manager.h */,
				43265383194EF73C00BEFB46 /* panner_shell.h */,
				43265384194EF73C00BEFB46 /* pcm_utils.h */,
				43265385194EF73C00BEFB46 /* peak.h */,
				43265386194EF73C00BEFB46 /* pi_controller.h */,
				43265387194EF73C00BEFB46 /* pitch.h */,
				43265388194EF73C00BEFB46 /* playlist.h */,
				43265389194EF73C00BEFB46 /* playlist_factory.h */,
				4326538A194EF73C00BEFB46 /* playlist_source.h */,
				4326538B194EF73C00BEFB46 /* plugin.h */,
				4326538C194EF73C00BEFB46 /* plugin_insert.h */,
				4326538D194EF73C00BEFB46 /* plugin_manager.h */,
				4326538E194EF73C00BEFB46 /* plugin_types.h */,
				4326538F194EF73C00BEFB46 /* port.h */,
				43265390194EF73C00BEFB46 /* port_engine.h */,
				43265391194EF73C00BEFB46 /* port_insert.h */,
				43265392194EF73C00BEFB46 /* port_manager.h */,
				43265393194EF73C00BEFB46 /* port_set.h */,
				43265394194EF73C00BEFB46 /* process_thread.h */,
				43265395194EF73C00BEFB46 /* processor.h */,
				43265396194EF73C00BEFB46 /* profile.h */,
				43265397194EF73C00BEFB46 /* progress.h */,
				43265398194EF73C00BEFB46 /* proxy_controllable.h */,
				43265399194EF73C00BEFB46 /* public_diskstream.h */,
				4326539A194EF73C00BEFB46 /* quantize.h */,
				4326539B194EF73C00BEFB46 /* rb_effect.h */,
				4326539C194EF73C00BEFB46 /* rc_configuration.h */,
				4326539D194EF73C00BEFB46 /* rc_configuration_vars.h */,
				4326539E194EF73C00BEFB46 /* readable.h */,
				4326539F194EF73C00BEFB46 /* recent_sessions.h */,
				432653A0194EF73C00BEFB46 /* region.h */,
				432653A1194EF73C00BEFB46 /* region_factory.h */,
				432653A2194EF73C00BEFB46 /* region_sorters.h */,
				432653A3194EF73C00BEFB46 /* resampled_source.h */,
				432653A4194EF73C00BEFB46 /* return.h */,
				432653A5194EF73C00BEFB46 /* reverse.h */,
				432653A6194EF73C00BEFB46 /* revision.h */,
				432653A7194EF73C00BEFB46 /* route.h */,
				432653A8194EF73C00BEFB46 /* route_graph.h */,
				432653A9194EF73C00BEFB46 /* route_group.h */,
				432653AA194EF73C00BEFB46 /* route_group_member.h */,
				432653AB194EF73C00BEFB46 /* route_group_specialized.h */,
				432653AC194EF73C00BEFB46 /* runtime_functions.h */,
				432653AD194EF73C00BEFB46 /* search_paths.h */,
				432653AE194EF73C00BEFB46 /* send.h */,
				432653AF194EF73C00BEFB46 /* session.h */,
				432653B0194EF73C00BEFB46 /* session_configuration.h */,
				432653B1194EF73C00BEFB46 /* session_configuration_vars.h */,
				432653B2194EF73C00BEFB46 /* session_directory.h */,
				432653B3194EF73C00BEFB46 /* session_event.h */,
				432653B4194EF73C00BEFB46 /* session_handle.h */,
				432653B5194EF73C00BEFB46 /* session_metadata.h */,
				432653B6194EF73C00BEFB46 /* session_object.h */,
				432653B7194EF73C00BEFB46 /* session_playlist.h */,
				432653B8194EF73C00BEFB46 /* session_playlists.h */,
				432653B9194EF73C00BEFB46 /* session_route.h */,
				432653BA194EF73C00BEFB46 /* session_state_utils.h */,
				432653BB194EF73C00BEFB46 /* session_utils.h */,
				432653BC194EF73C00BEFB46 /* silentfilesource.h */,
				432653BD194EF73C00BEFB46 /* slave.h */,
				432653BE194EF73C00BEFB46 /* smf_source.h */,
				432653BF194EF73C00BEFB46 /* sndfile_helpers.h */,
				432653C0194EF73C00BEFB46 /* sndfileimportable.h */,
				432653C1194EF73C00BEFB46 /* sndfilesource.h */,
				432653C2194EF73C00BEFB46 /* soundseq.h */,
				432653C3194EF73C00BEFB46 /* source.h */,
				432653C4194EF73C00BEFB46 /* source_factory.h */,
				432653C5194EF73C00BEFB46 /* speaker.h */,
				432653C6194EF73C00BEFB46 /* speakers.h */,
				432653C7194EF73C00BEFB46 /* spline.h */,
				432653C8194EF73C00BEFB46 /* srcfilesource.h */,
				432653C9194EF73C00BEFB46 /* stretch.h */,
				432653CA194EF73C00BEFB46 /* strip_silence.h */,
				432653CB194EF73C00BEFB46 /* system_exec.h */,
				432653CC194EF73C00BEFB46 /* tape_file_matcher.h */,
				432653CD194EF73C00BEFB46 /* template_utils.h */,
				432653CE194EF73C00BEFB46 /* tempo.h */,
				432653CF194EF73C00BEFB46 /* tempo_map_importer.h */,
				432653D0194EF73C00BEFB46 /* thread_buffers.h */,
				432653D1194EF73C00BEFB46 /* ticker.h */,
				432653D2194EF73C00BEFB46 /* timecode.h */,
				432653D3194EF73C00BEFB46 /* timefx_request.h */,
				432653D4194EF73C00BEFB46 /* timestamps.h */,
				432653D5194EF73C00BEFB46 /* track.h */,
				432653D6194EF73C00BEFB46 /* transient_detector.h */,
				432653D7194EF73C00BEFB46 /* trimmable.h */,
				432653D8194EF73C00BEFB46 /* types.h */,
				432653D9194EF73C00BEFB46 /* unknown_processor.h */,
				432653DA194EF73C00BEFB46 /* uri_map.h */,
				432653DB194EF73C00BEFB46 /* user_bundle.h */,
				432653DC194EF73C00BEFB46 /* utils.h */,
				432653DD194EF73C00BEFB46 /* version.h */,
				432653DE194EF73C00BEFB46 /* vestige */,
				432653E0194EF73C00BEFB46 /* vst_info_file.h */,
				432653E1194EF73C00BEFB46 /* vst_plugin.h */,
				432653E2194EF73C00BEFB46 /* vst_types.h */,
				432653E3194EF73C00BEFB46 /* vumeterdsp.h */,
				432653E4194EF73C00BEFB46 /* windows_vst_plugin.h */,
				432653E5194EF73C00BEFB46 /* worker.h */,
			);
			name = ardour;
			path = ../ardour;
			sourceTree = "<group>";
		};
		432653DE194EF73C00BEFB46 /* vestige */ = {
			isa = PBXGroup;
			children = (
				432653DF194EF73C00BEFB46 /* vestige.h */,
			);
			path = vestige;
			sourceTree = "<group>";
		};
		432859EA1A10F436006C3E03 /* macosx */ = {
			isa = PBXGroup;
			children = (
				432859EB1A10F436006C3E03 /* libardour.xcodeproj */,
			);
			name = macosx;
			sourceTree = "<group>";
		};
		432859EC1A10F436006C3E03 /* Products */ = {
			isa = PBXGroup;
			name = Products;
			sourceTree = "<group>";
		};
		43AA8295194EEA6F00A67B56 = {
			isa = PBXGroup;
			children = (
				43AA86C7194EEBC300A67B56 /* scripts */,
				43AA84F3194EEB6F00A67B56 /* headers */,
				43AA8458194EEB5F00A67B56 /* test */,
				43AA82AD194EEACB00A67B56 /* source */,
				43AA829F194EEA6F00A67B56 /* Products */,
			);
			sourceTree = "<group>";
		};
		43AA829F194EEA6F00A67B56 /* Products */ = {
			isa = PBXGroup;
			children = (
				43AA82A9194EEAAF00A67B56 /* liblibardour.dylib */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		43AA82AD194EEACB00A67B56 /* source */ = {
			isa = PBXGroup;
			children = (
				432859EA1A10F436006C3E03 /* macosx */,
				432859EE1A10F436006C3E03 /* midi_scene_change.cc */,
				432859EF1A10F436006C3E03 /* midi_scene_changer.cc */,
				432859F01A10F436006C3E03 /* mididm.cc */,
				432859F11A10F436006C3E03 /* scene_change.cc */,
				432859F21A10F436006C3E03 /* soundcloud_upload.cc */,
				43AA82AE194EEB2600A67B56 /* amp.cc */,
				43AA82AF194EEB2600A67B56 /* analyser.cc */,
				43AA82B0194EEB2600A67B56 /* async_midi_port.cc */,
				43AA82B1194EEB2600A67B56 /* audio_buffer.cc */,
				43AA82B2194EEB2600A67B56 /* audio_diskstream.cc */,
				43AA82B3194EEB2600A67B56 /* audio_library.cc */,
				43AA82B4194EEB2600A67B56 /* audio_playlist_importer.cc */,
				43AA82B5194EEB2600A67B56 /* audio_playlist_source.cc */,
				43AA82B6194EEB2600A67B56 /* audio_playlist.cc */,
				43AA82B7194EEB2600A67B56 /* audio_port.cc */,
				43AA82B8194EEB2600A67B56 /* audio_region_importer.cc */,
				43AA82B9194EEB2600A67B56 /* audio_track_importer.cc */,
				43AA82BA194EEB2600A67B56 /* audio_track.cc */,
				43AA82BB194EEB2600A67B56 /* audio_unit.cc */,
				43AA82BC194EEB2600A67B56 /* audioanalyser.cc */,
				43AA82BD194EEB2600A67B56 /* audioengine.cc */,
				43AA82BE194EEB2600A67B56 /* audiofile_tagger.cc */,
				43AA82BF194EEB2600A67B56 /* audiofilesource.cc */,
				43AA82C0194EEB2600A67B56 /* audioregion.cc */,
				43AA82C1194EEB2600A67B56 /* audiosource.cc */,
				43AA82C2194EEB2600A67B56 /* auditioner.cc */,
				43AA82C3194EEB2600A67B56 /* auto_bundle.cc */,
				43AA82C4194EEB2600A67B56 /* automatable.cc */,
				43AA82C5194EEB2600A67B56 /* automation_control.cc */,
				43AA82C6194EEB2600A67B56 /* automation_list.cc */,
				43AA82C7194EEB2600A67B56 /* automation_watch.cc */,
				43AA82C8194EEB2600A67B56 /* automation.cc */,
				43AA82C9194EEB2600A67B56 /* beats_frames_converter.cc */,
				43AA82CA194EEB2600A67B56 /* broadcast_info.cc */,
				43AA82CB194EEB2600A67B56 /* buffer_manager.cc */,
				43AA82CC194EEB2600A67B56 /* buffer_set.cc */,
				43AA82CD194EEB2600A67B56 /* buffer.cc */,
				43AA82CE194EEB2600A67B56 /* bundle.cc */,
				43AA82CF194EEB2600A67B56 /* butler.cc */,
				43AA82D0194EEB2600A67B56 /* caimportable.cc */,
				43AA82D1194EEB2600A67B56 /* capturing_processor.cc */,
				43AA82D2194EEB2600A67B56 /* chan_count.cc */,
				43AA82D3194EEB2600A67B56 /* chan_mapping.cc */,
				43AA82D4194EEB2600A67B56 /* config_text.cc */,
				43AA82D5194EEB2600A67B56 /* configuration.cc */,
				43AA82D6194EEB2600A67B56 /* control_protocol_manager.cc */,
				43AA82D7194EEB2600A67B56 /* coreaudiosource.cc */,
				43AA82D8194EEB2600A67B56 /* cycle_timer.cc */,
				43AA82D9194EEB2600A67B56 /* data_type.cc */,
				43AA82DA194EEB2600A67B56 /* debug.cc */,
				43AA82DB194EEB2600A67B56 /* default_click.cc */,
				43AA82DC194EEB2600A67B56 /* delivery.cc */,
				43AA82DD194EEB2600A67B56 /* directory_names.cc */,
				43AA82DE194EEB2600A67B56 /* diskstream.cc */,
				43AA82DF194EEB2600A67B56 /* element_import_handler.cc */,
				43AA82E0194EEB2600A67B56 /* element_importer.cc */,
				43AA82E1194EEB2600A67B56 /* engine_slave.cc */,
				43AA82E2194EEB2600A67B56 /* engine_state_controller.cc */,
				43AA82E3194EEB2600A67B56 /* enums.cc */,
				43AA82E4194EEB2600A67B56 /* event_type_map.cc */,
				43AA82E5194EEB2600A67B56 /* export_channel_configuration.cc */,
				43AA82E6194EEB2600A67B56 /* export_channel.cc */,
				43AA82E7194EEB2600A67B56 /* export_failed.cc */,
				43AA82E8194EEB2600A67B56 /* export_filename.cc */,
				43AA82E9194EEB2600A67B56 /* export_format_base.cc */,
				43AA82EA194EEB2600A67B56 /* export_format_manager.cc */,
				43AA82EB194EEB2600A67B56 /* export_format_specification.cc */,
				43AA82EC194EEB2600A67B56 /* export_formats.cc */,
				43AA82ED194EEB2600A67B56 /* export_graph_builder.cc */,
				43AA82EE194EEB2600A67B56 /* export_handler.cc */,
				43AA82EF194EEB2600A67B56 /* export_multiplication.cc */,
				43AA82F0194EEB2600A67B56 /* export_preset.cc */,
				43AA82F1194EEB2600A67B56 /* export_profile_manager.cc */,
				43AA82F2194EEB2600A67B56 /* export_status.cc */,
				43AA82F3194EEB2600A67B56 /* export_timespan.cc */,
				43AA82F4194EEB2600A67B56 /* file_source.cc */,
				43AA82F5194EEB2600A67B56 /* filename_extensions.cc */,
				43AA82F6194EEB2600A67B56 /* filesystem_paths.cc */,
				43AA82F7194EEB2600A67B56 /* filter.cc */,
				43AA82F8194EEB2600A67B56 /* find_session.cc */,
				43AA82F9194EEB2600A67B56 /* globals.cc */,
				43AA82FA194EEB2600A67B56 /* graph.cc */,
				43AA82FB194EEB2600A67B56 /* graphnode.cc */,
				43AA82FC194EEB2600A67B56 /* iec1ppmdsp.cc */,
				43AA82FD194EEB2600A67B56 /* iec2ppmdsp.cc */,
				43AA82FE194EEB2600A67B56 /* import.cc */,
				43AA82FF194EEB2600A67B56 /* instrument_info.cc */,
				43AA8300194EEB2600A67B56 /* internal_return.cc */,
				43AA8301194EEB2600A67B56 /* internal_send.cc */,
				43AA8302194EEB2600A67B56 /* interpolation.cc */,
				43AA8303194EEB2600A67B56 /* io_processor.cc */,
				43AA8304194EEB2600A67B56 /* io.cc */,
				43AA8305194EEB2600A67B56 /* kmeterdsp.cc */,
				43AA8306194EEB2600A67B56 /* ladspa_plugin.cc */,
				43AA8307194EEB2600A67B56 /* linux_vst_support.cc */,
				43AA8308194EEB2600A67B56 /* location_importer.cc */,
				43AA8309194EEB2600A67B56 /* location.cc */,
				43AA830A194EEB2600A67B56 /* ltc_slave.cc */,
				43AA830B194EEB2600A67B56 /* lv2_evbuf.c */,
				43AA830C194EEB2600A67B56 /* lv2_plugin.cc */,
				43AA830D194EEB2600A67B56 /* lxvst_plugin.cc */,
				43AA830E194EEB2600A67B56 /* meter.cc */,
				43AA830F194EEB2600A67B56 /* midi_automation_list_binder.cc */,
				43AA8310194EEB2600A67B56 /* midi_buffer.cc */,
				43AA8311194EEB2600A67B56 /* midi_clock_slave.cc */,
				43AA8312194EEB2600A67B56 /* midi_diskstream.cc */,
				43AA8313194EEB2600A67B56 /* midi_model.cc */,
				43AA8314194EEB2600A67B56 /* midi_patch_manager.cc */,
				43AA8315194EEB2600A67B56 /* midi_playlist_source.cc */,
				43AA8316194EEB2600A67B56 /* midi_playlist.cc */,
				43AA8317194EEB2600A67B56 /* midi_port.cc */,
				43AA8318194EEB2600A67B56 /* midi_region.cc */,
				43AA8319194EEB2600A67B56 /* midi_ring_buffer.cc */,
				43AA831A194EEB2600A67B56 /* midi_source.cc */,
				43AA831B194EEB2600A67B56 /* midi_state_tracker.cc */,
				43AA831C194EEB2600A67B56 /* midi_stretch.cc */,
				43AA831D194EEB2600A67B56 /* midi_track.cc */,
				43AA831E194EEB2600A67B56 /* midi_ui.cc */,
				43AA831F194EEB2600A67B56 /* midiport_manager.cc */,
				43AA8320194EEB2600A67B56 /* mix.cc */,
				43AA8321194EEB2600A67B56 /* monitor_processor.cc */,
				43AA8322194EEB2600A67B56 /* mtc_slave.cc */,
				43AA8323194EEB2600A67B56 /* mtdm.cc */,
				43AA8324194EEB2600A67B56 /* mute_master.cc */,
				43AA8325194EEB2600A67B56 /* onset_detector.cc */,
				43AA8326194EEB2600A67B56 /* operations.cc */,
				43AA8327194EEB2600A67B56 /* pan_controllable.cc */,
				43AA8328194EEB2600A67B56 /* pannable.cc */,
				43AA8329194EEB2600A67B56 /* panner_manager.cc */,
				43AA832A194EEB2600A67B56 /* panner_shell.cc */,
				43AA832B194EEB2600A67B56 /* panner.cc */,
				43AA832C194EEB2600A67B56 /* pcm_utils.cc */,
				43AA832D194EEB2600A67B56 /* pi_controller.cc */,
				43AA832E194EEB2600A67B56 /* playlist_factory.cc */,
				43AA832F194EEB2600A67B56 /* playlist_source.cc */,
				43AA8330194EEB2600A67B56 /* playlist.cc */,
				43AA8331194EEB2600A67B56 /* plugin_insert.cc */,
				43AA8332194EEB2600A67B56 /* plugin_manager.cc */,
				43AA8333194EEB2600A67B56 /* plugin.cc */,
				43AA8334194EEB2600A67B56 /* port_insert.cc */,
				43AA8335194EEB2600A67B56 /* port_manager.cc */,
				43AA8336194EEB2600A67B56 /* port_set.cc */,
				43AA8337194EEB2600A67B56 /* port.cc */,
				43AA8338194EEB2600A67B56 /* process_thread.cc */,
				43AA8339194EEB2600A67B56 /* processor.cc */,
				43AA833A194EEB2600A67B56 /* progress.cc */,
				43AA833B194EEB2600A67B56 /* quantize.cc */,
				43AA833C194EEB2600A67B56 /* rb_effect.cc */,
				43AA833D194EEB2600A67B56 /* rc_configuration.cc */,
				43AA833E194EEB2600A67B56 /* rdff.c */,
				43AA833F194EEB2600A67B56 /* recent_sessions.cc */,
				43AA8340194EEB2600A67B56 /* region_factory.cc */,
				43AA8341194EEB2600A67B56 /* region.cc */,
				43AA8342194EEB2600A67B56 /* resampled_source.cc */,
				43AA8343194EEB2600A67B56 /* return.cc */,
				43AA8344194EEB2600A67B56 /* reverse.cc */,
				43AA8345194EEB2600A67B56 /* revision.cc */,
				43AA8346194EEB2600A67B56 /* route_graph.cc */,
				43AA8347194EEB2600A67B56 /* route_group_member.cc */,
				43AA8348194EEB2600A67B56 /* route_group.cc */,
				43AA8349194EEB2600A67B56 /* route.cc */,
				43AA834A194EEB2600A67B56 /* search_paths.cc */,
				43AA834B194EEB2600A67B56 /* send.cc */,
				43AA834C194EEB2600A67B56 /* session_butler.cc */,
				43AA834D194EEB2600A67B56 /* session_click.cc */,
				43AA834E194EEB2600A67B56 /* session_command.cc */,
				43AA834F194EEB2600A67B56 /* session_configuration.cc */,
				43AA8350194EEB2600A67B56 /* session_directory.cc */,
				43AA8351194EEB2600A67B56 /* session_events.cc */,
				43AA8352194EEB2600A67B56 /* session_export.cc */,
				43AA8353194EEB2600A67B56 /* session_handle.cc */,
				43AA8354194EEB2600A67B56 /* session_ltc.cc */,
				43AA8355194EEB2600A67B56 /* session_metadata.cc */,
				43AA8356194EEB2600A67B56 /* session_midi.cc */,
				43AA8357194EEB2600A67B56 /* session_object.cc */,
				43AA8358194EEB2600A67B56 /* session_playlists.cc */,
				43AA8359194EEB2600A67B56 /* session_process.cc */,
				43AA835A194EEB2600A67B56 /* session_rtevents.cc */,
				43AA835B194EEB2600A67B56 /* session_state_utils.cc */,
				43AA835C194EEB2600A67B56 /* session_state.cc */,
				43AA835D194EEB2600A67B56 /* session_time.cc */,
				43AA835E194EEB2600A67B56 /* session_transport.cc */,
				43AA835F194EEB2600A67B56 /* session_vst.cc */,
				43AA8360194EEB2600A67B56 /* session.cc */,
				43AA8361194EEB2600A67B56 /* slave.cc */,
				43AA8362194EEB2600A67B56 /* smf_source.cc */,
				43AA8363194EEB2600A67B56 /* sndfile_helpers.cc */,
				43AA8364194EEB2600A67B56 /* sndfileimportable.cc */,
				43AA8365194EEB2600A67B56 /* sndfilesource.cc */,
				43AA8366194EEB2600A67B56 /* source_factory.cc */,
				43AA8367194EEB2600A67B56 /* source.cc */,
				43AA8368194EEB2600A67B56 /* speakers.cc */,
				43AA8369194EEB2600A67B56 /* srcfilesource.cc */,
				43AA836A194EEB2600A67B56 /* sse_functions_64bit.s */,
				43AA836B194EEB2600A67B56 /* sse_functions_xmm.cc */,
				43AA836C194EEB2600A67B56 /* sse_functions.s */,
				43AA836D194EEB2600A67B56 /* st_pitch.cc */,
				43AA836E194EEB2600A67B56 /* st_stretch.cc */,
				43AA836F194EEB2600A67B56 /* strip_silence.cc */,
				43AA8370194EEB2600A67B56 /* system_exec.cc */,
				43AA8371194EEB2600A67B56 /* tape_file_matcher.cc */,
				43AA8372194EEB2600A67B56 /* template_utils.cc */,
				43AA8373194EEB2600A67B56 /* tempo_map_importer.cc */,
				43AA8374194EEB2600A67B56 /* tempo.cc */,
				43AA8375194EEB2600A67B56 /* thread_buffers.cc */,
				43AA8376194EEB2600A67B56 /* ticker.cc */,
				43AA8377194EEB2600A67B56 /* track.cc */,
				43AA8378194EEB2600A67B56 /* transient_detector.cc */,
				43AA8379194EEB2600A67B56 /* unknown_processor.cc */,
				43AA837A194EEB2600A67B56 /* uri_map.cc */,
				43AA837B194EEB2600A67B56 /* user_bundle.cc */,
				43AA837C194EEB2600A67B56 /* utils.cc */,
				43AA837D194EEB2600A67B56 /* version.cc */,
				43AA837E194EEB2600A67B56 /* vst_info_file.cc */,
				43AA837F194EEB2600A67B56 /* vst_plugin.cc */,
				43AA8380194EEB2600A67B56 /* vumeterdsp.cc */,
				43AA8381194EEB2600A67B56 /* windows_vst_plugin.cc */,
				43AA8382194EEB2600A67B56 /* worker.cc */,
			);
			name = source;
			sourceTree = "<group>";
		};
		43AA8458194EEB5F00A67B56 /* test */ = {
			isa = PBXGroup;
			children = (
				43AA8459194EEB5F00A67B56 /* audio_engine_test.cc */,
				43AA845A194EEB5F00A67B56 /* audio_engine_test.h */,
				43AA845B194EEB5F00A67B56 /* audio_region_read_test.cc */,
				43AA845C194EEB5F00A67B56 /* audio_region_read_test.h */,
				43AA845D194EEB5F00A67B56 /* audio_region_test.cc */,
				43AA845E194EEB5F00A67B56 /* audio_region_test.h */,
				43AA845F194EEB5F00A67B56 /* automation_list_property_test.cc */,
				43AA8460194EEB5F00A67B56 /* automation_list_property_test.h */,
				43AA8461194EEB5F00A67B56 /* bbt_test.cc */,
				43AA8462194EEB5F00A67B56 /* bbt_test.h */,
				43AA8463194EEB5F00A67B56 /* combine_regions_test.cc */,
				43AA8464194EEB5F00A67B56 /* combine_regions_test.h */,
				43AA8465194EEB5F00A67B56 /* control_surfaces_test.cc */,
				43AA8466194EEB5F00A67B56 /* control_surfaces_test.h */,
				43AA8467194EEB5F00A67B56 /* data */,
				43AA847C194EEB5F00A67B56 /* dummy_lxvst.cc */,
				43AA847D194EEB5F00A67B56 /* framepos_minus_beats_test.cc */,
				43AA847E194EEB5F00A67B56 /* framepos_minus_beats_test.h */,
				43AA847F194EEB5F00A67B56 /* framepos_plus_beats_test.cc */,
				43AA8480194EEB5F00A67B56 /* framepos_plus_beats_test.h */,
				43AA8481194EEB5F00A67B56 /* framewalk_to_beats_test.cc */,
				43AA8482194EEB5F00A67B56 /* framewalk_to_beats_test.h */,
				43AA8483194EEB5F00A67B56 /* interpolation_test.cc */,
				43AA8484194EEB5F00A67B56 /* interpolation_test.h */,
				43AA8485194EEB5F00A67B56 /* jack_utils_test.cc */,
				43AA8486194EEB5F00A67B56 /* jack_utils_test.h */,
				43AA8487194EEB5F00A67B56 /* load_session.cc */,
				43AA8488194EEB5F00A67B56 /* load_sessions_test.cc */,
				43AA8489194EEB5F00A67B56 /* load_sessions_test.h */,
				43AA848A194EEB5F00A67B56 /* midi_clock_slave_test.cc */,
				43AA848B194EEB5F00A67B56 /* midi_clock_slave_test.h */,
				43AA848C194EEB5F00A67B56 /* mtdm_test.cc */,
				43AA848D194EEB5F00A67B56 /* mtdm_test.h */,
				43AA848E194EEB5F00A67B56 /* playlist_equivalent_regions_test.cc */,
				43AA848F194EEB5F00A67B56 /* playlist_equivalent_regions_test.h */,
				43AA8490194EEB5F00A67B56 /* playlist_layering_test.cc */,
				43AA8491194EEB5F00A67B56 /* playlist_layering_test.h */,
				43AA8492194EEB5F00A67B56 /* playlist_read_test.cc */,
				43AA8493194EEB5F00A67B56 /* playlist_read_test.h */,
				43AA8494194EEB5F00A67B56 /* plugins_test.cc */,
				43AA8495194EEB5F00A67B56 /* plugins_test.h */,
				43AA8496194EEB5F00A67B56 /* profiling */,
				43AA84AA194EEB5F00A67B56 /* region_naming_test.cc */,
				43AA84AB194EEB5F00A67B56 /* region_naming_test.h */,
				43AA84AC194EEB5F00A67B56 /* resampled_source_test.cc */,
				43AA84AD194EEB5F00A67B56 /* resampled_source_test.h */,
				43AA84AE194EEB5F00A67B56 /* session_test.cc */,
				43AA84AF194EEB5F00A67B56 /* session_test.h */,
				43AA84B0194EEB5F00A67B56 /* tempo_test.cc */,
				43AA84B1194EEB5F00A67B56 /* tempo_test.h */,
				43AA84B2194EEB5F00A67B56 /* test_common.cc */,
				43AA84B3194EEB5F00A67B56 /* test_common.h */,
				43AA84B4194EEB5F00A67B56 /* test_needing_session.cc */,
				43AA84B5194EEB5F00A67B56 /* test_needing_session.h */,
				43AA84B6194EEB5F00A67B56 /* test_util.cc */,
				43AA84B7194EEB5F00A67B56 /* test_util.h */,
				43AA84B8194EEB5F00A67B56 /* testrunner.cc */,
			);
			name = test;
			path = ../../../libs/ardour/test;
			sourceTree = "<group>";
		};
		43AA8467194EEB5F00A67B56 /* data */ = {
			isa = PBXGroup;
			children = (
				43AA8468194EEB5F00A67B56 /* 2 Track-template */,
				43AA846A194EEB5F00A67B56 /* automation_list_property_test1.ref */,
				43AA846B194EEB5F00A67B56 /* automation_list_property_test2.ref */,
				43AA846C194EEB5F00A67B56 /* automation_list_property_test3.ref */,
				43AA846D194EEB5F00A67B56 /* automation_list_property_test4.ref */,
				43AA846E194EEB5F00A67B56 /* mantis_3356 */,
				43AA8475194EEB5F00A67B56 /* mantis_3356.ref */,
				43AA8476194EEB5F00A67B56 /* sessions */,
				43AA847B194EEB5F00A67B56 /* test.wav */,
			);
			path = data;
			sourceTree = "<group>";
		};
		43AA8468194EEB5F00A67B56 /* 2 Track-template */ = {
			isa = PBXGroup;
			children = (
				43AA8469194EEB5F00A67B56,
			);
			path = "2 Track-template";
			sourceTree = "<group>";
		};
		43AA846E194EEB5F00A67B56 /* mantis_3356 */ = {
			isa = PBXGroup;
			children = (
				43AA846F194EEB5F00A67B56 /* instant.xml */,
				43AA8470194EEB5F00A67B56 /* interchange */,
				43AA8474194EEB5F00A67B56 /* mantis_3356.ardour */,
			);
			path = mantis_3356;
			sourceTree = "<group>";
		};
		43AA8470194EEB5F00A67B56 /* interchange */ = {
			isa = PBXGroup;
			children = (
				43AA8471194EEB5F00A67B56 /* mantis_3356 */,
			);
			path = interchange;
			sourceTree = "<group>";
		};
		43AA8471194EEB5F00A67B56 /* mantis_3356 */ = {
			isa = PBXGroup;
			children = (
				43AA8472194EEB5F00A67B56 /* midifiles */,
			);
			path = mantis_3356;
			sourceTree = "<group>";
		};
		43AA8472194EEB5F00A67B56 /* midifiles */ = {
			isa = PBXGroup;
			children = (
				43AA8473194EEB5F00A67B56 /* Midi 1-1.mid */,
			);
			path = midifiles;
			sourceTree = "<group>";
		};
		43AA8476194EEB5F00A67B56 /* sessions */ = {
			isa = PBXGroup;
			children = (
				43AA8477194EEB5F00A67B56 /* rec_enabled */,
			);
			path = sessions;
			sourceTree = "<group>";
		};
		43AA8477194EEB5F00A67B56 /* rec_enabled */ = {
			isa = PBXGroup;
			children = (
				43AA8478194EEB5F00A67B56 /* instant.xml */,
				43AA8479194EEB5F00A67B56 /* rec_enabled.ardour */,
				43AA847A194EEB5F00A67B56 /* rec_enabled.history */,
			);
			path = rec_enabled;
			sourceTree = "<group>";
		};
		43AA8496194EEB5F00A67B56 /* profiling */ = {
			isa = PBXGroup;
			children = (
				43AA8497194EEB5F00A67B56 /* load_session.cc */,
				43AA8498194EEB5F00A67B56 /* lots_of_regions.cc */,
				43AA8499194EEB5F00A67B56 /* runpc.cc */,
				43AA849A194EEB5F00A67B56 /* sessions */,
			);
			path = profiling;
			sourceTree = "<group>";
		};
		43AA849A194EEB5F00A67B56 /* sessions */ = {
			isa = PBXGroup;
			children = (
				43AA849B194EEB5F00A67B56 /* 0tracks */,
				43AA849E194EEB5F00A67B56 /* 1region */,
				43AA84A6194EEB5F00A67B56 /* 32tracks */,
			);
			path = sessions;
			sourceTree = "<group>";
		};
		43AA849B194EEB5F00A67B56 /* 0tracks */ = {
			isa = PBXGroup;
			children = (
				43AA849C194EEB5F00A67B56 /* 0tracks.ardour */,
				43AA849D194EEB5F00A67B56 /* 0tracks.history */,
			);
			path = 0tracks;
			sourceTree = "<group>";
		};
		43AA849E194EEB5F00A67B56 /* 1region */ = {
			isa = PBXGroup;
			children = (
				43AA849F194EEB5F00A67B56 /* 1region.ardour */,
				43AA84A0194EEB5F00A67B56 /* 1region.history */,
				43AA84A1194EEB5F00A67B56 /* instant.xml */,
				43AA84A2194EEB5F00A67B56 /* interchange */,
			);
			path = 1region;
			sourceTree = "<group>";
		};
		43AA84A2194EEB5F00A67B56 /* interchange */ = {
			isa = PBXGroup;
			children = (
				43AA84A3194EEB5F00A67B56 /* 1region */,
			);
			path = interchange;
			sourceTree = "<group>";
		};
		43AA84A3194EEB5F00A67B56 /* 1region */ = {
			isa = PBXGroup;
			children = (
				43AA84A4194EEB5F00A67B56 /* midifiles */,
			);
			path = 1region;
			sourceTree = "<group>";
		};
		43AA84A4194EEB5F00A67B56 /* midifiles */ = {
			isa = PBXGroup;
			children = (
				43AA84A5194EEB5F00A67B56 /* MIDI 1-1.mid */,
			);
			path = midifiles;
			sourceTree = "<group>";
		};
		43AA84A6194EEB5F00A67B56 /* 32tracks */ = {
			isa = PBXGroup;
			children = (
				43AA84A7194EEB5F00A67B56 /* 32tracks.ardour */,
				43AA84A8194EEB5F00A67B56 /* 32tracks.history */,
				43AA84A9194EEB5F00A67B56 /* instant.xml */,
			);
			path = 32tracks;
			sourceTree = "<group>";
		};
		43AA84F3194EEB6F00A67B56 /* headers */ = {
			isa = PBXGroup;
			children = (
				432859E21A10F415006C3E03 /* midi_scene_change.h */,
				432859E31A10F415006C3E03 /* midi_scene_changer.h */,
				432859E41A10F415006C3E03 /* mididm.h */,
				432859E51A10F415006C3E03 /* soundcloud_upload.h */,
				43AA86CD194EEC1400A67B56 /* gettext.h */,
				43AA86CE194EEC1400A67B56 /* lv2_evbuf.h */,
				43AA86CF194EEC1400A67B56 /* rdff.h */,
				43AA86C4194EEBAF00A67B56 /* vestige */,
				43AA84F4194EEB8B00A67B56 /* amp.h */,
				43AA84F5194EEB8B00A67B56 /* analyser.h */,
				43AA84F6194EEB8B00A67B56 /* ardour.h */,
				43AA84F7194EEB8B00A67B56 /* async_midi_port.h */,
				43AA84F8194EEB8B00A67B56 /* audio_backend.h */,
				43AA84F9194EEB8B00A67B56 /* audio_buffer.h */,
				432652FB194EF72700BEFB46 /* ardour */,
				43AA84FA194EEB8B00A67B56 /* audio_diskstream.h */,
				43AA84FB194EEB8B00A67B56 /* audio_library.h */,
				43AA84FC194EEB8B00A67B56 /* audio_playlist_importer.h */,
				43AA84FD194EEB8B00A67B56 /* audio_playlist_source.h */,
				43AA84FE194EEB8B00A67B56 /* audio_port.h */,
				43AA84FF194EEB8B00A67B56 /* audio_region_importer.h */,
				43AA8500194EEB8B00A67B56 /* audio_track_importer.h */,
				43AA8501194EEB8B00A67B56 /* audio_track.h */,
				43AA8502194EEB8B00A67B56 /* audio_unit.h */,
				43AA8503194EEB8B00A67B56 /* audioanalyser.h */,
				43AA8504194EEB8B00A67B56 /* audioengine.h */,
				43AA8505194EEB8B00A67B56 /* audiofile_tagger.h */,
				43AA8506194EEB8B00A67B56 /* audiofilesource.h */,
				43AA8507194EEB8B00A67B56 /* audioplaylist.h */,
				43AA8508194EEB8B00A67B56 /* audioregion.h */,
				43AA8509194EEB8B00A67B56 /* audiosource.h */,
				43AA850A194EEB8B00A67B56 /* auditioner.h */,
				43AA850B194EEB8B00A67B56 /* auto_bundle.h */,
				43AA850C194EEB8B00A67B56 /* automatable_sequence.h */,
				43AA850D194EEB8B00A67B56 /* automatable.h */,
				43AA850E194EEB8B00A67B56 /* automation_control.h */,
				43AA850F194EEB8B00A67B56 /* automation_list.h */,
				43AA8510194EEB8B00A67B56 /* automation_watch.h */,
				43AA8511194EEB8B00A67B56 /* beats_frames_converter.h */,
				43AA8512194EEB8B00A67B56 /* broadcast_info.h */,
				43AA8513194EEB8B00A67B56 /* buffer_manager.h */,
				43AA8514194EEB8B00A67B56 /* buffer_set.h */,
				43AA8515194EEB8B00A67B56 /* buffer.h */,
				43AA8516194EEB8B00A67B56 /* bundle.h */,
				43AA8517194EEB8B00A67B56 /* butler.h */,
				43AA8518194EEB8B00A67B56 /* caimportable.h */,
				43AA8519194EEB8B00A67B56 /* capturing_processor.h */,
				43AA851A194EEB8B00A67B56 /* chan_count.h */,
				43AA851B194EEB8B00A67B56 /* chan_mapping.h */,
				43AA851C194EEB8B00A67B56 /* click.h */,
				43AA851D194EEB8B00A67B56 /* comparable_shared_ptr.h */,
				43AA851E194EEB8B00A67B56 /* configuration_variable.h */,
				43AA851F194EEB8B00A67B56 /* configuration.h */,
				43AA8520194EEB8B00A67B56 /* control_protocol_manager.h */,
				43AA8521194EEB8B00A67B56 /* coreaudiosource.h */,
				43AA8522194EEB8B00A67B56 /* cycle_timer.h */,
				43AA8523194EEB8B00A67B56 /* cycles.h */,
				43AA8524194EEB8B00A67B56 /* data_type.h */,
				43AA8525194EEB8B00A67B56 /* dB.h */,
				43AA8526194EEB8B00A67B56 /* debug.h */,
				43AA8527194EEB8B00A67B56 /* delivery.h */,
				43AA8528194EEB8B00A67B56 /* directory_names.h */,
				43AA8529194EEB8B00A67B56 /* diskstream.h */,
				43AA852A194EEB8B00A67B56 /* element_import_handler.h */,
				43AA852B194EEB8B00A67B56 /* element_importer.h */,
				43AA852C194EEB8B00A67B56 /* engine_state_controller.h */,
				43AA852D194EEB8B00A67B56 /* event_type_map.h */,
				43AA852E194EEB8B00A67B56 /* export_channel_configuration.h */,
				43AA852F194EEB8B00A67B56 /* export_channel.h */,
				43AA8530194EEB8B00A67B56 /* export_failed.h */,
				43AA8531194EEB8B00A67B56 /* export_filename.h */,
				43AA8532194EEB8B00A67B56 /* export_format_base.h */,
				43AA8533194EEB8B00A67B56 /* export_format_compatibility.h */,
				43AA8534194EEB8B00A67B56 /* export_format_manager.h */,
				43AA8535194EEB8B00A67B56 /* export_format_specification.h */,
				43AA8536194EEB8B00A67B56 /* export_formats.h */,
				43AA8537194EEB8B00A67B56 /* export_graph_builder.h */,
				43AA8538194EEB8B00A67B56 /* export_handler.h */,
				43AA8539194EEB8B00A67B56 /* export_multiplication.h */,
				43AA853A194EEB8B00A67B56 /* export_pointers.h */,
				43AA853B194EEB8B00A67B56 /* export_preset.h */,
				43AA853C194EEB8B00A67B56 /* export_profile_manager.h */,
				43AA853D194EEB8B00A67B56 /* export_status.h */,
				43AA853E194EEB8B00A67B56 /* export_timespan.h */,
				43AA853F194EEB8B00A67B56 /* file_source.h */,
				43AA8540194EEB8B00A67B56 /* filename_extensions.h */,
				43AA8541194EEB8B00A67B56 /* filesystem_paths.h */,
				43AA8542194EEB8B00A67B56 /* filter.h */,
				43AA8543194EEB8B00A67B56 /* graph.h */,
				43AA8544194EEB8B00A67B56 /* graphnode.h */,
				43AA8545194EEB8B00A67B56 /* iec1ppmdsp.h */,
				43AA8546194EEB8B00A67B56 /* iec2ppmdsp.h */,
				43AA8547194EEB8B00A67B56 /* import_status.h */,
				43AA8548194EEB8B00A67B56 /* importable_source.h */,
				43AA8549194EEB8B00A67B56 /* instrument_info.h */,
				43AA854A194EEB8B00A67B56 /* internal_return.h */,
				43AA854B194EEB8B00A67B56 /* internal_send.h */,
				43AA854C194EEB8B00A67B56 /* interpolation.h */,
				43AA854D194EEB8B00A67B56 /* interthread_info.h */,
				43AA854E194EEB8B00A67B56 /* io_processor.h */,
				43AA854F194EEB8B00A67B56 /* io.h */,
				43AA8550194EEB8B00A67B56 /* jack_utils.h */,
				43AA8551194EEB8B00A67B56 /* kmeterdsp.h */,
				43AA8552194EEB8B00A67B56 /* ladspa_plugin.h */,
				43AA8553194EEB8B00A67B56 /* ladspa.h */,
				43AA8554194EEB8B00A67B56 /* latent.h */,
				43AA8555194EEB8B00A67B56 /* libardour_visibility.h */,
				43AA8556194EEB8B00A67B56 /* linux_vst_support.h */,
				43AA8557194EEB8B00A67B56 /* location_importer.h */,
				43AA8558194EEB8B00A67B56 /* location.h */,
				43AA8559194EEB8B00A67B56 /* logcurve.h */,
				43AA855A194EEB8B00A67B56 /* lv2_plugin.h */,
				43AA855B194EEB8B00A67B56 /* lxvst_plugin.h */,
				43AA855C194EEB8B00A67B56 /* meter.h */,
				43AA855D194EEB8B00A67B56 /* midi_automation_list_binder.h */,
				43AA855E194EEB8B00A67B56 /* midi_buffer.h */,
				43AA855F194EEB8B00A67B56 /* midi_diskstream.h */,
				43AA8560194EEB8B00A67B56 /* midi_model.h */,
				43AA8561194EEB8B00A67B56 /* midi_operator.h */,
				43AA8562194EEB8B00A67B56 /* midi_patch_manager.h */,
				43AA8563194EEB8B00A67B56 /* midi_playlist_source.h */,
				43AA8564194EEB8B00A67B56 /* midi_playlist.h */,
				43AA8565194EEB8B00A67B56 /* midi_port.h */,
				43AA8566194EEB8B00A67B56 /* midi_region.h */,
				43AA8567194EEB8B00A67B56 /* midi_ring_buffer.h */,
				43AA8568194EEB8B00A67B56 /* midi_source.h */,
				43AA8569194EEB8B00A67B56 /* midi_state_tracker.h */,
				43AA856A194EEB8B00A67B56 /* midi_stretch.h */,
				43AA856B194EEB8B00A67B56 /* midi_track.h */,
				43AA856C194EEB8B00A67B56 /* midi_ui.h */,
				43AA856D194EEB8B00A67B56 /* midiport_manager.h */,
				43AA856E194EEB8B00A67B56 /* mix.h */,
				43AA856F194EEB8B00A67B56 /* monitor_processor.h */,
				43AA8570194EEB8B00A67B56 /* movable.h */,
				43AA8571194EEB8B00A67B56 /* msvc_libardour.h */,
				43AA8572194EEB8B00A67B56 /* mtdm.h */,
				43AA8573194EEB8B00A67B56 /* mute_master.h */,
				43AA8574194EEB8B00A67B56 /* noise.h */,
				43AA8575194EEB8B00A67B56 /* onset_detector.h */,
				43AA8576194EEB8B00A67B56 /* operations.h */,
				43AA8577194EEB8B00A67B56 /* pan_controllable.h */,
				43AA8578194EEB8B00A67B56 /* pannable.h */,
				43AA8579194EEB8B00A67B56 /* panner_manager.h */,
				43AA857A194EEB8B00A67B56 /* panner_shell.h */,
				43AA857B194EEB8B00A67B56 /* panner.h */,
				43AA857C194EEB8B00A67B56 /* pcm_utils.h */,
				43AA857D194EEB8B00A67B56 /* peak.h */,
				43AA857E194EEB8B00A67B56 /* pi_controller.h */,
				43AA857F194EEB8B00A67B56 /* pitch.h */,
				43AA8580194EEB8B00A67B56 /* playlist_factory.h */,
				43AA8581194EEB8B00A67B56 /* playlist_source.h */,
				43AA8582194EEB8B00A67B56 /* playlist.h */,
				43AA8583194EEB8B00A67B56 /* plugin_insert.h */,
				43AA8584194EEB8B00A67B56 /* plugin_manager.h */,
				43AA8585194EEB8B00A67B56 /* plugin_types.h */,
				43AA8586194EEB8B00A67B56 /* plugin.h */,
				43AA8587194EEB8B00A67B56 /* port_engine.h */,
				43AA8588194EEB8B00A67B56 /* port_insert.h */,
				43AA8589194EEB8B00A67B56 /* port_manager.h */,
				43AA858A194EEB8B00A67B56 /* port_set.h */,
				43AA858B194EEB8B00A67B56 /* port.h */,
				43AA858C194EEB8B00A67B56 /* process_thread.h */,
				43AA858D194EEB8B00A67B56 /* processor.h */,
				43AA858E194EEB8B00A67B56 /* profile.h */,
				43AA858F194EEB8B00A67B56 /* progress.h */,
				43AA8590194EEB8B00A67B56 /* proxy_controllable.h */,
				43AA8591194EEB8B00A67B56 /* public_diskstream.h */,
				43AA8592194EEB8B00A67B56 /* quantize.h */,
				43AA8593194EEB8B00A67B56 /* rb_effect.h */,
				43AA8594194EEB8B00A67B56 /* rc_configuration_vars.h */,
				43AA8595194EEB8B00A67B56 /* rc_configuration.h */,
				43AA8596194EEB8B00A67B56 /* readable.h */,
				43AA8597194EEB8B00A67B56 /* recent_sessions.h */,
				43AA8598194EEB8B00A67B56 /* region_factory.h */,
				43AA8599194EEB8B00A67B56 /* region_sorters.h */,
				43AA859A194EEB8B00A67B56 /* region.h */,
				43AA859B194EEB8B00A67B56 /* resampled_source.h */,
				43AA859C194EEB8B00A67B56 /* return.h */,
				43AA859D194EEB8B00A67B56 /* reverse.h */,
				43AA859E194EEB8B00A67B56 /* revision.h */,
				43AA859F194EEB8B00A67B56 /* route_graph.h */,
				43AA85A0194EEB8B00A67B56 /* route_group_member.h */,
				43AA85A1194EEB8B00A67B56 /* route_group_specialized.h */,
				43AA85A2194EEB8B00A67B56 /* route_group.h */,
				43AA85A3194EEB8B00A67B56 /* route.h */,
				43AA85A4194EEB8B00A67B56 /* runtime_functions.h */,
				43AA85A5194EEB8B00A67B56 /* search_paths.h */,
				43AA85A6194EEB8B00A67B56 /* send.h */,
				43AA85A7194EEB8B00A67B56 /* session_configuration_vars.h */,
				43AA85A8194EEB8B00A67B56 /* session_configuration.h */,
				43AA85A9194EEB8B00A67B56 /* session_directory.h */,
				43AA85AA194EEB8B00A67B56 /* session_event.h */,
				43AA85AB194EEB8B00A67B56 /* session_handle.h */,
				43AA85AC194EEB8B00A67B56 /* session_metadata.h */,
				43AA85AD194EEB8B00A67B56 /* session_object.h */,
				43AA85AE194EEB8B00A67B56 /* session_playlist.h */,
				43AA85AF194EEB8B00A67B56 /* session_playlists.h */,
				43AA85B0194EEB8B00A67B56 /* session_route.h */,
				43AA85B1194EEB8B00A67B56 /* session_state_utils.h */,
				43AA85B2194EEB8B00A67B56 /* session_utils.h */,
				43AA85B3194EEB8B00A67B56 /* session.h */,
				43AA85B4194EEB8B00A67B56 /* silentfilesource.h */,
				43AA85B5194EEB8B00A67B56 /* slave.h */,
				43AA85B6194EEB8B00A67B56 /* smf_source.h */,
				43AA85B7194EEB8B00A67B56 /* sndfile_helpers.h */,
				43AA85B8194EEB8B00A67B56 /* sndfileimportable.h */,
				43AA85B9194EEB8B00A67B56 /* sndfilesource.h */,
				43AA85BA194EEB8B00A67B56 /* soundseq.h */,
				43AA85BB194EEB8B00A67B56 /* source_factory.h */,
				43AA85BC194EEB8B00A67B56 /* source.h */,
				43AA85BD194EEB8B00A67B56 /* speaker.h */,
				43AA85BE194EEB8B00A67B56 /* speakers.h */,
				43AA85BF194EEB8B00A67B56 /* spline.h */,
				43AA85C0194EEB8B00A67B56 /* srcfilesource.h */,
				43AA85C1194EEB8B00A67B56 /* stretch.h */,
				43AA85C2194EEB8B00A67B56 /* strip_silence.h */,
				43AA85C3194EEB8B00A67B56 /* system_exec.h */,
				43AA85C4194EEB8B00A67B56 /* tape_file_matcher.h */,
				43AA85C5194EEB8B00A67B56 /* template_utils.h */,
				43AA85C6194EEB8B00A67B56 /* tempo_map_importer.h */,
				43AA85C7194EEB8B00A67B56 /* tempo.h */,
				43AA85C8194EEB8B00A67B56 /* thread_buffers.h */,
				43AA85C9194EEB8B00A67B56 /* ticker.h */,
				43AA85CA194EEB8B00A67B56 /* timecode.h */,
				43AA85CB194EEB8B00A67B56 /* timefx_request.h */,
				43AA85CC194EEB8B00A67B56 /* timestamps.h */,
				43AA85CD194EEB8B00A67B56 /* track.h */,
				43AA85CE194EEB8B00A67B56 /* transient_detector.h */,
				43AA85CF194EEB8B00A67B56 /* trimmable.h */,
				43AA85D0194EEB8B00A67B56 /* types.h */,
				43AA85D1194EEB8B00A67B56 /* unknown_processor.h */,
				43AA85D2194EEB8B00A67B56 /* uri_map.h */,
				43AA85D3194EEB8B00A67B56 /* user_bundle.h */,
				43AA85D4194EEB8B00A67B56 /* utils.h */,
				43AA85D5194EEB8B00A67B56 /* version.h */,
				43AA85D6194EEB8B00A67B56 /* vst_info_file.h */,
				43AA85D7194EEB8B00A67B56 /* vst_plugin.h */,
				43AA85D8194EEB8B00A67B56 /* vst_types.h */,
				43AA85D9194EEB8B00A67B56 /* vumeterdsp.h */,
				43AA85DA194EEB8B00A67B56 /* windows_vst_plugin.h */,
				43AA85DB194EEB8B00A67B56 /* worker.h */,
			);
			name = headers;
			sourceTree = "<group>";
		};
		43AA86C4194EEBAF00A67B56 /* vestige */ = {
			isa = PBXGroup;
			children = (
				43AA86C5194EEBAF00A67B56 /* vestige.h */,
			);
			name = vestige;
			path = ../../../libs/ardour/ardour/vestige;
			sourceTree = "<group>";
		};
		43AA86C7194EEBC300A67B56 /* scripts */ = {
			isa = PBXGroup;
			children = (
				43AA86C8194EEBF100A67B56 /* run-profiling.sh */,
				43AA86C9194EEBF100A67B56 /* run-session-tests.sh */,
				43AA86CA194EEBF100A67B56 /* run-tests.sh */,
				43AA86CB194EEBF100A67B56 /* test-env.sh */,
				43AA86CC194EEBF100A67B56 /* wscript */,
			);
			name = scripts;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
		43AA82A7194EEAAF00A67B56 /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				43AA84BA194EEB5F00A67B56 /* audio_engine_test.h in Headers */,
				43AA84BC194EEB5F00A67B56 /* audio_region_read_test.h in Headers */,
				43AA84BE194EEB5F00A67B56 /* audio_region_test.h in Headers */,
				43AA84C0194EEB5F00A67B56 /* automation_list_property_test.h in Headers */,
				43AA84C2194EEB5F00A67B56 /* bbt_test.h in Headers */,
				43AA84C4194EEB5F00A67B56 /* combine_regions_test.h in Headers */,
				43AA84C6194EEB5F00A67B56 /* control_surfaces_test.h in Headers */,
				43AA84C9194EEB5F00A67B56 /* framepos_minus_beats_test.h in Headers */,
				43AA84CB194EEB5F00A67B56 /* framepos_plus_beats_test.h in Headers */,
				43AA84CD194EEB5F00A67B56 /* framewalk_to_beats_test.h in Headers */,
				43AA84CF194EEB5F00A67B56 /* interpolation_test.h in Headers */,
				43AA84D1194EEB5F00A67B56 /* jack_utils_test.h in Headers */,
				43AA84D4194EEB5F00A67B56 /* load_sessions_test.h in Headers */,
				43AA84D6194EEB5F00A67B56 /* midi_clock_slave_test.h in Headers */,
				43AA84D8194EEB5F00A67B56 /* mtdm_test.h in Headers */,
				43AA84DA194EEB5F00A67B56 /* playlist_equivalent_regions_test.h in Headers */,
				43AA84DC194EEB5F00A67B56 /* playlist_layering_test.h in Headers */,
				43AA84DE194EEB5F00A67B56 /* playlist_read_test.h in Headers */,
				43AA84E0194EEB5F00A67B56 /* plugins_test.h in Headers */,
				43AA84E5194EEB5F00A67B56 /* region_naming_test.h in Headers */,
				43AA84E7194EEB5F00A67B56 /* resampled_source_test.h in Headers */,
				43AA84E9194EEB5F00A67B56 /* session_test.h in Headers */,
				43AA84EB194EEB5F00A67B56 /* tempo_test.h in Headers */,
				43AA84ED194EEB5F00A67B56 /* test_common.h in Headers */,
				43AA84EF194EEB5F00A67B56 /* test_needing_session.h in Headers */,
				43AA84F1194EEB5F00A67B56 /* test_util.h in Headers */,
				43AA85DC194EEB8B00A67B56 /* amp.h in Headers */,
				43AA85DD194EEB8B00A67B56 /* analyser.h in Headers */,
				43AA85DE194EEB8B00A67B56 /* ardour.h in Headers */,
				43AA85DF194EEB8B00A67B56 /* async_midi_port.h in Headers */,
				43AA85E0194EEB8B00A67B56 /* audio_backend.h in Headers */,
				43AA85E1194EEB8B00A67B56 /* audio_buffer.h in Headers */,
				43AA85E2194EEB8B00A67B56 /* audio_diskstream.h in Headers */,
				43AA85E3194EEB8B00A67B56 /* audio_library.h in Headers */,
				43AA85E4194EEB8B00A67B56 /* audio_playlist_importer.h in Headers */,
				43AA85E5194EEB8B00A67B56 /* audio_playlist_source.h in Headers */,
				43AA85E6194EEB8B00A67B56 /* audio_port.h in Headers */,
				43AA85E7194EEB8B00A67B56 /* audio_region_importer.h in Headers */,
				43AA85E8194EEB8B00A67B56 /* audio_track_importer.h in Headers */,
				43AA85E9194EEB8B00A67B56 /* audio_track.h in Headers */,
				43AA85EA194EEB8B00A67B56 /* audio_unit.h in Headers */,
				43AA85EB194EEB8B00A67B56 /* audioanalyser.h in Headers */,
				43AA85EC194EEB8B00A67B56 /* audioengine.h in Headers */,
				43AA85ED194EEB8B00A67B56 /* audiofile_tagger.h in Headers */,
				43AA85EE194EEB8B00A67B56 /* audiofilesource.h in Headers */,
				43AA85EF194EEB8B00A67B56 /* audioplaylist.h in Headers */,
				43AA85F0194EEB8B00A67B56 /* audioregion.h in Headers */,
				43AA85F1194EEB8B00A67B56 /* audiosource.h in Headers */,
				43AA85F2194EEB8B00A67B56 /* auditioner.h in Headers */,
				43AA85F3194EEB8B00A67B56 /* auto_bundle.h in Headers */,
				43AA85F4194EEB8B00A67B56 /* automatable_sequence.h in Headers */,
				43AA85F5194EEB8B00A67B56 /* automatable.h in Headers */,
				43AA85F6194EEB8B00A67B56 /* automation_control.h in Headers */,
				43AA85F7194EEB8B00A67B56 /* automation_list.h in Headers */,
				43AA85F8194EEB8B00A67B56 /* automation_watch.h in Headers */,
				43AA85F9194EEB8B00A67B56 /* beats_frames_converter.h in Headers */,
				43AA85FA194EEB8B00A67B56 /* broadcast_info.h in Headers */,
				43AA85FB194EEB8B00A67B56 /* buffer_manager.h in Headers */,
				43AA85FC194EEB8B00A67B56 /* buffer_set.h in Headers */,
				43AA85FD194EEB8B00A67B56 /* buffer.h in Headers */,
				43AA85FE194EEB8B00A67B56 /* bundle.h in Headers */,
				43AA85FF194EEB8B00A67B56 /* butler.h in Headers */,
				43AA8600194EEB8B00A67B56 /* caimportable.h in Headers */,
				43AA8601194EEB8B00A67B56 /* capturing_processor.h in Headers */,
				43AA8602194EEB8B00A67B56 /* chan_count.h in Headers */,
				43AA8603194EEB8B00A67B56 /* chan_mapping.h in Headers */,
				43AA8604194EEB8B00A67B56 /* click.h in Headers */,
				43AA8605194EEB8B00A67B56 /* comparable_shared_ptr.h in Headers */,
				43AA8606194EEB8B00A67B56 /* configuration_variable.h in Headers */,
				43AA8607194EEB8B00A67B56 /* configuration.h in Headers */,
				43AA8608194EEB8B00A67B56 /* control_protocol_manager.h in Headers */,
				43AA8609194EEB8B00A67B56 /* coreaudiosource.h in Headers */,
				43AA860A194EEB8B00A67B56 /* cycle_timer.h in Headers */,
				43AA860B194EEB8B00A67B56 /* cycles.h in Headers */,
				43AA860C194EEB8B00A67B56 /* data_type.h in Headers */,
				43AA860D194EEB8B00A67B56 /* dB.h in Headers */,
				43AA860E194EEB8B00A67B56 /* debug.h in Headers */,
				43AA860F194EEB8B00A67B56 /* delivery.h in Headers */,
				43AA8610194EEB8B00A67B56 /* directory_names.h in Headers */,
				43AA8611194EEB8B00A67B56 /* diskstream.h in Headers */,
				43AA8612194EEB8B00A67B56 /* element_import_handler.h in Headers */,
				43AA8613194EEB8B00A67B56 /* element_importer.h in Headers */,
				43AA8614194EEB8B00A67B56 /* engine_state_controller.h in Headers */,
				43AA8615194EEB8B00A67B56 /* event_type_map.h in Headers */,
				43AA8616194EEB8B00A67B56 /* export_channel_configuration.h in Headers */,
				43AA8617194EEB8B00A67B56 /* export_channel.h in Headers */,
				43AA8618194EEB8B00A67B56 /* export_failed.h in Headers */,
				43AA8619194EEB8B00A67B56 /* export_filename.h in Headers */,
				43AA861A194EEB8B00A67B56 /* export_format_base.h in Headers */,
				43AA861B194EEB8B00A67B56 /* export_format_compatibility.h in Headers */,
				43AA861C194EEB8B00A67B56 /* export_format_manager.h in Headers */,
				43AA861D194EEB8B00A67B56 /* export_format_specification.h in Headers */,
				43AA861E194EEB8B00A67B56 /* export_formats.h in Headers */,
				43AA861F194EEB8B00A67B56 /* export_graph_builder.h in Headers */,
				43AA8620194EEB8B00A67B56 /* export_handler.h in Headers */,
				43AA8621194EEB8B00A67B56 /* export_multiplication.h in Headers */,
				43AA8622194EEB8B00A67B56 /* export_pointers.h in Headers */,
				43AA8623194EEB8B00A67B56 /* export_preset.h in Headers */,
				43AA8624194EEB8B00A67B56 /* export_profile_manager.h in Headers */,
				43AA8625194EEB8B00A67B56 /* export_status.h in Headers */,
				43AA8626194EEB8B00A67B56 /* export_timespan.h in Headers */,
				43AA8627194EEB8B00A67B56 /* file_source.h in Headers */,
				43AA8628194EEB8B00A67B56 /* filename_extensions.h in Headers */,
				43AA8629194EEB8B00A67B56 /* filesystem_paths.h in Headers */,
				43AA862A194EEB8B00A67B56 /* filter.h in Headers */,
				43AA862B194EEB8B00A67B56 /* graph.h in Headers */,
				43AA862C194EEB8B00A67B56 /* graphnode.h in Headers */,
				43AA862D194EEB8B00A67B56 /* iec1ppmdsp.h in Headers */,
				43AA862E194EEB8B00A67B56 /* iec2ppmdsp.h in Headers */,
				43AA862F194EEB8B00A67B56 /* import_status.h in Headers */,
				432859E61A10F415006C3E03 /* midi_scene_change.h in Headers */,
				43AA8630194EEB8B00A67B56 /* importable_source.h in Headers */,
				43AA8631194EEB8B00A67B56 /* instrument_info.h in Headers */,
				43AA8632194EEB8B00A67B56 /* internal_return.h in Headers */,
				432859E81A10F415006C3E03 /* mididm.h in Headers */,
				43AA8633194EEB8B00A67B56 /* internal_send.h in Headers */,
				43AA8634194EEB8B00A67B56 /* interpolation.h in Headers */,
				43AA8635194EEB8B00A67B56 /* interthread_info.h in Headers */,
				43AA8636194EEB8B00A67B56 /* io_processor.h in Headers */,
				43AA8637194EEB8B00A67B56 /* io.h in Headers */,
				43AA8638194EEB8B00A67B56 /* jack_utils.h in Headers */,
				43AA8639194EEB8B00A67B56 /* kmeterdsp.h in Headers */,
				43AA863A194EEB8B00A67B56 /* ladspa_plugin.h in Headers */,
				43AA863B194EEB8B00A67B56 /* ladspa.h in Headers */,
				43AA863C194EEB8B00A67B56 /* latent.h in Headers */,
				43AA863D194EEB8B00A67B56 /* libardour_visibility.h in Headers */,
				43AA863E194EEB8B00A67B56 /* linux_vst_support.h in Headers */,
				43AA863F194EEB8B00A67B56 /* location_importer.h in Headers */,
				43AA8640194EEB8B00A67B56 /* location.h in Headers */,
				43AA8641194EEB8B00A67B56 /* logcurve.h in Headers */,
				43AA8642194EEB8B00A67B56 /* lv2_plugin.h in Headers */,
				43AA8643194EEB8B00A67B56 /* lxvst_plugin.h in Headers */,
				43AA8644194EEB8B00A67B56 /* meter.h in Headers */,
				43AA8645194EEB8B00A67B56 /* midi_automation_list_binder.h in Headers */,
				43AA8646194EEB8B00A67B56 /* midi_buffer.h in Headers */,
				43AA8647194EEB8B00A67B56 /* midi_diskstream.h in Headers */,
				43AA8648194EEB8B00A67B56 /* midi_model.h in Headers */,
				43AA8649194EEB8B00A67B56 /* midi_operator.h in Headers */,
				43AA864A194EEB8B00A67B56 /* midi_patch_manager.h in Headers */,
				43AA864B194EEB8B00A67B56 /* midi_playlist_source.h in Headers */,
				43AA864C194EEB8B00A67B56 /* midi_playlist.h in Headers */,
				43AA864D194EEB8B00A67B56 /* midi_port.h in Headers */,
				43AA864E194EEB8B00A67B56 /* midi_region.h in Headers */,
				43AA864F194EEB8B00A67B56 /* midi_ring_buffer.h in Headers */,
				43AA8650194EEB8B00A67B56 /* midi_source.h in Headers */,
				43AA8651194EEB8B00A67B56 /* midi_state_tracker.h in Headers */,
				43AA8652194EEB8B00A67B56 /* midi_stretch.h in Headers */,
				43AA8653194EEB8B00A67B56 /* midi_track.h in Headers */,
				43AA8654194EEB8B00A67B56 /* midi_ui.h in Headers */,
				43AA8655194EEB8B00A67B56 /* midiport_manager.h in Headers */,
				43AA8656194EEB8B00A67B56 /* mix.h in Headers */,
				43AA8657194EEB8B00A67B56 /* monitor_processor.h in Headers */,
				43AA8658194EEB8B00A67B56 /* movable.h in Headers */,
				43AA8659194EEB8B00A67B56 /* msvc_libardour.h in Headers */,
				43AA865A194EEB8B00A67B56 /* mtdm.h in Headers */,
				43AA865B194EEB8B00A67B56 /* mute_master.h in Headers */,
				43AA865C194EEB8B00A67B56 /* noise.h in Headers */,
				43AA865D194EEB8B00A67B56 /* onset_detector.h in Headers */,
				43AA865E194EEB8B00A67B56 /* operations.h in Headers */,
				43AA865F194EEB8B00A67B56 /* pan_controllable.h in Headers */,
				432859E71A10F415006C3E03 /* midi_scene_changer.h in Headers */,
				43AA8660194EEB8B00A67B56 /* pannable.h in Headers */,
				43AA8661194EEB8B00A67B56 /* panner_manager.h in Headers */,
				43AA8662194EEB8B00A67B56 /* panner_shell.h in Headers */,
				43AA8663194EEB8B00A67B56 /* panner.h in Headers */,
				43AA8664194EEB8B00A67B56 /* pcm_utils.h in Headers */,
				43AA8665194EEB8B00A67B56 /* peak.h in Headers */,
				43AA8666194EEB8B00A67B56 /* pi_controller.h in Headers */,
				43AA8667194EEB8B00A67B56 /* pitch.h in Headers */,
				43AA8668194EEB8B00A67B56 /* playlist_factory.h in Headers */,
				43AA8669194EEB8B00A67B56 /* playlist_source.h in Headers */,
				43AA866A194EEB8B00A67B56 /* playlist.h in Headers */,
				43AA866B194EEB8B00A67B56 /* plugin_insert.h in Headers */,
				43AA866C194EEB8B00A67B56 /* plugin_manager.h in Headers */,
				43AA866D194EEB8B00A67B56 /* plugin_types.h in Headers */,
				43AA866E194EEB8B00A67B56 /* plugin.h in Headers */,
				43AA866F194EEB8B00A67B56 /* port_engine.h in Headers */,
				43AA8670194EEB8B00A67B56 /* port_insert.h in Headers */,
				43AA8671194EEB8B00A67B56 /* port_manager.h in Headers */,
				43AA8672194EEB8B00A67B56 /* port_set.h in Headers */,
				43AA8673194EEB8B00A67B56 /* port.h in Headers */,
				43AA8674194EEB8B00A67B56 /* process_thread.h in Headers */,
				43AA8675194EEB8B00A67B56 /* processor.h in Headers */,
				43AA8676194EEB8B00A67B56 /* profile.h in Headers */,
				43AA8677194EEB8B00A67B56 /* progress.h in Headers */,
				43AA8678194EEB8B00A67B56 /* proxy_controllable.h in Headers */,
				43AA8679194EEB8B00A67B56 /* public_diskstream.h in Headers */,
				43AA867A194EEB8B00A67B56 /* quantize.h in Headers */,
				43AA867B194EEB8B00A67B56 /* rb_effect.h in Headers */,
				43AA867C194EEB8B00A67B56 /* rc_configuration_vars.h in Headers */,
				43AA867D194EEB8B00A67B56 /* rc_configuration.h in Headers */,
				43AA867E194EEB8B00A67B56 /* readable.h in Headers */,
				43AA867F194EEB8B00A67B56 /* recent_sessions.h in Headers */,
				43AA8680194EEB8B00A67B56 /* region_factory.h in Headers */,
				43AA8681194EEB8B00A67B56 /* region_sorters.h in Headers */,
				43AA8682194EEB8B00A67B56 /* region.h in Headers */,
				43AA8683194EEB8B00A67B56 /* resampled_source.h in Headers */,
				43AA8684194EEB8B00A67B56 /* return.h in Headers */,
				43AA8685194EEB8B00A67B56 /* reverse.h in Headers */,
				43AA8686194EEB8B00A67B56 /* revision.h in Headers */,
				43AA8687194EEB8B00A67B56 /* route_graph.h in Headers */,
				43AA8688194EEB8B00A67B56 /* route_group_member.h in Headers */,
				43AA8689194EEB8B00A67B56 /* route_group_specialized.h in Headers */,
				43AA868A194EEB8B00A67B56 /* route_group.h in Headers */,
				43AA868B194EEB8B00A67B56 /* route.h in Headers */,
				43AA868C194EEB8B00A67B56 /* runtime_functions.h in Headers */,
				43AA868D194EEB8B00A67B56 /* search_paths.h in Headers */,
				43AA868E194EEB8B00A67B56 /* send.h in Headers */,
				43AA868F194EEB8B00A67B56 /* session_configuration_vars.h in Headers */,
				43AA8690194EEB8B00A67B56 /* session_configuration.h in Headers */,
				43AA8691194EEB8B00A67B56 /* session_directory.h in Headers */,
				43AA8692194EEB8B00A67B56 /* session_event.h in Headers */,
				43AA8693194EEB8B00A67B56 /* session_handle.h in Headers */,
				43AA8694194EEB8B00A67B56 /* session_metadata.h in Headers */,
				43AA8695194EEB8B00A67B56 /* session_object.h in Headers */,
				43AA8696194EEB8B00A67B56 /* session_playlist.h in Headers */,
				43AA8697194EEB8B00A67B56 /* session_playlists.h in Headers */,
				43AA8698194EEB8B00A67B56 /* session_route.h in Headers */,
				43AA8699194EEB8B00A67B56 /* session_state_utils.h in Headers */,
				43AA869A194EEB8B00A67B56 /* session_utils.h in Headers */,
				43AA869B194EEB8B00A67B56 /* session.h in Headers */,
				43AA869C194EEB8B00A67B56 /* silentfilesource.h in Headers */,
				43AA869D194EEB8B00A67B56 /* slave.h in Headers */,
				43AA869E194EEB8B00A67B56 /* smf_source.h in Headers */,
				43AA869F194EEB8B00A67B56 /* sndfile_helpers.h in Headers */,
				43AA86A0194EEB8B00A67B56 /* sndfileimportable.h in Headers */,
				43AA86A1194EEB8B00A67B56 /* sndfilesource.h in Headers */,
				43AA86A2194EEB8B00A67B56 /* soundseq.h in Headers */,
				43AA86A3194EEB8B00A67B56 /* source_factory.h in Headers */,
				43AA86A4194EEB8B00A67B56 /* source.h in Headers */,
				43AA86A5194EEB8B00A67B56 /* speaker.h in Headers */,
				43AA86A6194EEB8B00A67B56 /* speakers.h in Headers */,
				43AA86A7194EEB8B00A67B56 /* spline.h in Headers */,
				43AA86A8194EEB8B00A67B56 /* srcfilesource.h in Headers */,
				43AA86A9194EEB8B00A67B56 /* stretch.h in Headers */,
				43AA86AA194EEB8B00A67B56 /* strip_silence.h in Headers */,
				43AA86AB194EEB8B00A67B56 /* system_exec.h in Headers */,
				43AA86AC194EEB8B00A67B56 /* tape_file_matcher.h in Headers */,
				43AA86AD194EEB8B00A67B56 /* template_utils.h in Headers */,
				43AA86AE194EEB8B00A67B56 /* tempo_map_importer.h in Headers */,
				43AA86AF194EEB8B00A67B56 /* tempo.h in Headers */,
				43AA86B0194EEB8B00A67B56 /* thread_buffers.h in Headers */,
				43AA86B1194EEB8B00A67B56 /* ticker.h in Headers */,
				43AA86B2194EEB8B00A67B56 /* timecode.h in Headers */,
				43AA86B3194EEB8B00A67B56 /* timefx_request.h in Headers */,
				43AA86B4194EEB8B00A67B56 /* timestamps.h in Headers */,
				43AA86B5194EEB8B00A67B56 /* track.h in Headers */,
				43AA86B6194EEB8B00A67B56 /* transient_detector.h in Headers */,
				43AA86B7194EEB8B00A67B56 /* trimmable.h in Headers */,
				43AA86B8194EEB8B00A67B56 /* types.h in Headers */,
				43AA86B9194EEB8B00A67B56 /* unknown_processor.h in Headers */,
				43AA86BA194EEB8B00A67B56 /* uri_map.h in Headers */,
				43AA86BB194EEB8B00A67B56 /* user_bundle.h in Headers */,
				43AA86BC194EEB8B00A67B56 /* utils.h in Headers */,
				43AA86BD194EEB8B00A67B56 /* version.h in Headers */,
				43AA86BE194EEB8B00A67B56 /* vst_info_file.h in Headers */,
				43AA86BF194EEB8B00A67B56 /* vst_plugin.h in Headers */,
				43AA86C0194EEB8B00A67B56 /* vst_types.h in Headers */,
				43AA86C1194EEB8B00A67B56 /* vumeterdsp.h in Headers */,
				43AA86C2194EEB8B00A67B56 /* windows_vst_plugin.h in Headers */,
				43AA86C3194EEB8B00A67B56 /* worker.h in Headers */,
				43AA86C6194EEBAF00A67B56 /* vestige.h in Headers */,
				43AA86D0194EEC1400A67B56 /* gettext.h in Headers */,
				43AA86D1194EEC1400A67B56 /* lv2_evbuf.h in Headers */,
				43AA86D2194EEC1400A67B56 /* rdff.h in Headers */,
				432653E6194EF73C00BEFB46 /* amp.h in Headers */,
				432653E7194EF73C00BEFB46 /* analyser.h in Headers */,
				432653E8194EF73C00BEFB46 /* ardour.h in Headers */,
				432653E9194EF73C00BEFB46 /* async_midi_port.h in Headers */,
				432653EA194EF73C00BEFB46 /* audio_backend.h in Headers */,
				432653EB194EF73C00BEFB46 /* audio_buffer.h in Headers */,
				432653EC194EF73C00BEFB46 /* audio_diskstream.h in Headers */,
				432653ED194EF73C00BEFB46 /* audio_library.h in Headers */,
				432653EE194EF73C00BEFB46 /* audio_playlist_importer.h in Headers */,
				432653EF194EF73C00BEFB46 /* audio_playlist_source.h in Headers */,
				432653F0194EF73C00BEFB46 /* audio_port.h in Headers */,
				432653F1194EF73C00BEFB46 /* audio_region_importer.h in Headers */,
				432653F2194EF73C00BEFB46 /* audio_track.h in Headers */,
				432653F3194EF73C00BEFB46 /* audio_track_importer.h in Headers */,
				432653F4194EF73C00BEFB46 /* audio_unit.h in Headers */,
				432653F5194EF73C00BEFB46 /* audioanalyser.h in Headers */,
				432653F6194EF73C00BEFB46 /* audioengine.h in Headers */,
				432653F7194EF73C00BEFB46 /* audiofile_tagger.h in Headers */,
				432653F8194EF73C00BEFB46 /* audiofilesource.h in Headers */,
				432653F9194EF73C00BEFB46 /* audioplaylist.h in Headers */,
				432653FA194EF73C00BEFB46 /* audioregion.h in Headers */,
				432653FB194EF73C00BEFB46 /* audiosource.h in Headers */,
				432653FC194EF73C00BEFB46 /* auditioner.h in Headers */,
				432653FD194EF73C00BEFB46 /* auto_bundle.h in Headers */,
				432653FE194EF73C00BEFB46 /* automatable.h in Headers */,
				432653FF194EF73C00BEFB46 /* automatable_sequence.h in Headers */,
				43265400194EF73C00BEFB46 /* automation_control.h in Headers */,
				43265401194EF73C00BEFB46 /* automation_list.h in Headers */,
				43265402194EF73C00BEFB46 /* automation_watch.h in Headers */,
				43265403194EF73C00BEFB46 /* beats_frames_converter.h in Headers */,
				43265404194EF73C00BEFB46 /* broadcast_info.h in Headers */,
				43265405194EF73C00BEFB46 /* buffer.h in Headers */,
				43265406194EF73C00BEFB46 /* buffer_manager.h in Headers */,
				43265407194EF73C00BEFB46 /* buffer_set.h in Headers */,
				43265408194EF73C00BEFB46 /* bundle.h in Headers */,
				43265409194EF73C00BEFB46 /* butler.h in Headers */,
				4326540A194EF73C00BEFB46 /* caimportable.h in Headers */,
				4326540B194EF73C00BEFB46 /* capturing_processor.h in Headers */,
				4326540C194EF73C00BEFB46 /* chan_count.h in Headers */,
				4326540D194EF73D00BEFB46 /* chan_mapping.h in Headers */,
				4326540E194EF73D00BEFB46 /* click.h in Headers */,
				4326540F194EF73D00BEFB46 /* comparable_shared_ptr.h in Headers */,
				43265410194EF73D00BEFB46 /* configuration.h in Headers */,
				43265411194EF73D00BEFB46 /* configuration_variable.h in Headers */,
				43265412194EF73D00BEFB46 /* control_protocol_manager.h in Headers */,
				43265413194EF73D00BEFB46 /* coreaudiosource.h in Headers */,
				43265414194EF73D00BEFB46 /* cycle_timer.h in Headers */,
				43265415194EF73D00BEFB46 /* cycles.h in Headers */,
				43265416194EF73D00BEFB46 /* data_type.h in Headers */,
				43265417194EF73D00BEFB46 /* dB.h in Headers */,
				43265418194EF73D00BEFB46 /* debug.h in Headers */,
				43265419194EF73D00BEFB46 /* delivery.h in Headers */,
				4326541A194EF73D00BEFB46 /* directory_names.h in Headers */,
				4326541B194EF73D00BEFB46 /* diskstream.h in Headers */,
				4326541C194EF73D00BEFB46 /* element_import_handler.h in Headers */,
				4326541D194EF73D00BEFB46 /* element_importer.h in Headers */,
				4326541E194EF73D00BEFB46 /* engine_state_controller.h in Headers */,
				4326541F194EF73D00BEFB46 /* event_type_map.h in Headers */,
				43265420194EF73D00BEFB46 /* export_channel.h in Headers */,
				43265421194EF73D00BEFB46 /* export_channel_configuration.h in Headers */,
				43265422194EF73D00BEFB46 /* export_failed.h in Headers */,
				43265423194EF73D00BEFB46 /* export_filename.h in Headers */,
				43265424194EF73D00BEFB46 /* export_format_base.h in Headers */,
				43265425194EF73D00BEFB46 /* export_format_compatibility.h in Headers */,
				43265426194EF73D00BEFB46 /* export_format_manager.h in Headers */,
				43265427194EF73D00BEFB46 /* export_format_specification.h in Headers */,
				43265428194EF73D00BEFB46 /* export_formats.h in Headers */,
				43265429194EF73D00BEFB46 /* export_graph_builder.h in Headers */,
				4326542A194EF73D00BEFB46 /* export_handler.h in Headers */,
				4326542B194EF73D00BEFB46 /* export_multiplication.h in Headers */,
				4326542C194EF73D00BEFB46 /* export_pointers.h in Headers */,
				4326542D194EF73D00BEFB46 /* export_preset.h in Headers */,
				4326542E194EF73D00BEFB46 /* export_profile_manager.h in Headers */,
				4326542F194EF73D00BEFB46 /* export_status.h in Headers */,
				43265430194EF73D00BEFB46 /* export_timespan.h in Headers */,
				43265431194EF73D00BEFB46 /* file_source.h in Headers */,
				43265432194EF73D00BEFB46 /* filename_extensions.h in Headers */,
				43265433194EF73D00BEFB46 /* filesystem_paths.h in Headers */,
				43265434194EF73D00BEFB46 /* filter.h in Headers */,
				43265435194EF73D00BEFB46 /* graph.h in Headers */,
				43265436194EF73D00BEFB46 /* graphnode.h in Headers */,
				43265437194EF73D00BEFB46 /* iec1ppmdsp.h in Headers */,
				43265438194EF73D00BEFB46 /* iec2ppmdsp.h in Headers */,
				43265439194EF73D00BEFB46 /* import_status.h in Headers */,
				4326543A194EF73D00BEFB46 /* importable_source.h in Headers */,
				4326543B194EF73D00BEFB46 /* instrument_info.h in Headers */,
				4326543C194EF73D00BEFB46 /* internal_return.h in Headers */,
				4326543D194EF73D00BEFB46 /* internal_send.h in Headers */,
				4326543E194EF73D00BEFB46 /* interpolation.h in Headers */,
				4326543F194EF73D00BEFB46 /* interthread_info.h in Headers */,
				43265440194EF73D00BEFB46 /* io.h in Headers */,
				43265441194EF73D00BEFB46 /* io_processor.h in Headers */,
				43265442194EF73D00BEFB46 /* jack_utils.h in Headers */,
				43265443194EF73D00BEFB46 /* kmeterdsp.h in Headers */,
				43265444194EF73D00BEFB46 /* ladspa.h in Headers */,
				43265445194EF73D00BEFB46 /* ladspa_plugin.h in Headers */,
				43265446194EF73D00BEFB46 /* latent.h in Headers */,
				43265447194EF73D00BEFB46 /* libardour_visibility.h in Headers */,
				43265448194EF73D00BEFB46 /* linux_vst_support.h in Headers */,
				43265449194EF73D00BEFB46 /* location.h in Headers */,
				4326544A194EF73D00BEFB46 /* location_importer.h in Headers */,
				4326544B194EF73D00BEFB46 /* logcurve.h in Headers */,
				4326544C194EF73D00BEFB46 /* lv2_plugin.h in Headers */,
				4326544D194EF73D00BEFB46 /* lxvst_plugin.h in Headers */,
				4326544E194EF73D00BEFB46 /* meter.h in Headers */,
				4326544F194EF73D00BEFB46 /* midi_automation_list_binder.h in Headers */,
				43265450194EF73D00BEFB46 /* midi_buffer.h in Headers */,
				43265451194EF73D00BEFB46 /* midi_diskstream.h in Headers */,
				43265452194EF73D00BEFB46 /* midi_model.h in Headers */,
				43265453194EF73D00BEFB46 /* midi_operator.h in Headers */,
				43265454194EF73D00BEFB46 /* midi_patch_manager.h in Headers */,
				43265455194EF73D00BEFB46 /* midi_playlist.h in Headers */,
				43265456194EF73D00BEFB46 /* midi_playlist_source.h in Headers */,
				43265457194EF73D00BEFB46 /* midi_port.h in Headers */,
				43265458194EF73D00BEFB46 /* midi_region.h in Headers */,
				43265459194EF73D00BEFB46 /* midi_ring_buffer.h in Headers */,
				4326545A194EF73D00BEFB46 /* midi_source.h in Headers */,
				4326545B194EF73D00BEFB46 /* midi_state_tracker.h in Headers */,
				4326545C194EF73D00BEFB46 /* midi_stretch.h in Headers */,
				4326545D194EF73D00BEFB46 /* midi_track.h in Headers */,
				4326545E194EF73D00BEFB46 /* midi_ui.h in Headers */,
				4326545F194EF73D00BEFB46 /* midiport_manager.h in Headers */,
				43265460194EF73D00BEFB46 /* mix.h in Headers */,
				43265461194EF73D00BEFB46 /* monitor_processor.h in Headers */,
				43265462194EF73D00BEFB46 /* movable.h in Headers */,
				43265463194EF73D00BEFB46 /* msvc_libardour.h in Headers */,
				43265464194EF73D00BEFB46 /* mtdm.h in Headers */,
				43265465194EF73D00BEFB46 /* mute_master.h in Headers */,
				43265466194EF73D00BEFB46 /* noise.h in Headers */,
				43265467194EF73D00BEFB46 /* onset_detector.h in Headers */,
				43265468194EF73D00BEFB46 /* operations.h in Headers */,
				43265469194EF73D00BEFB46 /* pan_controllable.h in Headers */,
				4326546A194EF73D00BEFB46 /* pannable.h in Headers */,
				4326546B194EF73D00BEFB46 /* panner.h in Headers */,
				4326546C194EF73D00BEFB46 /* panner_manager.h in Headers */,
				4326546D194EF73D00BEFB46 /* panner_shell.h in Headers */,
				4326546E194EF73D00BEFB46 /* pcm_utils.h in Headers */,
				4326546F194EF73D00BEFB46 /* peak.h in Headers */,
				43265470194EF73D00BEFB46 /* pi_controller.h in Headers */,
				43265471194EF73D00BEFB46 /* pitch.h in Headers */,
				43265472194EF73D00BEFB46 /* playlist.h in Headers */,
				43265473194EF73D00BEFB46 /* playlist_factory.h in Headers */,
				43265474194EF73D00BEFB46 /* playlist_source.h in Headers */,
				43265475194EF73D00BEFB46 /* plugin.h in Headers */,
				43265476194EF73D00BEFB46 /* plugin_insert.h in Headers */,
				43265477194EF73D00BEFB46 /* plugin_manager.h in Headers */,
				43265478194EF73D00BEFB46 /* plugin_types.h in Headers */,
				43265479194EF73D00BEFB46 /* port.h in Headers */,
				4326547A194EF73D00BEFB46 /* port_engine.h in Headers */,
				4326547B194EF73D00BEFB46 /* port_insert.h in Headers */,
				4326547C194EF73D00BEFB46 /* port_manager.h in Headers */,
				4326547D194EF73D00BEFB46 /* port_set.h in Headers */,
				4326547E194EF73D00BEFB46 /* process_thread.h in Headers */,
				4326547F194EF73D00BEFB46 /* processor.h in Headers */,
				43265480194EF73D00BEFB46 /* profile.h in Headers */,
				43265481194EF73D00BEFB46 /* progress.h in Headers */,
				43265482194EF73D00BEFB46 /* proxy_controllable.h in Headers */,
				43265483194EF73D00BEFB46 /* public_diskstream.h in Headers */,
				43265484194EF73D00BEFB46 /* quantize.h in Headers */,
				43265485194EF73D00BEFB46 /* rb_effect.h in Headers */,
				43265486194EF73D00BEFB46 /* rc_configuration.h in Headers */,
				43265487194EF73D00BEFB46 /* rc_configuration_vars.h in Headers */,
				43265488194EF73D00BEFB46 /* readable.h in Headers */,
				43265489194EF73D00BEFB46 /* recent_sessions.h in Headers */,
				4326548A194EF73D00BEFB46 /* region.h in Headers */,
				4326548B194EF73D00BEFB46 /* region_factory.h in Headers */,
				4326548C194EF73D00BEFB46 /* region_sorters.h in Headers */,
				4326548D194EF73D00BEFB46 /* resampled_source.h in Headers */,
				4326548E194EF73D00BEFB46 /* return.h in Headers */,
				4326548F194EF73D00BEFB46 /* reverse.h in Headers */,
				43265490194EF73D00BEFB46 /* revision.h in Headers */,
				43265491194EF73D00BEFB46 /* route.h in Headers */,
				43265492194EF73D00BEFB46 /* route_graph.h in Headers */,
				43265493194EF73D00BEFB46 /* route_group.h in Headers */,
				43265494194EF73D00BEFB46 /* route_group_member.h in Headers */,
				43265495194EF73D00BEFB46 /* route_group_specialized.h in Headers */,
				43265496194EF73D00BEFB46 /* runtime_functions.h in Headers */,
				43265497194EF73D00BEFB46 /* search_paths.h in Headers */,
				43265498194EF73D00BEFB46 /* send.h in Headers */,
				43265499194EF73D00BEFB46 /* session.h in Headers */,
				4326549A194EF73D00BEFB46 /* session_configuration.h in Headers */,
				4326549B194EF73D00BEFB46 /* session_configuration_vars.h in Headers */,
				4326549C194EF73D00BEFB46 /* session_directory.h in Headers */,
				4326549D194EF73D00BEFB46 /* session_event.h in Headers */,
				4326549E194EF73D00BEFB46 /* session_handle.h in Headers */,
				4326549F194EF73D00BEFB46 /* session_metadata.h in Headers */,
				432654A0194EF73D00BEFB46 /* session_object.h in Headers */,
				432859E91A10F415006C3E03 /* soundcloud_upload.h in Headers */,
				432654A1194EF73D00BEFB46 /* session_playlist.h in Headers */,
				432654A2194EF73D00BEFB46 /* session_playlists.h in Headers */,
				432654A3194EF73D00BEFB46 /* session_route.h in Headers */,
				432654A4194EF73D00BEFB46 /* session_state_utils.h in Headers */,
				432654A5194EF73D00BEFB46 /* session_utils.h in Headers */,
				432654A6194EF73D00BEFB46 /* silentfilesource.h in Headers */,
				432654A7194EF73D00BEFB46 /* slave.h in Headers */,
				432654A8194EF73D00BEFB46 /* smf_source.h in Headers */,
				432654A9194EF73D00BEFB46 /* sndfile_helpers.h in Headers */,
				432654AA194EF73D00BEFB46 /* sndfileimportable.h in Headers */,
				432654AB194EF73D00BEFB46 /* sndfilesource.h in Headers */,
				432654AC194EF73D00BEFB46 /* soundseq.h in Headers */,
				432654AD194EF73D00BEFB46 /* source.h in Headers */,
				432654AE194EF73D00BEFB46 /* source_factory.h in Headers */,
				432654AF194EF73D00BEFB46 /* speaker.h in Headers */,
				432654B0194EF73D00BEFB46 /* speakers.h in Headers */,
				432654B1194EF73D00BEFB46 /* spline.h in Headers */,
				432654B2194EF73D00BEFB46 /* srcfilesource.h in Headers */,
				432654B3194EF73D00BEFB46 /* stretch.h in Headers */,
				432654B4194EF73D00BEFB46 /* strip_silence.h in Headers */,
				432654B5194EF73D00BEFB46 /* system_exec.h in Headers */,
				432654B6194EF73D00BEFB46 /* tape_file_matcher.h in Headers */,
				432654B7194EF73D00BEFB46 /* template_utils.h in Headers */,
				432654B8194EF73D00BEFB46 /* tempo.h in Headers */,
				432654B9194EF73D00BEFB46 /* tempo_map_importer.h in Headers */,
				432654BA194EF73D00BEFB46 /* thread_buffers.h in Headers */,
				432654BB194EF73D00BEFB46 /* ticker.h in Headers */,
				432654BC194EF73D00BEFB46 /* timecode.h in Headers */,
				432654BD194EF73D00BEFB46 /* timefx_request.h in Headers */,
				432654BE194EF73D00BEFB46 /* timestamps.h in Headers */,
				432654BF194EF73D00BEFB46 /* track.h in Headers */,
				432654C0194EF73D00BEFB46 /* transient_detector.h in Headers */,
				432654C1194EF73D00BEFB46 /* trimmable.h in Headers */,
				432654C2194EF73D00BEFB46 /* types.h in Headers */,
				432654C3194EF73D00BEFB46 /* unknown_processor.h in Headers */,
				432654C4194EF73D00BEFB46 /* uri_map.h in Headers */,
				432654C5194EF73D00BEFB46 /* user_bundle.h in Headers */,
				432654C6194EF73D00BEFB46 /* utils.h in Headers */,
				432654C7194EF73D00BEFB46 /* version.h in Headers */,
				432654C8194EF73D00BEFB46 /* vestige.h in Headers */,
				432654C9194EF73D00BEFB46 /* vst_info_file.h in Headers */,
				432654CA194EF73D00BEFB46 /* vst_plugin.h in Headers */,
				432654CB194EF73D00BEFB46 /* vst_types.h in Headers */,
				432654CC194EF73D00BEFB46 /* vumeterdsp.h in Headers */,
				432654CD194EF73D00BEFB46 /* windows_vst_plugin.h in Headers */,
				432654CE194EF73D00BEFB46 /* worker.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXHeadersBuildPhase section */

/* Begin PBXNativeTarget section */
		43AA82A8194EEAAF00A67B56 /* libardour */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 43AA82AA194EEAAF00A67B56 /* Build configuration list for PBXNativeTarget "libardour" */;
			buildPhases = (
				43AA82A5194EEAAF00A67B56 /* Sources */,
				43AA82A6194EEAAF00A67B56 /* Frameworks */,
				43AA82A7194EEAAF00A67B56 /* Headers */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = libardour;
			productName = ardour;
			productReference = 43AA82A9194EEAAF00A67B56 /* liblibardour.dylib */;
			productType = "com.apple.product-type.library.dynamic";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		43AA8296194EEA6F00A67B56 /* Project object */ = {
			isa = PBXProject;
			attributes = {
				LastUpgradeCheck = 0460;
				ORGANIZATIONNAME = Waves;
			};
			buildConfigurationList = 43AA8299194EEA6F00A67B56 /* Build configuration list for PBXProject "libardour" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = English;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
			);
			mainGroup = 43AA8295194EEA6F00A67B56;
			productRefGroup = 43AA829F194EEA6F00A67B56 /* Products */;
			projectDirPath = "";
			projectReferences = (
				{
					ProductGroup = 432859EC1A10F436006C3E03 /* Products */;
					ProjectRef = 432859EB1A10F436006C3E03 /* libardour.xcodeproj */;
				},
			);
			projectRoot = "";
			targets = (
				43AA82A8194EEAAF00A67B56 /* libardour */,
			);
		};
/* End PBXProject section */

/* Begin PBXSourcesBuildPhase section */
		43AA82A5194EEAAF00A67B56 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				43AA8383194EEB2600A67B56 /* amp.cc in Sources */,
				43AA8384194EEB2600A67B56 /* analyser.cc in Sources */,
				43AA8385194EEB2600A67B56 /* async_midi_port.cc in Sources */,
				43AA8386194EEB2600A67B56 /* audio_buffer.cc in Sources */,
				43AA8387194EEB2600A67B56 /* audio_diskstream.cc in Sources */,
				43AA8388194EEB2600A67B56 /* audio_library.cc in Sources */,
				43AA8389194EEB2600A67B56 /* audio_playlist_importer.cc in Sources */,
				43AA838A194EEB2600A67B56 /* audio_playlist_source.cc in Sources */,
				43AA838B194EEB2600A67B56 /* audio_playlist.cc in Sources */,
				43AA838C194EEB2600A67B56 /* audio_port.cc in Sources */,
				43AA838D194EEB2600A67B56 /* audio_region_importer.cc in Sources */,
				43AA838E194EEB2600A67B56 /* audio_track_importer.cc in Sources */,
				43AA838F194EEB2600A67B56 /* audio_track.cc in Sources */,
				43AA8390194EEB2600A67B56 /* audio_unit.cc in Sources */,
				43AA8391194EEB2600A67B56 /* audioanalyser.cc in Sources */,
				43AA8392194EEB2600A67B56 /* audioengine.cc in Sources */,
				43AA8393194EEB2600A67B56 /* audiofile_tagger.cc in Sources */,
				43AA8394194EEB2600A67B56 /* audiofilesource.cc in Sources */,
				43AA8395194EEB2600A67B56 /* audioregion.cc in Sources */,
				43AA8396194EEB2600A67B56 /* audiosource.cc in Sources */,
				43AA8397194EEB2600A67B56 /* auditioner.cc in Sources */,
				43AA8398194EEB2600A67B56 /* auto_bundle.cc in Sources */,
				43AA8399194EEB2600A67B56 /* automatable.cc in Sources */,
				43AA839A194EEB2600A67B56 /* automation_control.cc in Sources */,
				43AA839B194EEB2600A67B56 /* automation_list.cc in Sources */,
				43AA839C194EEB2600A67B56 /* automation_watch.cc in Sources */,
				43AA839D194EEB2600A67B56 /* automation.cc in Sources */,
				43AA839E194EEB2600A67B56 /* beats_frames_converter.cc in Sources */,
				43AA839F194EEB2600A67B56 /* broadcast_info.cc in Sources */,
				43AA83A0194EEB2600A67B56 /* buffer_manager.cc in Sources */,
				43AA83A1194EEB2600A67B56 /* buffer_set.cc in Sources */,
				43AA83A2194EEB2600A67B56 /* buffer.cc in Sources */,
				43AA83A3194EEB2600A67B56 /* bundle.cc in Sources */,
				43AA83A4194EEB2600A67B56 /* butler.cc in Sources */,
				43AA83A5194EEB2600A67B56 /* caimportable.cc in Sources */,
				43AA83A6194EEB2600A67B56 /* capturing_processor.cc in Sources */,
				43AA83A7194EEB2600A67B56 /* chan_count.cc in Sources */,
				43AA83A8194EEB2600A67B56 /* chan_mapping.cc in Sources */,
				43AA83A9194EEB2600A67B56 /* config_text.cc in Sources */,
				43AA83AA194EEB2600A67B56 /* configuration.cc in Sources */,
				43AA83AB194EEB2600A67B56 /* control_protocol_manager.cc in Sources */,
				43AA83AC194EEB2600A67B56 /* coreaudiosource.cc in Sources */,
				43AA83AD194EEB2600A67B56 /* cycle_timer.cc in Sources */,
				43AA83AE194EEB2600A67B56 /* data_type.cc in Sources */,
				43AA83AF194EEB2600A67B56 /* debug.cc in Sources */,
				43AA83B0194EEB2600A67B56 /* default_click.cc in Sources */,
				43AA83B1194EEB2600A67B56 /* delivery.cc in Sources */,
				43AA83B2194EEB2600A67B56 /* directory_names.cc in Sources */,
				43AA83B3194EEB2600A67B56 /* diskstream.cc in Sources */,
				43AA83B4194EEB2600A67B56 /* element_import_handler.cc in Sources */,
				43AA83B5194EEB2600A67B56 /* element_importer.cc in Sources */,
				43AA83B6194EEB2600A67B56 /* engine_slave.cc in Sources */,
				43AA83B7194EEB2600A67B56 /* engine_state_controller.cc in Sources */,
				43AA83B8194EEB2600A67B56 /* enums.cc in Sources */,
				43AA83B9194EEB2600A67B56 /* event_type_map.cc in Sources */,
				43AA83BA194EEB2600A67B56 /* export_channel_configuration.cc in Sources */,
				43AA83BB194EEB2600A67B56 /* export_channel.cc in Sources */,
				43AA83BC194EEB2600A67B56 /* export_failed.cc in Sources */,
				43AA83BD194EEB2600A67B56 /* export_filename.cc in Sources */,
				43AA83BE194EEB2600A67B56 /* export_format_base.cc in Sources */,
				43AA83BF194EEB2600A67B56 /* export_format_manager.cc in Sources */,
				43AA83C0194EEB2600A67B56 /* export_format_specification.cc in Sources */,
				43AA83C1194EEB2600A67B56 /* export_formats.cc in Sources */,
				43AA83C2194EEB2600A67B56 /* export_graph_builder.cc in Sources */,
				43AA83C3194EEB2600A67B56 /* export_handler.cc in Sources */,
				43AA83C4194EEB2600A67B56 /* export_multiplication.cc in Sources */,
				43AA83C5194EEB2600A67B56 /* export_preset.cc in Sources */,
				43AA83C6194EEB2600A67B56 /* export_profile_manager.cc in Sources */,
				432859F71A10F436006C3E03 /* soundcloud_upload.cc in Sources */,
				43AA83C7194EEB2600A67B56 /* export_status.cc in Sources */,
				43AA83C8194EEB2600A67B56 /* export_timespan.cc in Sources */,
				43AA83C9194EEB2600A67B56 /* file_source.cc in Sources */,
				432859F31A10F436006C3E03 /* midi_scene_change.cc in Sources */,
				43AA83CA194EEB2600A67B56 /* filename_extensions.cc in Sources */,
				43AA83CB194EEB2600A67B56 /* filesystem_paths.cc in Sources */,
				43AA83CC194EEB2600A67B56 /* filter.cc in Sources */,
				43AA83CD194EEB2600A67B56 /* find_session.cc in Sources */,
				43AA83CE194EEB2600A67B56 /* globals.cc in Sources */,
				43AA83CF194EEB2600A67B56 /* graph.cc in Sources */,
				43AA83D0194EEB2600A67B56 /* graphnode.cc in Sources */,
				43AA83D1194EEB2600A67B56 /* iec1ppmdsp.cc in Sources */,
				43AA83D2194EEB2600A67B56 /* iec2ppmdsp.cc in Sources */,
				43AA83D3194EEB2600A67B56 /* import.cc in Sources */,
				43AA83D4194EEB2600A67B56 /* instrument_info.cc in Sources */,
				43AA83D5194EEB2600A67B56 /* internal_return.cc in Sources */,
				43AA83D6194EEB2600A67B56 /* internal_send.cc in Sources */,
				43AA83D7194EEB2600A67B56 /* interpolation.cc in Sources */,
				43AA83D8194EEB2600A67B56 /* io_processor.cc in Sources */,
				43AA83D9194EEB2600A67B56 /* io.cc in Sources */,
				43AA83DA194EEB2600A67B56 /* kmeterdsp.cc in Sources */,
				43AA83DB194EEB2600A67B56 /* ladspa_plugin.cc in Sources */,
				43AA83DC194EEB2600A67B56 /* linux_vst_support.cc in Sources */,
				43AA83DD194EEB2600A67B56 /* location_importer.cc in Sources */,
				43AA83DE194EEB2600A67B56 /* location.cc in Sources */,
				43AA83DF194EEB2600A67B56 /* ltc_slave.cc in Sources */,
				43AA83E0194EEB2600A67B56 /* lv2_evbuf.c in Sources */,
				43AA83E1194EEB2600A67B56 /* lv2_plugin.cc in Sources */,
				43AA83E2194EEB2600A67B56 /* lxvst_plugin.cc in Sources */,
				43AA83E3194EEB2600A67B56 /* meter.cc in Sources */,
				43AA83E4194EEB2600A67B56 /* midi_automation_list_binder.cc in Sources */,
				43AA83E5194EEB2600A67B56 /* midi_buffer.cc in Sources */,
				43AA83E6194EEB2600A67B56 /* midi_clock_slave.cc in Sources */,
				43AA83E7194EEB2600A67B56 /* midi_diskstream.cc in Sources */,
				43AA83E8194EEB2600A67B56 /* midi_model.cc in Sources */,
				43AA83E9194EEB2600A67B56 /* midi_patch_manager.cc in Sources */,
				43AA83EA194EEB2600A67B56 /* midi_playlist_source.cc in Sources */,
				43AA83EB194EEB2600A67B56 /* midi_playlist.cc in Sources */,
				43AA83EC194EEB2600A67B56 /* midi_port.cc in Sources */,
				43AA83ED194EEB2600A67B56 /* midi_region.cc in Sources */,
				43AA83EE194EEB2600A67B56 /* midi_ring_buffer.cc in Sources */,
				43AA83EF194EEB2600A67B56 /* midi_source.cc in Sources */,
				43AA83F0194EEB2600A67B56 /* midi_state_tracker.cc in Sources */,
				43AA83F1194EEB2600A67B56 /* midi_stretch.cc in Sources */,
				43AA83F2194EEB2600A67B56 /* midi_track.cc in Sources */,
				43AA83F3194EEB2600A67B56 /* midi_ui.cc in Sources */,
				43AA83F4194EEB2600A67B56 /* midiport_manager.cc in Sources */,
				43AA83F5194EEB2600A67B56 /* mix.cc in Sources */,
				43AA83F6194EEB2600A67B56 /* monitor_processor.cc in Sources */,
				43AA83F7194EEB2600A67B56 /* mtc_slave.cc in Sources */,
				43AA83F8194EEB2600A67B56 /* mtdm.cc in Sources */,
				43AA83F9194EEB2600A67B56 /* mute_master.cc in Sources */,
				43AA83FA194EEB2600A67B56 /* onset_detector.cc in Sources */,
				43AA83FB194EEB2600A67B56 /* operations.cc in Sources */,
				43AA83FC194EEB2600A67B56 /* pan_controllable.cc in Sources */,
				43AA83FD194EEB2600A67B56 /* pannable.cc in Sources */,
				43AA83FE194EEB2600A67B56 /* panner_manager.cc in Sources */,
				43AA83FF194EEB2600A67B56 /* panner_shell.cc in Sources */,
				43AA8400194EEB2600A67B56 /* panner.cc in Sources */,
				43AA8401194EEB2600A67B56 /* pcm_utils.cc in Sources */,
				43AA8402194EEB2600A67B56 /* pi_controller.cc in Sources */,
				43AA8403194EEB2600A67B56 /* playlist_factory.cc in Sources */,
				43AA8404194EEB2600A67B56 /* playlist_source.cc in Sources */,
				43AA8405194EEB2600A67B56 /* playlist.cc in Sources */,
				43AA8406194EEB2600A67B56 /* plugin_insert.cc in Sources */,
				43AA8407194EEB2600A67B56 /* plugin_manager.cc in Sources */,
				43AA8408194EEB2600A67B56 /* plugin.cc in Sources */,
				43AA8409194EEB2600A67B56 /* port_insert.cc in Sources */,
				43AA840A194EEB2600A67B56 /* port_manager.cc in Sources */,
				43AA840B194EEB2600A67B56 /* port_set.cc in Sources */,
				43AA840C194EEB2600A67B56 /* port.cc in Sources */,
				43AA840D194EEB2600A67B56 /* process_thread.cc in Sources */,
				43AA840E194EEB2600A67B56 /* processor.cc in Sources */,
				43AA840F194EEB2600A67B56 /* progress.cc in Sources */,
				43AA8410194EEB2600A67B56 /* quantize.cc in Sources */,
				43AA8411194EEB2600A67B56 /* rb_effect.cc in Sources */,
				43AA8412194EEB2600A67B56 /* rc_configuration.cc in Sources */,
				43AA8413194EEB2600A67B56 /* rdff.c in Sources */,
				43AA8414194EEB2600A67B56 /* recent_sessions.cc in Sources */,
				43AA8415194EEB2600A67B56 /* region_factory.cc in Sources */,
				43AA8416194EEB2600A67B56 /* region.cc in Sources */,
				43AA8417194EEB2600A67B56 /* resampled_source.cc in Sources */,
				43AA8418194EEB2600A67B56 /* return.cc in Sources */,
				43AA8419194EEB2600A67B56 /* reverse.cc in Sources */,
				43AA841A194EEB2600A67B56 /* revision.cc in Sources */,
				43AA841B194EEB2600A67B56 /* route_graph.cc in Sources */,
				43AA841C194EEB2600A67B56 /* route_group_member.cc in Sources */,
				43AA841D194EEB2600A67B56 /* route_group.cc in Sources */,
				43AA841E194EEB2600A67B56 /* route.cc in Sources */,
				43AA841F194EEB2600A67B56 /* search_paths.cc in Sources */,
				43AA8420194EEB2600A67B56 /* send.cc in Sources */,
				43AA8421194EEB2600A67B56 /* session_butler.cc in Sources */,
				43AA8422194EEB2600A67B56 /* session_click.cc in Sources */,
				43AA8423194EEB2600A67B56 /* session_command.cc in Sources */,
				43AA8424194EEB2600A67B56 /* session_configuration.cc in Sources */,
				43AA8425194EEB2600A67B56 /* session_directory.cc in Sources */,
				43AA8426194EEB2600A67B56 /* session_events.cc in Sources */,
				43AA8427194EEB2600A67B56 /* session_export.cc in Sources */,
				43AA8428194EEB2600A67B56 /* session_handle.cc in Sources */,
				43AA8429194EEB2600A67B56 /* session_ltc.cc in Sources */,
				43AA842A194EEB2600A67B56 /* session_metadata.cc in Sources */,
				43AA842B194EEB2600A67B56 /* session_midi.cc in Sources */,
				43AA842C194EEB2600A67B56 /* session_object.cc in Sources */,
				43AA842D194EEB2600A67B56 /* session_playlists.cc in Sources */,
				43AA842E194EEB2600A67B56 /* session_process.cc in Sources */,
				43AA842F194EEB2600A67B56 /* session_rtevents.cc in Sources */,
				43AA8430194EEB2600A67B56 /* session_state_utils.cc in Sources */,
				43AA8431194EEB2600A67B56 /* session_state.cc in Sources */,
				43AA8432194EEB2600A67B56 /* session_time.cc in Sources */,
				43AA8433194EEB2600A67B56 /* session_transport.cc in Sources */,
				43AA8434194EEB2600A67B56 /* session_vst.cc in Sources */,
				43AA8435194EEB2600A67B56 /* session.cc in Sources */,
				43AA8436194EEB2600A67B56 /* slave.cc in Sources */,
				43AA8437194EEB2600A67B56 /* smf_source.cc in Sources */,
				43AA8438194EEB2600A67B56 /* sndfile_helpers.cc in Sources */,
				43AA8439194EEB2600A67B56 /* sndfileimportable.cc in Sources */,
				43AA843A194EEB2600A67B56 /* sndfilesource.cc in Sources */,
				43AA843B194EEB2600A67B56 /* source_factory.cc in Sources */,
				43AA843C194EEB2600A67B56 /* source.cc in Sources */,
				43AA843D194EEB2600A67B56 /* speakers.cc in Sources */,
				432859F61A10F436006C3E03 /* scene_change.cc in Sources */,
				43AA843E194EEB2600A67B56 /* srcfilesource.cc in Sources */,
				43AA843F194EEB2600A67B56 /* sse_functions_64bit.s in Sources */,
				43AA8440194EEB2600A67B56 /* sse_functions_xmm.cc in Sources */,
				43AA8441194EEB2600A67B56 /* sse_functions.s in Sources */,
				43AA8442194EEB2600A67B56 /* st_pitch.cc in Sources */,
				43AA8443194EEB2600A67B56 /* st_stretch.cc in Sources */,
				43AA8444194EEB2600A67B56 /* strip_silence.cc in Sources */,
				43AA8445194EEB2600A67B56 /* system_exec.cc in Sources */,
				43AA8446194EEB2600A67B56 /* tape_file_matcher.cc in Sources */,
				43AA8447194EEB2600A67B56 /* template_utils.cc in Sources */,
				43AA8448194EEB2600A67B56 /* tempo_map_importer.cc in Sources */,
				43AA8449194EEB2600A67B56 /* tempo.cc in Sources */,
				43AA844A194EEB2600A67B56 /* thread_buffers.cc in Sources */,
				43AA844B194EEB2600A67B56 /* ticker.cc in Sources */,
				43AA844C194EEB2600A67B56 /* track.cc in Sources */,
				43AA844D194EEB2600A67B56 /* transient_detector.cc in Sources */,
				43AA844E194EEB2600A67B56 /* unknown_processor.cc in Sources */,
				43AA844F194EEB2600A67B56 /* uri_map.cc in Sources */,
				43AA8450194EEB2600A67B56 /* user_bundle.cc in Sources */,
				43AA8451194EEB2600A67B56 /* utils.cc in Sources */,
				43AA8452194EEB2600A67B56 /* version.cc in Sources */,
				43AA8453194EEB2600A67B56 /* vst_info_file.cc in Sources */,
				43AA8454194EEB2600A67B56 /* vst_plugin.cc in Sources */,
				43AA8455194EEB2600A67B56 /* vumeterdsp.cc in Sources */,
				43AA8456194EEB2600A67B56 /* windows_vst_plugin.cc in Sources */,
				43AA8457194EEB2600A67B56 /* worker.cc in Sources */,
				43AA84B9194EEB5F00A67B56 /* audio_engine_test.cc in Sources */,
				43AA84BB194EEB5F00A67B56 /* audio_region_read_test.cc in Sources */,
				43AA84BD194EEB5F00A67B56 /* audio_region_test.cc in Sources */,
				432859F51A10F436006C3E03 /* mididm.cc in Sources */,
				43AA84BF194EEB5F00A67B56 /* automation_list_property_test.cc in Sources */,
				43AA84C1194EEB5F00A67B56 /* bbt_test.cc in Sources */,
				43AA84C3194EEB5F00A67B56 /* combine_regions_test.cc in Sources */,
				43AA84C5194EEB5F00A67B56 /* control_surfaces_test.cc in Sources */,
				43AA84C7194EEB5F00A67B56 /* dummy_lxvst.cc in Sources */,
				43AA84C8194EEB5F00A67B56 /* framepos_minus_beats_test.cc in Sources */,
				43AA84CA194EEB5F00A67B56 /* framepos_plus_beats_test.cc in Sources */,
				43AA84CC194EEB5F00A67B56 /* framewalk_to_beats_test.cc in Sources */,
				43AA84CE194EEB5F00A67B56 /* interpolation_test.cc in Sources */,
				43AA84D0194EEB5F00A67B56 /* jack_utils_test.cc in Sources */,
				43AA84D2194EEB5F00A67B56 /* load_session.cc in Sources */,
				43AA84D3194EEB5F00A67B56 /* load_sessions_test.cc in Sources */,
				43AA84D5194EEB5F00A67B56 /* midi_clock_slave_test.cc in Sources */,
				43AA84D7194EEB5F00A67B56 /* mtdm_test.cc in Sources */,
				43AA84D9194EEB5F00A67B56 /* playlist_equivalent_regions_test.cc in Sources */,
				43AA84DB194EEB5F00A67B56 /* playlist_layering_test.cc in Sources */,
				43AA84DD194EEB5F00A67B56 /* playlist_read_test.cc in Sources */,
				43AA84DF194EEB5F00A67B56 /* plugins_test.cc in Sources */,
				43AA84E1194EEB5F00A67B56 /* load_session.cc in Sources */,
				43AA84E2194EEB5F00A67B56 /* lots_of_regions.cc in Sources */,
				432859F41A10F436006C3E03 /* midi_scene_changer.cc in Sources */,
				43AA84E3194EEB5F00A67B56 /* runpc.cc in Sources */,
				43AA84E4194EEB5F00A67B56 /* region_naming_test.cc in Sources */,
				43AA84E6194EEB5F00A67B56 /* resampled_source_test.cc in Sources */,
				43AA84E8194EEB5F00A67B56 /* session_test.cc in Sources */,
				43AA84EA194EEB5F00A67B56 /* tempo_test.cc in Sources */,
				43AA84EC194EEB5F00A67B56 /* test_common.cc in Sources */,
				43AA84EE194EEB5F00A67B56 /* test_needing_session.cc in Sources */,
				43AA84F0194EEB5F00A67B56 /* test_util.cc in Sources */,
				43AA84F2194EEB5F00A67B56 /* testrunner.cc in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin XCBuildConfiguration section */
		43AA82A0194EEA6F00A67B56 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				ARCHS = "$(ARCHS_STANDARD_64_BIT)";
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				COPY_PHASE_STRIP = NO;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_ENABLE_OBJC_EXCEPTIONS = YES;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				GCC_SYMBOLS_PRIVATE_EXTERN = NO;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				MACOSX_DEPLOYMENT_TARGET = 10.8;
				ONLY_ACTIVE_ARCH = YES;
				SDKROOT = macosx;
			};
			name = Debug;
		};
		43AA82A1194EEA6F00A67B56 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				ARCHS = "$(ARCHS_STANDARD_64_BIT)";
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				COPY_PHASE_STRIP = YES;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_ENABLE_OBJC_EXCEPTIONS = YES;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				MACOSX_DEPLOYMENT_TARGET = 10.8;
				SDKROOT = macosx;
			};
			name = Release;
		};
		43AA82AB194EEAAF00A67B56 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				EXECUTABLE_PREFIX = lib;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Debug;
		};
		43AA82AC194EEAAF00A67B56 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				EXECUTABLE_PREFIX = lib;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		43AA8299194EEA6F00A67B56 /* Build configuration list for PBXProject "libardour" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				43AA82A0194EEA6F00A67B56 /* Debug */,
				43AA82A1194EEA6F00A67B56 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		43AA82AA194EEAAF00A67B56 /* Build configuration list for PBXNativeTarget "libardour" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				43AA82AB194EEAAF00A67B56 /* Debug */,
				43AA82AC194EEAAF00A67B56 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = 43AA8296194EEA6F00A67B56 /* Project object */;
}