Welcome to mirror list, hosted at ThFree Co, Russian Federation.

project.pbxproj « MumbleKit.xcodeproj - github.com/mumble-voip/mumblekit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3d47b85f7684199d11072e3483c8f9ffdecffac8 (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
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 46;
	objects = {

/* Begin PBXBuildFile section */
		0245A131154F593200476144 /* Opus.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 285B426314E6E1200045E282 /* Opus.dylib */; };
		28074E90158A6E5100E0A4D0 /* MKAudioOutputSidetone.h in Headers */ = {isa = PBXBuildFile; fileRef = 28074E8E158A6E5100E0A4D0 /* MKAudioOutputSidetone.h */; };
		28074E91158A6E5100E0A4D0 /* MKAudioOutputSidetone.h in Headers */ = {isa = PBXBuildFile; fileRef = 28074E8E158A6E5100E0A4D0 /* MKAudioOutputSidetone.h */; };
		28074E92158A6E5100E0A4D0 /* MKAudioOutputSidetone.m in Sources */ = {isa = PBXBuildFile; fileRef = 28074E8F158A6E5100E0A4D0 /* MKAudioOutputSidetone.m */; };
		28074E93158A6E5100E0A4D0 /* MKAudioOutputSidetone.m in Sources */ = {isa = PBXBuildFile; fileRef = 28074E8F158A6E5100E0A4D0 /* MKAudioOutputSidetone.m */; };
		2808DD9413E4D8C0008448EA /* MKPacketDataStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7D1132D9C520034D631 /* MKPacketDataStream.h */; };
		2810DED514EA81D7004482F4 /* libCELT-0.7.0.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 28492310132ED60700B4EAAC /* libCELT-0.7.0.a */; };
		281EADA51530EA30000793AB /* MKDistinguishedNameParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 281EADA31530EA30000793AB /* MKDistinguishedNameParser.h */; };
		281EADA61530EA30000793AB /* MKDistinguishedNameParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 281EADA31530EA30000793AB /* MKDistinguishedNameParser.h */; };
		281EADA71530EA30000793AB /* MKDistinguishedNameParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 281EADA41530EA30000793AB /* MKDistinguishedNameParser.m */; };
		281EADA81530EA30000793AB /* MKDistinguishedNameParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 281EADA41530EA30000793AB /* MKDistinguishedNameParser.m */; };
		282F6B0813624187008F555B /* MKServerPinger.h in Headers */ = {isa = PBXBuildFile; fileRef = 282F6B0613624187008F555B /* MKServerPinger.h */; };
		282F6B0913624187008F555B /* MKServerPinger.h in Headers */ = {isa = PBXBuildFile; fileRef = 282F6B0613624187008F555B /* MKServerPinger.h */; settings = {ATTRIBUTES = (Public, ); }; };
		282F6B0A13624187008F555B /* MKServerPinger.m in Sources */ = {isa = PBXBuildFile; fileRef = 282F6B0713624187008F555B /* MKServerPinger.m */; };
		282F6B0B13624187008F555B /* MKServerPinger.m in Sources */ = {isa = PBXBuildFile; fileRef = 282F6B0713624187008F555B /* MKServerPinger.m */; };
		283363DD13EF535B00A04F04 /* MKChannelPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 283363DC13EF535B00A04F04 /* MKChannelPrivate.h */; };
		2845A794132D9C220034D631 /* CryptState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2845A781132D9C220034D631 /* CryptState.cpp */; };
		2845A795132D9C220034D631 /* CryptState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2845A781132D9C220034D631 /* CryptState.cpp */; };
		2845A796132D9C220034D631 /* MKAudio.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845A782132D9C220034D631 /* MKAudio.m */; };
		2845A797132D9C220034D631 /* MKAudio.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845A782132D9C220034D631 /* MKAudio.m */; };
		2845A798132D9C220034D631 /* MKAudioInput.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845A783132D9C220034D631 /* MKAudioInput.m */; };
		2845A799132D9C220034D631 /* MKAudioInput.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845A783132D9C220034D631 /* MKAudioInput.m */; };
		2845A79A132D9C220034D631 /* MKAudioOutput.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845A784132D9C220034D631 /* MKAudioOutput.m */; };
		2845A79B132D9C220034D631 /* MKAudioOutput.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845A784132D9C220034D631 /* MKAudioOutput.m */; };
		2845A79C132D9C220034D631 /* MKAudioOutputSpeech.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845A785132D9C220034D631 /* MKAudioOutputSpeech.m */; };
		2845A79D132D9C220034D631 /* MKAudioOutputSpeech.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845A785132D9C220034D631 /* MKAudioOutputSpeech.m */; };
		2845A79E132D9C220034D631 /* MKAudioOutputUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845A786132D9C220034D631 /* MKAudioOutputUser.m */; };
		2845A79F132D9C220034D631 /* MKAudioOutputUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845A786132D9C220034D631 /* MKAudioOutputUser.m */; };
		2845A7A0132D9C220034D631 /* MKCertificate.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845A787132D9C220034D631 /* MKCertificate.m */; };
		2845A7A1132D9C220034D631 /* MKCertificate.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845A787132D9C220034D631 /* MKCertificate.m */; };
		2845A7A2132D9C220034D631 /* MKChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845A788132D9C220034D631 /* MKChannel.m */; };
		2845A7A3132D9C220034D631 /* MKChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845A788132D9C220034D631 /* MKChannel.m */; };
		2845A7A4132D9C220034D631 /* MKConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845A789132D9C220034D631 /* MKConnection.m */; };
		2845A7A5132D9C220034D631 /* MKConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845A789132D9C220034D631 /* MKConnection.m */; };
		2845A7A8132D9C220034D631 /* MKCryptState_openssl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2845A78B132D9C220034D631 /* MKCryptState_openssl.mm */; };
		2845A7A9132D9C220034D631 /* MKCryptState_openssl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2845A78B132D9C220034D631 /* MKCryptState_openssl.mm */; };
		2845A7AA132D9C220034D631 /* MKPacketDataStream.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845A78C132D9C220034D631 /* MKPacketDataStream.m */; };
		2845A7AB132D9C220034D631 /* MKPacketDataStream.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845A78C132D9C220034D631 /* MKPacketDataStream.m */; };
		2845A7AE132D9C220034D631 /* MKServerModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845A78E132D9C220034D631 /* MKServerModel.m */; };
		2845A7AF132D9C220034D631 /* MKServerModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845A78E132D9C220034D631 /* MKServerModel.m */; };
		2845A7B2132D9C220034D631 /* MKServices.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845A790132D9C220034D631 /* MKServices.m */; };
		2845A7B3132D9C220034D631 /* MKServices.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845A790132D9C220034D631 /* MKServices.m */; };
		2845A7B4132D9C220034D631 /* MKUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845A791132D9C220034D631 /* MKUser.m */; };
		2845A7B5132D9C220034D631 /* MKUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845A791132D9C220034D631 /* MKUser.m */; };
		2845A7B6132D9C220034D631 /* MKVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845A792132D9C220034D631 /* MKVersion.m */; };
		2845A7B7132D9C220034D631 /* MKVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845A792132D9C220034D631 /* MKVersion.m */; };
		2845A7B8132D9C220034D631 /* MulticastDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845A793132D9C220034D631 /* MulticastDelegate.m */; };
		2845A7B9132D9C220034D631 /* MulticastDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845A793132D9C220034D631 /* MulticastDelegate.m */; };
		2845A7BE132D9C400034D631 /* MKUserPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7BB132D9C400034D631 /* MKUserPrivate.h */; };
		2845A7BF132D9C400034D631 /* MKUserPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7BB132D9C400034D631 /* MKUserPrivate.h */; };
		2845A7C0132D9C400034D631 /* MulticastDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7BC132D9C400034D631 /* MulticastDelegate.h */; };
		2845A7C1132D9C400034D631 /* MulticastDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7BC132D9C400034D631 /* MulticastDelegate.h */; };
		2845A7C5132D9C460034D631 /* CryptState.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7C4132D9C460034D631 /* CryptState.h */; };
		2845A7C6132D9C460034D631 /* CryptState.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7C4132D9C460034D631 /* CryptState.h */; };
		2845A7D9132D9C520034D631 /* MKAudio.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7C7132D9C520034D631 /* MKAudio.h */; };
		2845A7DA132D9C520034D631 /* MKAudio.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7C7132D9C520034D631 /* MKAudio.h */; settings = {ATTRIBUTES = (Public, ); }; };
		2845A7DB132D9C520034D631 /* MKAudioInput.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7C8132D9C520034D631 /* MKAudioInput.h */; };
		2845A7DC132D9C520034D631 /* MKAudioInput.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7C8132D9C520034D631 /* MKAudioInput.h */; settings = {ATTRIBUTES = (); }; };
		2845A7DD132D9C520034D631 /* MKAudioOutput.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7C9132D9C520034D631 /* MKAudioOutput.h */; };
		2845A7DE132D9C520034D631 /* MKAudioOutput.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7C9132D9C520034D631 /* MKAudioOutput.h */; settings = {ATTRIBUTES = (); }; };
		2845A7DF132D9C520034D631 /* MKAudioOutputSpeech.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7CA132D9C520034D631 /* MKAudioOutputSpeech.h */; };
		2845A7E0132D9C520034D631 /* MKAudioOutputSpeech.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7CA132D9C520034D631 /* MKAudioOutputSpeech.h */; settings = {ATTRIBUTES = (); }; };
		2845A7E1132D9C520034D631 /* MKAudioOutputUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7CB132D9C520034D631 /* MKAudioOutputUser.h */; };
		2845A7E2132D9C520034D631 /* MKAudioOutputUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7CB132D9C520034D631 /* MKAudioOutputUser.h */; settings = {ATTRIBUTES = (); }; };
		2845A7E3132D9C520034D631 /* MKCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7CC132D9C520034D631 /* MKCertificate.h */; };
		2845A7E4132D9C520034D631 /* MKCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7CC132D9C520034D631 /* MKCertificate.h */; settings = {ATTRIBUTES = (Public, ); }; };
		2845A7E5132D9C520034D631 /* MKChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7CD132D9C520034D631 /* MKChannel.h */; };
		2845A7E6132D9C520034D631 /* MKChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7CD132D9C520034D631 /* MKChannel.h */; settings = {ATTRIBUTES = (Public, ); }; };
		2845A7E7132D9C520034D631 /* MKConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7CE132D9C520034D631 /* MKConnection.h */; };
		2845A7E8132D9C520034D631 /* MKConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7CE132D9C520034D631 /* MKConnection.h */; settings = {ATTRIBUTES = (Public, ); }; };
		2845A7EB132D9C520034D631 /* MKCryptState.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7D0132D9C520034D631 /* MKCryptState.h */; };
		2845A7EC132D9C520034D631 /* MKCryptState.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7D0132D9C520034D631 /* MKCryptState.h */; settings = {ATTRIBUTES = (); }; };
		2845A7ED132D9C520034D631 /* MKPacketDataStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7D1132D9C520034D631 /* MKPacketDataStream.h */; };
		2845A7F1132D9C520034D631 /* MKServerModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7D3132D9C520034D631 /* MKServerModel.h */; };
		2845A7F2132D9C520034D631 /* MKServerModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7D3132D9C520034D631 /* MKServerModel.h */; settings = {ATTRIBUTES = (Public, ); }; };
		2845A7F5132D9C520034D631 /* MKServices.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7D5132D9C520034D631 /* MKServices.h */; };
		2845A7F6132D9C520034D631 /* MKServices.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7D5132D9C520034D631 /* MKServices.h */; settings = {ATTRIBUTES = (Public, ); }; };
		2845A7F7132D9C520034D631 /* MKUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7D6132D9C520034D631 /* MKUser.h */; };
		2845A7F8132D9C520034D631 /* MKUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7D6132D9C520034D631 /* MKUser.h */; settings = {ATTRIBUTES = (Public, ); }; };
		2845A7F9132D9C520034D631 /* MKUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7D7132D9C520034D631 /* MKUtils.h */; };
		2845A7FA132D9C520034D631 /* MKUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7D7132D9C520034D631 /* MKUtils.h */; settings = {ATTRIBUTES = (); }; };
		2845A7FB132D9C520034D631 /* MKVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7D8132D9C520034D631 /* MKVersion.h */; };
		2845A7FC132D9C520034D631 /* MKVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 2845A7D8132D9C520034D631 /* MKVersion.h */; settings = {ATTRIBUTES = (Public, ); }; };
		28492363132ED67E00B4EAAC /* CELT-0.7.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 2849235E132ED67E00B4EAAC /* CELT-0.7.0.dylib */; };
		28492364132ED67E00B4EAAC /* OpenSSL.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 2849235F132ED67E00B4EAAC /* OpenSSL.dylib */; };
		28492365132ED67E00B4EAAC /* ProtocolBuffers.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 28492360132ED67E00B4EAAC /* ProtocolBuffers.dylib */; };
		28492366132ED67E00B4EAAC /* Speex.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 28492361132ED67E00B4EAAC /* Speex.dylib */; };
		28492367132ED67E00B4EAAC /* SpeexDSP.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 28492362132ED67E00B4EAAC /* SpeexDSP.dylib */; };
		284C1ABC161CABCC00B87340 /* MKVoiceProcessingDevice.h in Headers */ = {isa = PBXBuildFile; fileRef = 284C1ABA161CABCC00B87340 /* MKVoiceProcessingDevice.h */; };
		284C1ABD161CABCC00B87340 /* MKVoiceProcessingDevice.m in Sources */ = {isa = PBXBuildFile; fileRef = 284C1ABB161CABCC00B87340 /* MKVoiceProcessingDevice.m */; };
		28503D60168793C400A78419 /* MKMacAudioDevice.m in Sources */ = {isa = PBXBuildFile; fileRef = 28503D5F168793C400A78419 /* MKMacAudioDevice.m */; };
		28503D62168793CE00A78419 /* MKMacAudioDevice.h in Headers */ = {isa = PBXBuildFile; fileRef = 28503D61168793CE00A78419 /* MKMacAudioDevice.h */; };
		285B426414E6E1420045E282 /* libOpus.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 285B426114E6E1200045E282 /* libOpus.a */; };
		2879526414C1BAB900567430 /* MKTextMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2879526114C1BAB900567430 /* MKTextMessage.m */; };
		2879526514C1BAB900567430 /* MKTextMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2879526114C1BAB900567430 /* MKTextMessage.m */; };
		2879526814C1BDD800567430 /* MKTextMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 2879526714C1BDD800567430 /* MKTextMessage.h */; };
		2879526914C1BDD800567430 /* MKTextMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 2879526714C1BDD800567430 /* MKTextMessage.h */; settings = {ATTRIBUTES = (Public, ); }; };
		288211C0161CE44B00E72F91 /* MKAudioDevice.h in Headers */ = {isa = PBXBuildFile; fileRef = 288211BE161CE44B00E72F91 /* MKAudioDevice.h */; };
		288211C1161CE44B00E72F91 /* MKAudioDevice.h in Headers */ = {isa = PBXBuildFile; fileRef = 288211BE161CE44B00E72F91 /* MKAudioDevice.h */; };
		288211C2161CE44B00E72F91 /* MKAudioDevice.m in Sources */ = {isa = PBXBuildFile; fileRef = 288211BF161CE44B00E72F91 /* MKAudioDevice.m */; };
		288211C3161CE44B00E72F91 /* MKAudioDevice.m in Sources */ = {isa = PBXBuildFile; fileRef = 288211BF161CE44B00E72F91 /* MKAudioDevice.m */; };
		288211C7161CECD000E72F91 /* MKiOSAudioDevice.h in Headers */ = {isa = PBXBuildFile; fileRef = 288211C5161CECD000E72F91 /* MKiOSAudioDevice.h */; };
		288211C9161CECD000E72F91 /* MKiOSAudioDevice.m in Sources */ = {isa = PBXBuildFile; fileRef = 288211C6161CECD000E72F91 /* MKiOSAudioDevice.m */; };
		28CC36EB132ED87100241269 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 28CC36EA132ED87000241269 /* Security.framework */; };
		28CC36ED132ED88200241269 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 28CC36EC132ED88200241269 /* Foundation.framework */; };
		28CC36EF132ED88A00241269 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 28CC36EE132ED88A00241269 /* Cocoa.framework */; };
		28CC36F1132ED89A00241269 /* CoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 28CC36F0132ED89A00241269 /* CoreServices.framework */; };
		28CC36F3132ED8B300241269 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 28CC36F2132ED8B300241269 /* AudioToolbox.framework */; };
		28CC36F5132ED8BA00241269 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 28CC36F4132ED8BA00241269 /* AudioUnit.framework */; };
		28CC36F7132ED8C300241269 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 28CC36F6132ED8C300241269 /* CoreAudio.framework */; };
		28CC36FA132ED92500241269 /* Mumble.pb.m in Sources */ = {isa = PBXBuildFile; fileRef = 28CC36F8132ED92500241269 /* Mumble.pb.m */; };
		28CC36FB132ED92500241269 /* Mumble.pb.m in Sources */ = {isa = PBXBuildFile; fileRef = 28CC36F8132ED92500241269 /* Mumble.pb.m */; };
		28CC36FC132ED92500241269 /* ObjectivecDescriptor.pb.m in Sources */ = {isa = PBXBuildFile; fileRef = 28CC36F9132ED92500241269 /* ObjectivecDescriptor.pb.m */; };
		28CC36FD132ED92500241269 /* ObjectivecDescriptor.pb.m in Sources */ = {isa = PBXBuildFile; fileRef = 28CC36F9132ED92500241269 /* ObjectivecDescriptor.pb.m */; };
		28CC3704132EDA5200241269 /* CELT-0.7.0.dylib in CopyFiles */ = {isa = PBXBuildFile; fileRef = 2849235E132ED67E00B4EAAC /* CELT-0.7.0.dylib */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
		28CC3705132EDA5200241269 /* OpenSSL.dylib in CopyFiles */ = {isa = PBXBuildFile; fileRef = 2849235F132ED67E00B4EAAC /* OpenSSL.dylib */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
		28CC3706132EDA5200241269 /* ProtocolBuffers.dylib in CopyFiles */ = {isa = PBXBuildFile; fileRef = 28492360132ED67E00B4EAAC /* ProtocolBuffers.dylib */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
		28CC3707132EDA5200241269 /* Speex.dylib in CopyFiles */ = {isa = PBXBuildFile; fileRef = 28492361132ED67E00B4EAAC /* Speex.dylib */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
		28CC3708132EDA5200241269 /* SpeexDSP.dylib in CopyFiles */ = {isa = PBXBuildFile; fileRef = 28492362132ED67E00B4EAAC /* SpeexDSP.dylib */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
		28CC3714132EDC7300241269 /* libOpenSSL.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 28CC370F132EDC7300241269 /* libOpenSSL.a */; };
		28CC3715132EDC7300241269 /* libProtocolBuffers.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 28CC3710132EDC7300241269 /* libProtocolBuffers.a */; };
		28CC3716132EDC7300241269 /* libSpeex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 28CC3711132EDC7300241269 /* libSpeex.a */; };
		28CC3717132EDC7300241269 /* libSpeexDSP.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 28CC3712132EDC7300241269 /* libSpeexDSP.a */; };
		28CE05CA1687A442006E2739 /* MKVoiceProcessingDevice.h in Headers */ = {isa = PBXBuildFile; fileRef = 284C1ABA161CABCC00B87340 /* MKVoiceProcessingDevice.h */; };
		28CE05CB1687A454006E2739 /* MKVoiceProcessingDevice.m in Sources */ = {isa = PBXBuildFile; fileRef = 284C1ABB161CABCC00B87340 /* MKVoiceProcessingDevice.m */; };
		28F2FAD513E37BA000034BF2 /* MKAudioOutputUserPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 28F2FAD413E37BA000034BF2 /* MKAudioOutputUserPrivate.h */; };
		28F2FAD613E37BA000034BF2 /* MKAudioOutputUserPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 28F2FAD413E37BA000034BF2 /* MKAudioOutputUserPrivate.h */; };
		BCD11DF2158F3FD600321E06 /* MKPermission.h in Headers */ = {isa = PBXBuildFile; fileRef = BCD11DF1158F3FD600321E06 /* MKPermission.h */; };
		BCD11DF3158F3FD600321E06 /* MKPermission.h in Headers */ = {isa = PBXBuildFile; fileRef = BCD11DF1158F3FD600321E06 /* MKPermission.h */; settings = {ATTRIBUTES = (Public, ); }; };
		BCD11DF7158F40A900321E06 /* MKAccessControl.h in Headers */ = {isa = PBXBuildFile; fileRef = BCD11DF4158F40A900321E06 /* MKAccessControl.h */; };
		BCD11DF8158F40A900321E06 /* MKAccessControl.h in Headers */ = {isa = PBXBuildFile; fileRef = BCD11DF4158F40A900321E06 /* MKAccessControl.h */; settings = {ATTRIBUTES = (Public, ); }; };
		BCD11DF9158F40A900321E06 /* MKChannelACL.h in Headers */ = {isa = PBXBuildFile; fileRef = BCD11DF5158F40A900321E06 /* MKChannelACL.h */; };
		BCD11DFA158F40A900321E06 /* MKChannelACL.h in Headers */ = {isa = PBXBuildFile; fileRef = BCD11DF5158F40A900321E06 /* MKChannelACL.h */; settings = {ATTRIBUTES = (Public, ); }; };
		BCD11DFB158F40A900321E06 /* MKChannelGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = BCD11DF6158F40A900321E06 /* MKChannelGroup.h */; };
		BCD11DFC158F40A900321E06 /* MKChannelGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = BCD11DF6158F40A900321E06 /* MKChannelGroup.h */; settings = {ATTRIBUTES = (Public, ); }; };
		BCD11E09158F40FA00321E06 /* MKAccessControl.m in Sources */ = {isa = PBXBuildFile; fileRef = BCD11E06158F40FA00321E06 /* MKAccessControl.m */; settings = {COMPILER_FLAGS = "-fobjc-arc"; }; };
		BCD11E0A158F40FA00321E06 /* MKAccessControl.m in Sources */ = {isa = PBXBuildFile; fileRef = BCD11E06158F40FA00321E06 /* MKAccessControl.m */; settings = {COMPILER_FLAGS = "-fobjc-arc"; }; };
		BCD11E0B158F40FA00321E06 /* MKChannelACL.m in Sources */ = {isa = PBXBuildFile; fileRef = BCD11E07158F40FA00321E06 /* MKChannelACL.m */; settings = {COMPILER_FLAGS = "-fobjc-arc"; }; };
		BCD11E0C158F40FA00321E06 /* MKChannelACL.m in Sources */ = {isa = PBXBuildFile; fileRef = BCD11E07158F40FA00321E06 /* MKChannelACL.m */; settings = {COMPILER_FLAGS = "-fobjc-arc"; }; };
		BCD11E0D158F40FA00321E06 /* MKChannelGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = BCD11E08158F40FA00321E06 /* MKChannelGroup.m */; settings = {COMPILER_FLAGS = "-fobjc-arc"; }; };
		BCD11E0E158F40FA00321E06 /* MKChannelGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = BCD11E08158F40FA00321E06 /* MKChannelGroup.m */; settings = {COMPILER_FLAGS = "-fobjc-arc"; }; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		0245A132154F593C00476144 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 285B425814E6E1200045E282 /* Opus.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 2815CCC314E6DF9700AAE69C;
			remoteInfo = "Opus (Mac)";
		};
		283363C913EE070400A04F04 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 28492307132ED60700B4EAAC /* CELT-0.7.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 280D5F84132AE73C00540C3D;
			remoteInfo = "CELT-0.7 (iOS)";
		};
		283363CB13EE070400A04F04 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 2849232D132ED63600B4EAAC /* OpenSSL.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 28F58C45132AF1070053C348;
			remoteInfo = "OpenSSL (iOS)";
		};
		283363CD13EE070400A04F04 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 28492321132ED61800B4EAAC /* ProtocolBuffers.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 2845A6A6132D99550034D631;
			remoteInfo = "ProtocolBuffers (iOS)";
		};
		283363CF13EE070400A04F04 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 28492348132ED65700B4EAAC /* SpeexDSP.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 28877EBD132D96F300793CC5;
			remoteInfo = "SpeexDSP (iOS)";
		};
		283363D113EE070400A04F04 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 2849233C132ED64C00B4EAAC /* Speex.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 28D1DAE7132AEB1400456ED6;
			remoteInfo = "Speex (iOS)";
		};
		2849230F132ED60700B4EAAC /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 28492307132ED60700B4EAAC /* CELT-0.7.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 280D5F85132AE73C00540C3D;
			remoteInfo = "CELT-0.7 (iOS)";
		};
		28492311132ED60700B4EAAC /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 28492307132ED60700B4EAAC /* CELT-0.7.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 28656110132AE7A80011637C;
			remoteInfo = "CELT-0.7 (Mac)";
		};
		28492329132ED61800B4EAAC /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 28492321132ED61800B4EAAC /* ProtocolBuffers.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 2845A6A7132D99550034D631;
			remoteInfo = "ProtocolBuffers (iOS)";
		};
		2849232B132ED61800B4EAAC /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 28492321132ED61800B4EAAC /* ProtocolBuffers.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 2845A6B8132D99600034D631;
			remoteInfo = "ProtocolBuffers (Mac)";
		};
		28492335132ED63800B4EAAC /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 2849232D132ED63600B4EAAC /* OpenSSL.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 28F58C46132AF1070053C348;
			remoteInfo = "OpenSSL (iOS)";
		};
		28492337132ED63800B4EAAC /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 2849232D132ED63600B4EAAC /* OpenSSL.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 28F58C57132AF1170053C348;
			remoteInfo = "OpenSSL (Mac)";
		};
		28492344132ED64D00B4EAAC /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 2849233C132ED64C00B4EAAC /* Speex.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 28D1DAE8132AEB1400456ED6;
			remoteInfo = "Speex (iOS)";
		};
		28492346132ED64D00B4EAAC /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 2849233C132ED64C00B4EAAC /* Speex.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 28D1DAF9132AEB2200456ED6;
			remoteInfo = "Speex (Mac)";
		};
		28492350132ED65800B4EAAC /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 28492348132ED65700B4EAAC /* SpeexDSP.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 28877EBE132D96F300793CC5;
			remoteInfo = "SpeexDSP (iOS)";
		};
		28492352132ED65800B4EAAC /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 28492348132ED65700B4EAAC /* SpeexDSP.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 28877ECF132D975D00793CC5;
			remoteInfo = "SpeexDSP (Mac)";
		};
		28492354132ED66F00B4EAAC /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 2849232D132ED63600B4EAAC /* OpenSSL.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 28F58C56132AF1170053C348;
			remoteInfo = "OpenSSL (Mac)";
		};
		28492356132ED66F00B4EAAC /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 28492321132ED61800B4EAAC /* ProtocolBuffers.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 2845A6B7132D99600034D631;
			remoteInfo = "ProtocolBuffers (Mac)";
		};
		28492358132ED66F00B4EAAC /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 28492307132ED60700B4EAAC /* CELT-0.7.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 2865610F132AE7A80011637C;
			remoteInfo = "CELT-0.7 (Mac)";
		};
		2849235A132ED66F00B4EAAC /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 2849233C132ED64C00B4EAAC /* Speex.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 28D1DAF8132AEB2200456ED6;
			remoteInfo = "Speex (Mac)";
		};
		2849235C132ED66F00B4EAAC /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 28492348132ED65700B4EAAC /* SpeexDSP.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 28877ECE132D975D00793CC5;
			remoteInfo = "SpeexDSP (Mac)";
		};
		285B426014E6E1200045E282 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 285B425814E6E1200045E282 /* Opus.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 287D85A614E6D474002B5D79;
			remoteInfo = "Opus (iOS)";
		};
		285B426214E6E1200045E282 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 285B425814E6E1200045E282 /* Opus.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 2815CCC414E6DF9700AAE69C;
			remoteInfo = "Opus (Mac)";
		};
		28FB39E7150C4D6F00E6E522 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 285B425814E6E1200045E282 /* Opus.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 287D85A514E6D474002B5D79;
			remoteInfo = "Opus (iOS)";
		};
/* End PBXContainerItemProxy section */

/* Begin PBXCopyFilesBuildPhase section */
		28CC3703132EDA4500241269 /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = "";
			dstSubfolderSpec = 10;
			files = (
				28CC3704132EDA5200241269 /* CELT-0.7.0.dylib in CopyFiles */,
				28CC3705132EDA5200241269 /* OpenSSL.dylib in CopyFiles */,
				28CC3706132EDA5200241269 /* ProtocolBuffers.dylib in CopyFiles */,
				28CC3707132EDA5200241269 /* Speex.dylib in CopyFiles */,
				28CC3708132EDA5200241269 /* SpeexDSP.dylib in CopyFiles */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
		28074E8E158A6E5100E0A4D0 /* MKAudioOutputSidetone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKAudioOutputSidetone.h; path = src/MKAudioOutputSidetone.h; sourceTree = SOURCE_ROOT; };
		28074E8F158A6E5100E0A4D0 /* MKAudioOutputSidetone.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MKAudioOutputSidetone.m; path = src/MKAudioOutputSidetone.m; sourceTree = SOURCE_ROOT; };
		2815C4DE150D559800136082 /* AppStore.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = AppStore.xcconfig; path = cfg/AppStore.xcconfig; sourceTree = "<group>"; };
		2815C4DF150D559800136082 /* Base.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Base.xcconfig; path = cfg/Base.xcconfig; sourceTree = "<group>"; };
		2815C4E0150D559800136082 /* BetaDist.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = BetaDist.xcconfig; path = cfg/BetaDist.xcconfig; sourceTree = "<group>"; };
		2815C4E1150D559800136082 /* Release.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = cfg/Release.xcconfig; sourceTree = "<group>"; };
		2815C4E6150D55BC00136082 /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = cfg/Debug.xcconfig; sourceTree = "<group>"; };
		281EADA31530EA30000793AB /* MKDistinguishedNameParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKDistinguishedNameParser.h; path = src/MKDistinguishedNameParser.h; sourceTree = SOURCE_ROOT; };
		281EADA41530EA30000793AB /* MKDistinguishedNameParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MKDistinguishedNameParser.m; path = src/MKDistinguishedNameParser.m; sourceTree = SOURCE_ROOT; };
		282F6B0613624187008F555B /* MKServerPinger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKServerPinger.h; path = src/MumbleKit/MKServerPinger.h; sourceTree = SOURCE_ROOT; };
		282F6B0713624187008F555B /* MKServerPinger.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MKServerPinger.m; path = src/MKServerPinger.m; sourceTree = SOURCE_ROOT; };
		283363DC13EF535B00A04F04 /* MKChannelPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKChannelPrivate.h; path = src/MKChannelPrivate.h; sourceTree = SOURCE_ROOT; };
		283363DE13EF536C00A04F04 /* MKUserPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKUserPrivate.h; path = src/MKUserPrivate.h; sourceTree = SOURCE_ROOT; };
		2845A71A132D9B2F0034D631 /* MumbleKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = MumbleKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
		2845A781132D9C220034D631 /* CryptState.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CryptState.cpp; path = src/CryptState.cpp; sourceTree = SOURCE_ROOT; };
		2845A782132D9C220034D631 /* MKAudio.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MKAudio.m; path = src/MKAudio.m; sourceTree = SOURCE_ROOT; };
		2845A783132D9C220034D631 /* MKAudioInput.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MKAudioInput.m; path = src/MKAudioInput.m; sourceTree = SOURCE_ROOT; };
		2845A784132D9C220034D631 /* MKAudioOutput.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MKAudioOutput.m; path = src/MKAudioOutput.m; sourceTree = SOURCE_ROOT; };
		2845A785132D9C220034D631 /* MKAudioOutputSpeech.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MKAudioOutputSpeech.m; path = src/MKAudioOutputSpeech.m; sourceTree = SOURCE_ROOT; };
		2845A786132D9C220034D631 /* MKAudioOutputUser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MKAudioOutputUser.m; path = src/MKAudioOutputUser.m; sourceTree = SOURCE_ROOT; };
		2845A787132D9C220034D631 /* MKCertificate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MKCertificate.m; path = src/MKCertificate.m; sourceTree = SOURCE_ROOT; };
		2845A788132D9C220034D631 /* MKChannel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MKChannel.m; path = src/MKChannel.m; sourceTree = SOURCE_ROOT; };
		2845A789132D9C220034D631 /* MKConnection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MKConnection.m; path = src/MKConnection.m; sourceTree = SOURCE_ROOT; };
		2845A78B132D9C220034D631 /* MKCryptState_openssl.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = MKCryptState_openssl.mm; path = src/MKCryptState_openssl.mm; sourceTree = SOURCE_ROOT; };
		2845A78C132D9C220034D631 /* MKPacketDataStream.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MKPacketDataStream.m; path = src/MKPacketDataStream.m; sourceTree = SOURCE_ROOT; };
		2845A78E132D9C220034D631 /* MKServerModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MKServerModel.m; path = src/MKServerModel.m; sourceTree = SOURCE_ROOT; };
		2845A790132D9C220034D631 /* MKServices.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MKServices.m; path = src/MKServices.m; sourceTree = SOURCE_ROOT; };
		2845A791132D9C220034D631 /* MKUser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MKUser.m; path = src/MKUser.m; sourceTree = SOURCE_ROOT; };
		2845A792132D9C220034D631 /* MKVersion.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MKVersion.m; path = src/MKVersion.m; sourceTree = SOURCE_ROOT; };
		2845A793132D9C220034D631 /* MulticastDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MulticastDelegate.m; path = src/MulticastDelegate.m; sourceTree = SOURCE_ROOT; };
		2845A7BB132D9C400034D631 /* MKUserPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKUserPrivate.h; path = src/MKUserPrivate.h; sourceTree = SOURCE_ROOT; };
		2845A7BC132D9C400034D631 /* MulticastDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MulticastDelegate.h; path = src/MulticastDelegate.h; sourceTree = SOURCE_ROOT; };
		2845A7C4132D9C460034D631 /* CryptState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CryptState.h; path = src/CryptState.h; sourceTree = SOURCE_ROOT; };
		2845A7C7132D9C520034D631 /* MKAudio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKAudio.h; path = src/MumbleKit/MKAudio.h; sourceTree = SOURCE_ROOT; };
		2845A7C8132D9C520034D631 /* MKAudioInput.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKAudioInput.h; path = src/MKAudioInput.h; sourceTree = SOURCE_ROOT; };
		2845A7C9132D9C520034D631 /* MKAudioOutput.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKAudioOutput.h; path = src/MKAudioOutput.h; sourceTree = SOURCE_ROOT; };
		2845A7CA132D9C520034D631 /* MKAudioOutputSpeech.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKAudioOutputSpeech.h; path = src/MKAudioOutputSpeech.h; sourceTree = SOURCE_ROOT; };
		2845A7CB132D9C520034D631 /* MKAudioOutputUser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKAudioOutputUser.h; path = src/MKAudioOutputUser.h; sourceTree = SOURCE_ROOT; };
		2845A7CC132D9C520034D631 /* MKCertificate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKCertificate.h; path = src/MumbleKit/MKCertificate.h; sourceTree = SOURCE_ROOT; };
		2845A7CD132D9C520034D631 /* MKChannel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKChannel.h; path = src/MumbleKit/MKChannel.h; sourceTree = SOURCE_ROOT; };
		2845A7CE132D9C520034D631 /* MKConnection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKConnection.h; path = src/MumbleKit/MKConnection.h; sourceTree = SOURCE_ROOT; };
		2845A7D0132D9C520034D631 /* MKCryptState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKCryptState.h; path = src/MKCryptState.h; sourceTree = SOURCE_ROOT; };
		2845A7D1132D9C520034D631 /* MKPacketDataStream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKPacketDataStream.h; path = src/MKPacketDataStream.h; sourceTree = SOURCE_ROOT; };
		2845A7D3132D9C520034D631 /* MKServerModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKServerModel.h; path = src/MumbleKit/MKServerModel.h; sourceTree = SOURCE_ROOT; };
		2845A7D5132D9C520034D631 /* MKServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKServices.h; path = src/MumbleKit/MKServices.h; sourceTree = SOURCE_ROOT; };
		2845A7D6132D9C520034D631 /* MKUser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKUser.h; path = src/MumbleKit/MKUser.h; sourceTree = SOURCE_ROOT; };
		2845A7D7132D9C520034D631 /* MKUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKUtils.h; path = src/MKUtils.h; sourceTree = SOURCE_ROOT; };
		2845A7D8132D9C520034D631 /* MKVersion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKVersion.h; path = src/MumbleKit/MKVersion.h; sourceTree = SOURCE_ROOT; };
		28492307132ED60700B4EAAC /* CELT-0.7.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "CELT-0.7.xcodeproj"; path = "3rdparty/celt-0.7.0-build/CELT-0.7.xcodeproj"; sourceTree = "<group>"; };
		28492321132ED61800B4EAAC /* ProtocolBuffers.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = ProtocolBuffers.xcodeproj; path = 3rdparty/protobufbuild/ProtocolBuffers.xcodeproj; sourceTree = "<group>"; };
		2849232D132ED63600B4EAAC /* OpenSSL.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = OpenSSL.xcodeproj; path = 3rdparty/opensslbuild/OpenSSL.xcodeproj; sourceTree = "<group>"; };
		2849233C132ED64C00B4EAAC /* Speex.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = Speex.xcodeproj; path = 3rdparty/speexbuild/Speex.xcodeproj; sourceTree = "<group>"; };
		28492348132ED65700B4EAAC /* SpeexDSP.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = SpeexDSP.xcodeproj; path = 3rdparty/speexdspbuild/SpeexDSP.xcodeproj; sourceTree = "<group>"; };
		2849235E132ED67E00B4EAAC /* CELT-0.7.0.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; path = "CELT-0.7.0.dylib"; sourceTree = BUILT_PRODUCTS_DIR; };
		2849235F132ED67E00B4EAAC /* OpenSSL.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; path = OpenSSL.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
		28492360132ED67E00B4EAAC /* ProtocolBuffers.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; path = ProtocolBuffers.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
		28492361132ED67E00B4EAAC /* Speex.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; path = Speex.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
		28492362132ED67E00B4EAAC /* SpeexDSP.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; path = SpeexDSP.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
		284C1ABA161CABCC00B87340 /* MKVoiceProcessingDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKVoiceProcessingDevice.h; path = src/MKVoiceProcessingDevice.h; sourceTree = SOURCE_ROOT; };
		284C1ABB161CABCC00B87340 /* MKVoiceProcessingDevice.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MKVoiceProcessingDevice.m; path = src/MKVoiceProcessingDevice.m; sourceTree = SOURCE_ROOT; };
		28503D5F168793C400A78419 /* MKMacAudioDevice.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MKMacAudioDevice.m; path = src/MKMacAudioDevice.m; sourceTree = SOURCE_ROOT; };
		28503D61168793CE00A78419 /* MKMacAudioDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKMacAudioDevice.h; path = src/MKMacAudioDevice.h; sourceTree = SOURCE_ROOT; };
		285B425814E6E1200045E282 /* Opus.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = Opus.xcodeproj; path = 3rdparty/opusbuild/Opus.xcodeproj; sourceTree = "<group>"; };
		2879526114C1BAB900567430 /* MKTextMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MKTextMessage.m; path = src/MKTextMessage.m; sourceTree = SOURCE_ROOT; };
		2879526714C1BDD800567430 /* MKTextMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKTextMessage.h; path = src/MumbleKit/MKTextMessage.h; sourceTree = SOURCE_ROOT; };
		288211BE161CE44B00E72F91 /* MKAudioDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKAudioDevice.h; path = src/MKAudioDevice.h; sourceTree = SOURCE_ROOT; };
		288211BF161CE44B00E72F91 /* MKAudioDevice.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MKAudioDevice.m; path = src/MKAudioDevice.m; sourceTree = SOURCE_ROOT; };
		288211C5161CECD000E72F91 /* MKiOSAudioDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKiOSAudioDevice.h; path = src/MKiOSAudioDevice.h; sourceTree = SOURCE_ROOT; };
		288211C6161CECD000E72F91 /* MKiOSAudioDevice.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MKiOSAudioDevice.m; path = src/MKiOSAudioDevice.m; sourceTree = SOURCE_ROOT; };
		28BCF2C1132AE3B40003AEC1 /* libMumbleKit.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libMumbleKit.a; sourceTree = BUILT_PRODUCTS_DIR; };
		28CC36EA132ED87000241269 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Security.framework; sourceTree = DEVELOPER_DIR; };
		28CC36EC132ED88200241269 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
		28CC36EE132ED88A00241269 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Cocoa.framework; sourceTree = DEVELOPER_DIR; };
		28CC36F0132ED89A00241269 /* CoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreServices.framework; path = SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework; sourceTree = DEVELOPER_DIR; };
		28CC36F2132ED8B300241269 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = SDKs/MacOSX10.6.sdk/System/Library/Frameworks/AudioToolbox.framework; sourceTree = DEVELOPER_DIR; };
		28CC36F4132ED8BA00241269 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioUnit.framework; path = SDKs/MacOSX10.6.sdk/System/Library/Frameworks/AudioUnit.framework; sourceTree = DEVELOPER_DIR; };
		28CC36F6132ED8C300241269 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreAudio.framework; sourceTree = DEVELOPER_DIR; };
		28CC36F8132ED92500241269 /* Mumble.pb.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Mumble.pb.m; path = proto/Mumble.pb.m; sourceTree = SOURCE_ROOT; };
		28CC36F9132ED92500241269 /* ObjectivecDescriptor.pb.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ObjectivecDescriptor.pb.m; path = proto/ObjectivecDescriptor.pb.m; sourceTree = SOURCE_ROOT; };
		28CC370E132EDC7300241269 /* libCELT-0.7.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = "libCELT-0.7.0.a"; sourceTree = BUILT_PRODUCTS_DIR; };
		28CC370F132EDC7300241269 /* libOpenSSL.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libOpenSSL.a; sourceTree = BUILT_PRODUCTS_DIR; };
		28CC3710132EDC7300241269 /* libProtocolBuffers.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libProtocolBuffers.a; sourceTree = BUILT_PRODUCTS_DIR; };
		28CC3711132EDC7300241269 /* libSpeex.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libSpeex.a; sourceTree = BUILT_PRODUCTS_DIR; };
		28CC3712132EDC7300241269 /* libSpeexDSP.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libSpeexDSP.a; sourceTree = BUILT_PRODUCTS_DIR; };
		28F2FAD413E37BA000034BF2 /* MKAudioOutputUserPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKAudioOutputUserPrivate.h; path = src/MKAudioOutputUserPrivate.h; sourceTree = SOURCE_ROOT; };
		BCD11DF1158F3FD600321E06 /* MKPermission.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKPermission.h; path = src/MumbleKit/MKPermission.h; sourceTree = SOURCE_ROOT; };
		BCD11DF4158F40A900321E06 /* MKAccessControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKAccessControl.h; path = src/MumbleKit/MKAccessControl.h; sourceTree = SOURCE_ROOT; };
		BCD11DF5158F40A900321E06 /* MKChannelACL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKChannelACL.h; path = src/MumbleKit/MKChannelACL.h; sourceTree = SOURCE_ROOT; };
		BCD11DF6158F40A900321E06 /* MKChannelGroup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MKChannelGroup.h; path = src/MumbleKit/MKChannelGroup.h; sourceTree = SOURCE_ROOT; };
		BCD11E06158F40FA00321E06 /* MKAccessControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MKAccessControl.m; path = src/MKAccessControl.m; sourceTree = SOURCE_ROOT; };
		BCD11E07158F40FA00321E06 /* MKChannelACL.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MKChannelACL.m; path = src/MKChannelACL.m; sourceTree = SOURCE_ROOT; };
		BCD11E08158F40FA00321E06 /* MKChannelGroup.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MKChannelGroup.m; path = src/MKChannelGroup.m; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		2845A716132D9B2F0034D631 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				0245A131154F593200476144 /* Opus.dylib in Frameworks */,
				28CC36F7132ED8C300241269 /* CoreAudio.framework in Frameworks */,
				28CC36F5132ED8BA00241269 /* AudioUnit.framework in Frameworks */,
				28CC36F3132ED8B300241269 /* AudioToolbox.framework in Frameworks */,
				28CC36F1132ED89A00241269 /* CoreServices.framework in Frameworks */,
				28CC36EF132ED88A00241269 /* Cocoa.framework in Frameworks */,
				28CC36ED132ED88200241269 /* Foundation.framework in Frameworks */,
				28CC36EB132ED87100241269 /* Security.framework in Frameworks */,
				28492363132ED67E00B4EAAC /* CELT-0.7.0.dylib in Frameworks */,
				28492364132ED67E00B4EAAC /* OpenSSL.dylib in Frameworks */,
				28492365132ED67E00B4EAAC /* ProtocolBuffers.dylib in Frameworks */,
				28492366132ED67E00B4EAAC /* Speex.dylib in Frameworks */,
				28492367132ED67E00B4EAAC /* SpeexDSP.dylib in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		28BCF2BE132AE3B40003AEC1 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				2810DED514EA81D7004482F4 /* libCELT-0.7.0.a in Frameworks */,
				285B426414E6E1420045E282 /* libOpus.a in Frameworks */,
				28CC3714132EDC7300241269 /* libOpenSSL.a in Frameworks */,
				28CC3715132EDC7300241269 /* libProtocolBuffers.a in Frameworks */,
				28CC3716132EDC7300241269 /* libSpeex.a in Frameworks */,
				28CC3717132EDC7300241269 /* libSpeexDSP.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		2815C4DD150D558B00136082 /* Build Configurations */ = {
			isa = PBXGroup;
			children = (
				2815C4DE150D559800136082 /* AppStore.xcconfig */,
				2815C4DF150D559800136082 /* Base.xcconfig */,
				2815C4E0150D559800136082 /* BetaDist.xcconfig */,
				2815C4E1150D559800136082 /* Release.xcconfig */,
				2815C4E6150D55BC00136082 /* Debug.xcconfig */,
			);
			name = "Build Configurations";
			sourceTree = "<group>";
		};
		2835C27E132AE4150095FB41 /* Third Party */ = {
			isa = PBXGroup;
			children = (
				2849232D132ED63600B4EAAC /* OpenSSL.xcodeproj */,
				28492321132ED61800B4EAAC /* ProtocolBuffers.xcodeproj */,
				28492307132ED60700B4EAAC /* CELT-0.7.xcodeproj */,
				285B425814E6E1200045E282 /* Opus.xcodeproj */,
				2849233C132ED64C00B4EAAC /* Speex.xcodeproj */,
				28492348132ED65700B4EAAC /* SpeexDSP.xcodeproj */,
			);
			name = "Third Party";
			sourceTree = "<group>";
		};
		2845A71D132D9B2F0034D631 /* Mac Frameworks */ = {
			isa = PBXGroup;
			children = (
				28CC36F6132ED8C300241269 /* CoreAudio.framework */,
				28CC36F4132ED8BA00241269 /* AudioUnit.framework */,
				28CC36F2132ED8B300241269 /* AudioToolbox.framework */,
				28CC36F0132ED89A00241269 /* CoreServices.framework */,
				28CC36EE132ED88A00241269 /* Cocoa.framework */,
				28CC36EC132ED88200241269 /* Foundation.framework */,
				28CC36EA132ED87000241269 /* Security.framework */,
				2849235E132ED67E00B4EAAC /* CELT-0.7.0.dylib */,
				2849235F132ED67E00B4EAAC /* OpenSSL.dylib */,
				28492360132ED67E00B4EAAC /* ProtocolBuffers.dylib */,
				28492361132ED67E00B4EAAC /* Speex.dylib */,
				28492362132ED67E00B4EAAC /* SpeexDSP.dylib */,
			);
			name = "Mac Frameworks";
			sourceTree = "<group>";
		};
		2845A77F132D9BF10034D631 /* Sources */ = {
			isa = PBXGroup;
			children = (
				28CC36F8132ED92500241269 /* Mumble.pb.m */,
				28CC36F9132ED92500241269 /* ObjectivecDescriptor.pb.m */,
				BCD11E06158F40FA00321E06 /* MKAccessControl.m */,
				2845A781132D9C220034D631 /* CryptState.cpp */,
				2845A782132D9C220034D631 /* MKAudio.m */,
				288211BF161CE44B00E72F91 /* MKAudioDevice.m */,
				288211C6161CECD000E72F91 /* MKiOSAudioDevice.m */,
				28503D5F168793C400A78419 /* MKMacAudioDevice.m */,
				284C1ABB161CABCC00B87340 /* MKVoiceProcessingDevice.m */,
				2845A783132D9C220034D631 /* MKAudioInput.m */,
				2845A784132D9C220034D631 /* MKAudioOutput.m */,
				2845A785132D9C220034D631 /* MKAudioOutputSpeech.m */,
				28074E8F158A6E5100E0A4D0 /* MKAudioOutputSidetone.m */,
				2845A786132D9C220034D631 /* MKAudioOutputUser.m */,
				2845A787132D9C220034D631 /* MKCertificate.m */,
				2845A788132D9C220034D631 /* MKChannel.m */,
				BCD11E07158F40FA00321E06 /* MKChannelACL.m */,
				BCD11E08158F40FA00321E06 /* MKChannelGroup.m */,
				2845A789132D9C220034D631 /* MKConnection.m */,
				2845A78B132D9C220034D631 /* MKCryptState_openssl.mm */,
				2845A78C132D9C220034D631 /* MKPacketDataStream.m */,
				2845A78E132D9C220034D631 /* MKServerModel.m */,
				282F6B0713624187008F555B /* MKServerPinger.m */,
				2845A790132D9C220034D631 /* MKServices.m */,
				2845A791132D9C220034D631 /* MKUser.m */,
				2845A792132D9C220034D631 /* MKVersion.m */,
				2845A793132D9C220034D631 /* MulticastDelegate.m */,
				2879526114C1BAB900567430 /* MKTextMessage.m */,
				281EADA41530EA30000793AB /* MKDistinguishedNameParser.m */,
			);
			name = Sources;
			sourceTree = "<group>";
		};
		2845A780132D9BF50034D631 /* Public Headers */ = {
			isa = PBXGroup;
			children = (
				BCD11DF4158F40A900321E06 /* MKAccessControl.h */,
				2845A7C7132D9C520034D631 /* MKAudio.h */,
				2845A7CC132D9C520034D631 /* MKCertificate.h */,
				2845A7CD132D9C520034D631 /* MKChannel.h */,
				BCD11DF5158F40A900321E06 /* MKChannelACL.h */,
				BCD11DF6158F40A900321E06 /* MKChannelGroup.h */,
				2845A7CE132D9C520034D631 /* MKConnection.h */,
				BCD11DF1158F3FD600321E06 /* MKPermission.h */,
				2845A7D3132D9C520034D631 /* MKServerModel.h */,
				282F6B0613624187008F555B /* MKServerPinger.h */,
				2845A7D5132D9C520034D631 /* MKServices.h */,
				2845A7D6132D9C520034D631 /* MKUser.h */,
				2845A7D8132D9C520034D631 /* MKVersion.h */,
				2879526714C1BDD800567430 /* MKTextMessage.h */,
			);
			name = "Public Headers";
			sourceTree = "<group>";
		};
		2845A7BA132D9C310034D631 /* Private Headers */ = {
			isa = PBXGroup;
			children = (
				2845A7C4132D9C460034D631 /* CryptState.h */,
				2845A7BB132D9C400034D631 /* MKUserPrivate.h */,
				2845A7BC132D9C400034D631 /* MulticastDelegate.h */,
				28F2FAD413E37BA000034BF2 /* MKAudioOutputUserPrivate.h */,
				288211BE161CE44B00E72F91 /* MKAudioDevice.h */,
				288211C5161CECD000E72F91 /* MKiOSAudioDevice.h */,
				28503D61168793CE00A78419 /* MKMacAudioDevice.h */,
				284C1ABA161CABCC00B87340 /* MKVoiceProcessingDevice.h */,
				2845A7C8132D9C520034D631 /* MKAudioInput.h */,
				2845A7C9132D9C520034D631 /* MKAudioOutput.h */,
				2845A7CA132D9C520034D631 /* MKAudioOutputSpeech.h */,
				28074E8E158A6E5100E0A4D0 /* MKAudioOutputSidetone.h */,
				2845A7CB132D9C520034D631 /* MKAudioOutputUser.h */,
				2845A7D7132D9C520034D631 /* MKUtils.h */,
				2845A7D0132D9C520034D631 /* MKCryptState.h */,
				2845A7D1132D9C520034D631 /* MKPacketDataStream.h */,
				283363DC13EF535B00A04F04 /* MKChannelPrivate.h */,
				283363DE13EF536C00A04F04 /* MKUserPrivate.h */,
				281EADA31530EA30000793AB /* MKDistinguishedNameParser.h */,
			);
			name = "Private Headers";
			sourceTree = "<group>";
		};
		28492308132ED60700B4EAAC /* Products */ = {
			isa = PBXGroup;
			children = (
				28492310132ED60700B4EAAC /* libCELT-0.7.0.a */,
				28492312132ED60700B4EAAC /* CELT-0.7.0.dylib */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		28492322132ED61800B4EAAC /* Products */ = {
			isa = PBXGroup;
			children = (
				2849232A132ED61800B4EAAC /* libProtocolBuffers.a */,
				2849232C132ED61800B4EAAC /* ProtocolBuffers.dylib */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		2849232E132ED63600B4EAAC /* Products */ = {
			isa = PBXGroup;
			children = (
				28492336132ED63800B4EAAC /* libOpenSSL.a */,
				28492338132ED63800B4EAAC /* OpenSSL.dylib */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		2849233D132ED64C00B4EAAC /* Products */ = {
			isa = PBXGroup;
			children = (
				28492345132ED64D00B4EAAC /* libSpeex.a */,
				28492347132ED64D00B4EAAC /* Speex.dylib */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		28492349132ED65700B4EAAC /* Products */ = {
			isa = PBXGroup;
			children = (
				28492351132ED65800B4EAAC /* libSpeexDSP.a */,
				28492353132ED65800B4EAAC /* SpeexDSP.dylib */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		285B425914E6E1200045E282 /* Products */ = {
			isa = PBXGroup;
			children = (
				285B426114E6E1200045E282 /* libOpus.a */,
				285B426314E6E1200045E282 /* Opus.dylib */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		28BCF2B6132AE3B40003AEC1 = {
			isa = PBXGroup;
			children = (
				2835C27E132AE4150095FB41 /* Third Party */,
				28BCF2C6132AE3B40003AEC1 /* MumbleKit */,
				28BCF2C3132AE3B40003AEC1 /* Frameworks */,
				28BCF2C2132AE3B40003AEC1 /* Products */,
				2815C4DD150D558B00136082 /* Build Configurations */,
			);
			sourceTree = "<group>";
		};
		28BCF2C2132AE3B40003AEC1 /* Products */ = {
			isa = PBXGroup;
			children = (
				28BCF2C1132AE3B40003AEC1 /* libMumbleKit.a */,
				2845A71A132D9B2F0034D631 /* MumbleKit.framework */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		28BCF2C3132AE3B40003AEC1 /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				28CC3718132EDC7900241269 /* iOS Frameworks */,
				2845A71D132D9B2F0034D631 /* Mac Frameworks */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		28BCF2C6132AE3B40003AEC1 /* MumbleKit */ = {
			isa = PBXGroup;
			children = (
				2845A7BA132D9C310034D631 /* Private Headers */,
				2845A780132D9BF50034D631 /* Public Headers */,
				2845A77F132D9BF10034D631 /* Sources */,
			);
			path = MumbleKit;
			sourceTree = "<group>";
		};
		28CC3718132EDC7900241269 /* iOS Frameworks */ = {
			isa = PBXGroup;
			children = (
				28CC370E132EDC7300241269 /* libCELT-0.7.0.a */,
				28CC370F132EDC7300241269 /* libOpenSSL.a */,
				28CC3710132EDC7300241269 /* libProtocolBuffers.a */,
				28CC3711132EDC7300241269 /* libSpeex.a */,
				28CC3712132EDC7300241269 /* libSpeexDSP.a */,
			);
			name = "iOS Frameworks";
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
		2845A717132D9B2F0034D631 /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				BCD11DF8158F40A900321E06 /* MKAccessControl.h in Headers */,
				2845A7DA132D9C520034D631 /* MKAudio.h in Headers */,
				2845A7E4132D9C520034D631 /* MKCertificate.h in Headers */,
				2845A7E6132D9C520034D631 /* MKChannel.h in Headers */,
				BCD11DFA158F40A900321E06 /* MKChannelACL.h in Headers */,
				BCD11DFC158F40A900321E06 /* MKChannelGroup.h in Headers */,
				2845A7E8132D9C520034D631 /* MKConnection.h in Headers */,
				BCD11DF3158F3FD600321E06 /* MKPermission.h in Headers */,
				2845A7F2132D9C520034D631 /* MKServerModel.h in Headers */,
				282F6B0913624187008F555B /* MKServerPinger.h in Headers */,
				2845A7F6132D9C520034D631 /* MKServices.h in Headers */,
				2845A7F8132D9C520034D631 /* MKUser.h in Headers */,
				2845A7FC132D9C520034D631 /* MKVersion.h in Headers */,
				2879526914C1BDD800567430 /* MKTextMessage.h in Headers */,
				2845A7EC132D9C520034D631 /* MKCryptState.h in Headers */,
				2845A7FA132D9C520034D631 /* MKUtils.h in Headers */,
				2845A7DC132D9C520034D631 /* MKAudioInput.h in Headers */,
				2845A7DE132D9C520034D631 /* MKAudioOutput.h in Headers */,
				2845A7E0132D9C520034D631 /* MKAudioOutputSpeech.h in Headers */,
				2845A7E2132D9C520034D631 /* MKAudioOutputUser.h in Headers */,
				2845A7BF132D9C400034D631 /* MKUserPrivate.h in Headers */,
				2845A7C1132D9C400034D631 /* MulticastDelegate.h in Headers */,
				2845A7C6132D9C460034D631 /* CryptState.h in Headers */,
				28F2FAD613E37BA000034BF2 /* MKAudioOutputUserPrivate.h in Headers */,
				2808DD9413E4D8C0008448EA /* MKPacketDataStream.h in Headers */,
				281EADA61530EA30000793AB /* MKDistinguishedNameParser.h in Headers */,
				28074E91158A6E5100E0A4D0 /* MKAudioOutputSidetone.h in Headers */,
				288211C1161CE44B00E72F91 /* MKAudioDevice.h in Headers */,
				28503D62168793CE00A78419 /* MKMacAudioDevice.h in Headers */,
				28CE05CA1687A442006E2739 /* MKVoiceProcessingDevice.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		28BCF2BF132AE3B40003AEC1 /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				2845A7BE132D9C400034D631 /* MKUserPrivate.h in Headers */,
				2845A7C0132D9C400034D631 /* MulticastDelegate.h in Headers */,
				2845A7C5132D9C460034D631 /* CryptState.h in Headers */,
				2845A7D9132D9C520034D631 /* MKAudio.h in Headers */,
				2845A7DB132D9C520034D631 /* MKAudioInput.h in Headers */,
				2845A7DD132D9C520034D631 /* MKAudioOutput.h in Headers */,
				2845A7DF132D9C520034D631 /* MKAudioOutputSpeech.h in Headers */,
				2845A7E1132D9C520034D631 /* MKAudioOutputUser.h in Headers */,
				2845A7E3132D9C520034D631 /* MKCertificate.h in Headers */,
				2845A7E5132D9C520034D631 /* MKChannel.h in Headers */,
				2845A7E7132D9C520034D631 /* MKConnection.h in Headers */,
				2845A7EB132D9C520034D631 /* MKCryptState.h in Headers */,
				2845A7ED132D9C520034D631 /* MKPacketDataStream.h in Headers */,
				2845A7F1132D9C520034D631 /* MKServerModel.h in Headers */,
				2845A7F5132D9C520034D631 /* MKServices.h in Headers */,
				2845A7F7132D9C520034D631 /* MKUser.h in Headers */,
				2845A7F9132D9C520034D631 /* MKUtils.h in Headers */,
				2845A7FB132D9C520034D631 /* MKVersion.h in Headers */,
				282F6B0813624187008F555B /* MKServerPinger.h in Headers */,
				28F2FAD513E37BA000034BF2 /* MKAudioOutputUserPrivate.h in Headers */,
				283363DD13EF535B00A04F04 /* MKChannelPrivate.h in Headers */,
				2879526814C1BDD800567430 /* MKTextMessage.h in Headers */,
				281EADA51530EA30000793AB /* MKDistinguishedNameParser.h in Headers */,
				28074E90158A6E5100E0A4D0 /* MKAudioOutputSidetone.h in Headers */,
				BCD11DF2158F3FD600321E06 /* MKPermission.h in Headers */,
				BCD11DF7158F40A900321E06 /* MKAccessControl.h in Headers */,
				BCD11DF9158F40A900321E06 /* MKChannelACL.h in Headers */,
				BCD11DFB158F40A900321E06 /* MKChannelGroup.h in Headers */,
				284C1ABC161CABCC00B87340 /* MKVoiceProcessingDevice.h in Headers */,
				288211C0161CE44B00E72F91 /* MKAudioDevice.h in Headers */,
				288211C7161CECD000E72F91 /* MKiOSAudioDevice.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXHeadersBuildPhase section */

/* Begin PBXNativeTarget section */
		2845A719132D9B2F0034D631 /* MumbleKit (Mac) */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 2845A728132D9B2F0034D631 /* Build configuration list for PBXNativeTarget "MumbleKit (Mac)" */;
			buildPhases = (
				2845A715132D9B2F0034D631 /* Sources */,
				2845A716132D9B2F0034D631 /* Frameworks */,
				2845A717132D9B2F0034D631 /* Headers */,
				2845A718132D9B2F0034D631 /* Resources */,
				28CC3703132EDA4500241269 /* CopyFiles */,
			);
			buildRules = (
			);
			dependencies = (
				0245A133154F593C00476144 /* PBXTargetDependency */,
				28492355132ED66F00B4EAAC /* PBXTargetDependency */,
				28492357132ED66F00B4EAAC /* PBXTargetDependency */,
				28492359132ED66F00B4EAAC /* PBXTargetDependency */,
				2849235B132ED66F00B4EAAC /* PBXTargetDependency */,
				2849235D132ED66F00B4EAAC /* PBXTargetDependency */,
			);
			name = "MumbleKit (Mac)";
			productName = MumbleKit;
			productReference = 2845A71A132D9B2F0034D631 /* MumbleKit.framework */;
			productType = "com.apple.product-type.framework";
		};
		28BCF2C0132AE3B40003AEC1 /* MumbleKit (iOS) */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 28BCF2CB132AE3B40003AEC1 /* Build configuration list for PBXNativeTarget "MumbleKit (iOS)" */;
			buildPhases = (
				28BCF2BD132AE3B40003AEC1 /* Sources */,
				28BCF2BE132AE3B40003AEC1 /* Frameworks */,
				28BCF2BF132AE3B40003AEC1 /* Headers */,
			);
			buildRules = (
			);
			dependencies = (
				28FB39E8150C4D6F00E6E522 /* PBXTargetDependency */,
				283363CA13EE070400A04F04 /* PBXTargetDependency */,
				283363CC13EE070400A04F04 /* PBXTargetDependency */,
				283363CE13EE070400A04F04 /* PBXTargetDependency */,
				283363D013EE070400A04F04 /* PBXTargetDependency */,
				283363D213EE070400A04F04 /* PBXTargetDependency */,
			);
			name = "MumbleKit (iOS)";
			productName = MumbleKit;
			productReference = 28BCF2C1132AE3B40003AEC1 /* libMumbleKit.a */;
			productType = "com.apple.product-type.library.static";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		28BCF2B8132AE3B40003AEC1 /* Project object */ = {
			isa = PBXProject;
			attributes = {
				LastUpgradeCheck = 1230;
			};
			buildConfigurationList = 28BCF2BB132AE3B40003AEC1 /* Build configuration list for PBXProject "MumbleKit" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = en;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
				Base,
			);
			mainGroup = 28BCF2B6132AE3B40003AEC1;
			productRefGroup = 28BCF2C2132AE3B40003AEC1 /* Products */;
			projectDirPath = "";
			projectReferences = (
				{
					ProductGroup = 28492308132ED60700B4EAAC /* Products */;
					ProjectRef = 28492307132ED60700B4EAAC /* CELT-0.7.xcodeproj */;
				},
				{
					ProductGroup = 2849232E132ED63600B4EAAC /* Products */;
					ProjectRef = 2849232D132ED63600B4EAAC /* OpenSSL.xcodeproj */;
				},
				{
					ProductGroup = 285B425914E6E1200045E282 /* Products */;
					ProjectRef = 285B425814E6E1200045E282 /* Opus.xcodeproj */;
				},
				{
					ProductGroup = 28492322132ED61800B4EAAC /* Products */;
					ProjectRef = 28492321132ED61800B4EAAC /* ProtocolBuffers.xcodeproj */;
				},
				{
					ProductGroup = 2849233D132ED64C00B4EAAC /* Products */;
					ProjectRef = 2849233C132ED64C00B4EAAC /* Speex.xcodeproj */;
				},
				{
					ProductGroup = 28492349132ED65700B4EAAC /* Products */;
					ProjectRef = 28492348132ED65700B4EAAC /* SpeexDSP.xcodeproj */;
				},
			);
			projectRoot = "";
			targets = (
				28BCF2C0132AE3B40003AEC1 /* MumbleKit (iOS) */,
				2845A719132D9B2F0034D631 /* MumbleKit (Mac) */,
			);
		};
/* End PBXProject section */

/* Begin PBXReferenceProxy section */
		28492310132ED60700B4EAAC /* libCELT-0.7.0.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = "libCELT-0.7.0.a";
			remoteRef = 2849230F132ED60700B4EAAC /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		28492312132ED60700B4EAAC /* CELT-0.7.0.dylib */ = {
			isa = PBXReferenceProxy;
			fileType = "compiled.mach-o.dylib";
			path = "CELT-0.7.0.dylib";
			remoteRef = 28492311132ED60700B4EAAC /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		2849232A132ED61800B4EAAC /* libProtocolBuffers.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libProtocolBuffers.a;
			remoteRef = 28492329132ED61800B4EAAC /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		2849232C132ED61800B4EAAC /* ProtocolBuffers.dylib */ = {
			isa = PBXReferenceProxy;
			fileType = "compiled.mach-o.dylib";
			path = ProtocolBuffers.dylib;
			remoteRef = 2849232B132ED61800B4EAAC /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		28492336132ED63800B4EAAC /* libOpenSSL.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libOpenSSL.a;
			remoteRef = 28492335132ED63800B4EAAC /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		28492338132ED63800B4EAAC /* OpenSSL.dylib */ = {
			isa = PBXReferenceProxy;
			fileType = "compiled.mach-o.dylib";
			path = OpenSSL.dylib;
			remoteRef = 28492337132ED63800B4EAAC /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		28492345132ED64D00B4EAAC /* libSpeex.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libSpeex.a;
			remoteRef = 28492344132ED64D00B4EAAC /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		28492347132ED64D00B4EAAC /* Speex.dylib */ = {
			isa = PBXReferenceProxy;
			fileType = "compiled.mach-o.dylib";
			path = Speex.dylib;
			remoteRef = 28492346132ED64D00B4EAAC /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		28492351132ED65800B4EAAC /* libSpeexDSP.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libSpeexDSP.a;
			remoteRef = 28492350132ED65800B4EAAC /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		28492353132ED65800B4EAAC /* SpeexDSP.dylib */ = {
			isa = PBXReferenceProxy;
			fileType = "compiled.mach-o.dylib";
			path = SpeexDSP.dylib;
			remoteRef = 28492352132ED65800B4EAAC /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		285B426114E6E1200045E282 /* libOpus.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libOpus.a;
			remoteRef = 285B426014E6E1200045E282 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		285B426314E6E1200045E282 /* Opus.dylib */ = {
			isa = PBXReferenceProxy;
			fileType = "compiled.mach-o.dylib";
			path = Opus.dylib;
			remoteRef = 285B426214E6E1200045E282 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
/* End PBXReferenceProxy section */

/* Begin PBXResourcesBuildPhase section */
		2845A718132D9B2F0034D631 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		2845A715132D9B2F0034D631 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				2845A795132D9C220034D631 /* CryptState.cpp in Sources */,
				2845A797132D9C220034D631 /* MKAudio.m in Sources */,
				2845A799132D9C220034D631 /* MKAudioInput.m in Sources */,
				2845A79B132D9C220034D631 /* MKAudioOutput.m in Sources */,
				2845A79D132D9C220034D631 /* MKAudioOutputSpeech.m in Sources */,
				2845A79F132D9C220034D631 /* MKAudioOutputUser.m in Sources */,
				2845A7A1132D9C220034D631 /* MKCertificate.m in Sources */,
				2845A7A3132D9C220034D631 /* MKChannel.m in Sources */,
				2845A7A5132D9C220034D631 /* MKConnection.m in Sources */,
				2845A7A9132D9C220034D631 /* MKCryptState_openssl.mm in Sources */,
				2845A7AB132D9C220034D631 /* MKPacketDataStream.m in Sources */,
				2845A7AF132D9C220034D631 /* MKServerModel.m in Sources */,
				2845A7B3132D9C220034D631 /* MKServices.m in Sources */,
				2845A7B5132D9C220034D631 /* MKUser.m in Sources */,
				2845A7B7132D9C220034D631 /* MKVersion.m in Sources */,
				2845A7B9132D9C220034D631 /* MulticastDelegate.m in Sources */,
				28CC36FB132ED92500241269 /* Mumble.pb.m in Sources */,
				28CC36FD132ED92500241269 /* ObjectivecDescriptor.pb.m in Sources */,
				282F6B0B13624187008F555B /* MKServerPinger.m in Sources */,
				2879526514C1BAB900567430 /* MKTextMessage.m in Sources */,
				281EADA81530EA30000793AB /* MKDistinguishedNameParser.m in Sources */,
				28074E93158A6E5100E0A4D0 /* MKAudioOutputSidetone.m in Sources */,
				BCD11E0A158F40FA00321E06 /* MKAccessControl.m in Sources */,
				BCD11E0C158F40FA00321E06 /* MKChannelACL.m in Sources */,
				BCD11E0E158F40FA00321E06 /* MKChannelGroup.m in Sources */,
				288211C3161CE44B00E72F91 /* MKAudioDevice.m in Sources */,
				28503D60168793C400A78419 /* MKMacAudioDevice.m in Sources */,
				28CE05CB1687A454006E2739 /* MKVoiceProcessingDevice.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		28BCF2BD132AE3B40003AEC1 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				2845A794132D9C220034D631 /* CryptState.cpp in Sources */,
				2845A796132D9C220034D631 /* MKAudio.m in Sources */,
				2845A798132D9C220034D631 /* MKAudioInput.m in Sources */,
				2845A79A132D9C220034D631 /* MKAudioOutput.m in Sources */,
				2845A79C132D9C220034D631 /* MKAudioOutputSpeech.m in Sources */,
				2845A79E132D9C220034D631 /* MKAudioOutputUser.m in Sources */,
				2845A7A0132D9C220034D631 /* MKCertificate.m in Sources */,
				2845A7A2132D9C220034D631 /* MKChannel.m in Sources */,
				2845A7A4132D9C220034D631 /* MKConnection.m in Sources */,
				2845A7A8132D9C220034D631 /* MKCryptState_openssl.mm in Sources */,
				2845A7AA132D9C220034D631 /* MKPacketDataStream.m in Sources */,
				2845A7AE132D9C220034D631 /* MKServerModel.m in Sources */,
				2845A7B2132D9C220034D631 /* MKServices.m in Sources */,
				2845A7B4132D9C220034D631 /* MKUser.m in Sources */,
				2845A7B6132D9C220034D631 /* MKVersion.m in Sources */,
				2845A7B8132D9C220034D631 /* MulticastDelegate.m in Sources */,
				28CC36FA132ED92500241269 /* Mumble.pb.m in Sources */,
				28CC36FC132ED92500241269 /* ObjectivecDescriptor.pb.m in Sources */,
				282F6B0A13624187008F555B /* MKServerPinger.m in Sources */,
				2879526414C1BAB900567430 /* MKTextMessage.m in Sources */,
				281EADA71530EA30000793AB /* MKDistinguishedNameParser.m in Sources */,
				28074E92158A6E5100E0A4D0 /* MKAudioOutputSidetone.m in Sources */,
				BCD11E09158F40FA00321E06 /* MKAccessControl.m in Sources */,
				BCD11E0B158F40FA00321E06 /* MKChannelACL.m in Sources */,
				BCD11E0D158F40FA00321E06 /* MKChannelGroup.m in Sources */,
				284C1ABD161CABCC00B87340 /* MKVoiceProcessingDevice.m in Sources */,
				288211C2161CE44B00E72F91 /* MKAudioDevice.m in Sources */,
				288211C9161CECD000E72F91 /* MKiOSAudioDevice.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXTargetDependency section */
		0245A133154F593C00476144 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = "Opus (Mac)";
			targetProxy = 0245A132154F593C00476144 /* PBXContainerItemProxy */;
		};
		283363CA13EE070400A04F04 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = "CELT-0.7 (iOS)";
			targetProxy = 283363C913EE070400A04F04 /* PBXContainerItemProxy */;
		};
		283363CC13EE070400A04F04 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = "OpenSSL (iOS)";
			targetProxy = 283363CB13EE070400A04F04 /* PBXContainerItemProxy */;
		};
		283363CE13EE070400A04F04 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = "ProtocolBuffers (iOS)";
			targetProxy = 283363CD13EE070400A04F04 /* PBXContainerItemProxy */;
		};
		283363D013EE070400A04F04 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = "SpeexDSP (iOS)";
			targetProxy = 283363CF13EE070400A04F04 /* PBXContainerItemProxy */;
		};
		283363D213EE070400A04F04 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = "Speex (iOS)";
			targetProxy = 283363D113EE070400A04F04 /* PBXContainerItemProxy */;
		};
		28492355132ED66F00B4EAAC /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = "OpenSSL (Mac)";
			targetProxy = 28492354132ED66F00B4EAAC /* PBXContainerItemProxy */;
		};
		28492357132ED66F00B4EAAC /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = "ProtocolBuffers (Mac)";
			targetProxy = 28492356132ED66F00B4EAAC /* PBXContainerItemProxy */;
		};
		28492359132ED66F00B4EAAC /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = "CELT-0.7 (Mac)";
			targetProxy = 28492358132ED66F00B4EAAC /* PBXContainerItemProxy */;
		};
		2849235B132ED66F00B4EAAC /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = "Speex (Mac)";
			targetProxy = 2849235A132ED66F00B4EAAC /* PBXContainerItemProxy */;
		};
		2849235D132ED66F00B4EAAC /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = "SpeexDSP (Mac)";
			targetProxy = 2849235C132ED66F00B4EAAC /* PBXContainerItemProxy */;
		};
		28FB39E8150C4D6F00E6E522 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = "Opus (iOS)";
			targetProxy = 28FB39E7150C4D6F00E6E522 /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin XCBuildConfiguration section */
		2845A729132D9B2F0034D631 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COMBINE_HIDPI_IMAGES = YES;
				SDKROOT = macosx;
			};
			name = Debug;
		};
		2845A72A132D9B2F0034D631 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COMBINE_HIDPI_IMAGES = YES;
				SDKROOT = macosx;
			};
			name = Release;
		};
		28498F1A138AB6A9000509DD /* BetaDist */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 2815C4E0150D559800136082 /* BetaDist.xcconfig */;
			buildSettings = {
			};
			name = BetaDist;
		};
		28498F1B138AB6A9000509DD /* BetaDist */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
			};
			name = BetaDist;
		};
		28498F1C138AB6A9000509DD /* BetaDist */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COMBINE_HIDPI_IMAGES = YES;
				SDKROOT = macosx;
			};
			name = BetaDist;
		};
		28A2AEC21478A92700F3B83F /* AppStore */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 2815C4DE150D559800136082 /* AppStore.xcconfig */;
			buildSettings = {
			};
			name = AppStore;
		};
		28A2AEC31478A92700F3B83F /* AppStore */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
			};
			name = AppStore;
		};
		28A2AEC41478A92700F3B83F /* AppStore */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COMBINE_HIDPI_IMAGES = YES;
				SDKROOT = macosx;
			};
			name = AppStore;
		};
		28BCF2C9132AE3B40003AEC1 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 2815C4E6150D55BC00136082 /* Debug.xcconfig */;
			buildSettings = {
				ONLY_ACTIVE_ARCH = YES;
			};
			name = Debug;
		};
		28BCF2CA132AE3B40003AEC1 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 2815C4E1150D559800136082 /* Release.xcconfig */;
			buildSettings = {
			};
			name = Release;
		};
		28BCF2CC132AE3B40003AEC1 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
			};
			name = Debug;
		};
		28BCF2CD132AE3B40003AEC1 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		2845A728132D9B2F0034D631 /* Build configuration list for PBXNativeTarget "MumbleKit (Mac)" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				2845A729132D9B2F0034D631 /* Debug */,
				2845A72A132D9B2F0034D631 /* Release */,
				28A2AEC41478A92700F3B83F /* AppStore */,
				28498F1C138AB6A9000509DD /* BetaDist */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		28BCF2BB132AE3B40003AEC1 /* Build configuration list for PBXProject "MumbleKit" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				28BCF2C9132AE3B40003AEC1 /* Debug */,
				28BCF2CA132AE3B40003AEC1 /* Release */,
				28A2AEC21478A92700F3B83F /* AppStore */,
				28498F1A138AB6A9000509DD /* BetaDist */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		28BCF2CB132AE3B40003AEC1 /* Build configuration list for PBXNativeTarget "MumbleKit (iOS)" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				28BCF2CC132AE3B40003AEC1 /* Debug */,
				28BCF2CD132AE3B40003AEC1 /* Release */,
				28A2AEC31478A92700F3B83F /* AppStore */,
				28498F1B138AB6A9000509DD /* BetaDist */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = 28BCF2B8132AE3B40003AEC1 /* Project object */;
}