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
|
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 48;
objects = {
/* Begin PBXBuildFile section */
140C3C6E1E02FCE000142503 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B811E02FCE000142503 /* AllTests.m */; };
140C3C701E02FCE000142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B821E02FCE000142503 /* Client.m */; };
140C3C741E02FCE000142503 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B841E02FCE000142503 /* Server.m */; };
140C3C761E02FCE000142503 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B861E02FCE000142503 /* TestI.m */; };
140C3C781E02FCE000142503 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B881E02FCE000142503 /* AllTests.m */; };
140C3C7A1E02FCE000142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B891E02FCE000142503 /* Client.m */; };
140C3C821E02FCE000142503 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B8D1E02FCE000142503 /* Server.m */; };
140C3C841E02FCE000142503 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B8F1E02FCE000142503 /* TestI.m */; };
140C3C861E02FCE000142503 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B911E02FCE000142503 /* AllTests.m */; };
140C3C881E02FCE000142503 /* BatchOneways.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B921E02FCE000142503 /* BatchOneways.m */; };
140C3C8A1E02FCE000142503 /* BatchOnewaysAMI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B931E02FCE000142503 /* BatchOnewaysAMI.m */; };
140C3C8C1E02FCE000142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B941E02FCE000142503 /* Client.m */; };
140C3C921E02FCE000142503 /* Oneways.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B971E02FCE000142503 /* Oneways.m */; };
140C3C981E02FCE000142503 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B9A1E02FCE000142503 /* Server.m */; };
140C3C9A1E02FCE000142503 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B9C1E02FCE000142503 /* TestI.m */; };
140C3C9C1E02FCE000142503 /* Twoways.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B9D1E02FCE000142503 /* Twoways.m */; };
140C3CA01E02FCE000142503 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BA01E02FCE000142503 /* AllTests.m */; };
140C3CA21E02FCE000142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BA11E02FCE000142503 /* Client.m */; };
140C3CA61E02FCE000142503 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BA31E02FCE000142503 /* Server.m */; };
140C3CA81E02FCE000142503 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BA51E02FCE000142503 /* TestI.m */; };
140C3CAA1E02FCE000142503 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BA71E02FCE000142503 /* AllTests.m */; };
140C3CAC1E02FCE000142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BA81E02FCE000142503 /* Client.m */; };
140C3CB21E02FCE000142503 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BAB1E02FCE000142503 /* Server.m */; };
140C3CB41E02FCE000142503 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BAD1E02FCE000142503 /* TestI.m */; };
140C3CB61E02FCE000142503 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BAF1E02FCE000142503 /* AllTests.m */; };
140C3CB81E02FCE000142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BB01E02FCE000142503 /* Client.m */; };
140C3CBE1E02FCE000142503 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BB31E02FCE000142503 /* Server.m */; };
140C3CC01E02FCE000142503 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BB51E02FCE000142503 /* TestI.m */; };
140C3CC21E02FCE000142503 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BB71E02FCE000142503 /* AllTests.m */; };
140C3CC41E02FCE000142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BB81E02FCE000142503 /* Client.m */; };
140C3CCA1E02FCE000142503 /* ServantLocatorI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BBC1E02FCE000142503 /* ServantLocatorI.m */; };
140C3CCE1E02FCE000142503 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BBE1E02FCE000142503 /* Server.m */; };
140C3CD01E02FCE100142503 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BC01E02FCE000142503 /* TestI.m */; };
140C3CD21E02FCE100142503 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BC21E02FCE000142503 /* AllTests.m */; };
140C3CD41E02FCE100142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BC31E02FCE000142503 /* Client.m */; };
140C3CDA1E02FCE100142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BC71E02FCE000142503 /* Client.m */; };
140C3CDE1E02FCE100142503 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BCA1E02FCE000142503 /* AllTests.m */; };
140C3CE01E02FCE100142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BCB1E02FCE000142503 /* Client.m */; };
140C3CE21E02FCE100142503 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BCC1E02FCE000142503 /* Server.m */; };
140C3CE41E02FCE100142503 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BCE1E02FCE000142503 /* TestI.m */; };
140C3CEA1E02FCE100142503 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BD21E02FCE000142503 /* AllTests.m */; };
140C3CEC1E02FCE100142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BD31E02FCE000142503 /* Client.m */; };
140C3CEE1E02FCE100142503 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BD41E02FCE000142503 /* Server.m */; };
140C3CF01E02FCE100142503 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BD61E02FCE000142503 /* TestI.m */; };
140C3CF41E02FCE100142503 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BD91E02FCE000142503 /* AllTests.m */; };
140C3CF61E02FCE100142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BDA1E02FCE000142503 /* Client.m */; };
140C3CFA1E02FCE100142503 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BDC1E02FCE000142503 /* Server.m */; };
140C3CFC1E02FCE100142503 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BDE1E02FCE000142503 /* TestI.m */; };
140C3D001E02FCE100142503 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BE11E02FCE000142503 /* AllTests.m */; };
140C3D021E02FCE100142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BE21E02FCE000142503 /* Client.m */; };
140C3D061E02FCE100142503 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BE41E02FCE000142503 /* Server.m */; };
140C3D081E02FCE100142503 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BE61E02FCE000142503 /* TestI.m */; };
140C3D0A1E02FCE100142503 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BE81E02FCE000142503 /* AllTests.m */; };
140C3D0E1E02FCE100142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BEA1E02FCE000142503 /* Client.m */; };
140C3D121E02FCE100142503 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BEC1E02FCE000142503 /* Server.m */; };
140C3D141E02FCE100142503 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BEE1E02FCE000142503 /* TestI.m */; };
140C3D161E02FCE100142503 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BF01E02FCE000142503 /* AllTests.m */; };
140C3D1A1E02FCE100142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BF21E02FCE000142503 /* Client.m */; };
140C3D1C1E02FCE100142503 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BF31E02FCE000142503 /* Server.m */; };
140C3D1E1E02FCE100142503 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BF51E02FCE000142503 /* TestI.m */; };
140C3D201E02FCE100142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BF71E02FCE000142503 /* Client.m */; };
140C3D261E02FCE100142503 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BFB1E02FCE000142503 /* TestI.m */; };
140C3D281E02FCE100142503 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BFD1E02FCE000142503 /* AllTests.m */; };
140C3D2A1E02FCE100142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BFE1E02FCE000142503 /* Client.m */; };
140C3D2E1E02FCE100142503 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C011E02FCE000142503 /* AllTests.m */; };
140C3D301E02FCE100142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C021E02FCE000142503 /* Client.m */; };
140C3D361E02FCE100142503 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C051E02FCE000142503 /* Server.m */; };
140C3D381E02FCE100142503 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C071E02FCE000142503 /* TestI.m */; };
140C3D3A1E02FCE100142503 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C091E02FCE000142503 /* AllTests.m */; };
140C3D3C1E02FCE100142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C0A1E02FCE000142503 /* Client.m */; };
140C3D401E02FCE100142503 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C0C1E02FCE000142503 /* Server.m */; };
140C3D421E02FCE100142503 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C0E1E02FCE000142503 /* TestI.m */; };
140C3D441E02FCE100142503 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C101E02FCE000142503 /* AllTests.m */; };
140C3D461E02FCE100142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C111E02FCE000142503 /* Client.m */; };
140C3D4C1E02FCE100142503 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C141E02FCE000142503 /* Server.m */; };
140C3D4E1E02FCE100142503 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C161E02FCE000142503 /* TestI.m */; };
140C3D501E02FCE100142503 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C181E02FCE000142503 /* AllTests.m */; };
140C3D521E02FCE100142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C191E02FCE000142503 /* Client.m */; };
140C3D581E02FCE100142503 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C1C1E02FCE000142503 /* Server.m */; };
140C3D5A1E02FCE100142503 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C1E1E02FCE000142503 /* TestI.m */; };
140C3D661E02FCE100142503 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C271E02FCE000142503 /* AllTests.m */; };
140C3D681E02FCE100142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C281E02FCE000142503 /* Client.m */; };
140C3D6C1E02FCE100142503 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C2B1E02FCE000142503 /* AllTests.m */; };
140C3D6E1E02FCE100142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C2C1E02FCE000142503 /* Client.m */; };
140C3D721E02FCE100142503 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C2E1E02FCE000142503 /* Server.m */; };
140C3D741E02FCE100142503 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C301E02FCE000142503 /* TestI.m */; };
140C3D761E02FCE100142503 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C321E02FCE000142503 /* AllTests.m */; };
140C3D781E02FCE100142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C331E02FCE000142503 /* Client.m */; };
140C3D7E1E02FCE100142503 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C361E02FCE000142503 /* Server.m */; };
140C3D801E02FCE100142503 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C381E02FCE000142503 /* TestI.m */; };
140C3D821E02FCE100142503 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C3A1E02FCE000142503 /* AllTests.m */; };
140C3D841E02FCE100142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C3B1E02FCE000142503 /* Client.m */; };
140C3D8A1E02FCE100142503 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C3E1E02FCE000142503 /* Server.m */; };
140C3D8C1E02FCE100142503 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C401E02FCE000142503 /* TestI.m */; };
140C3D8E1E02FCE100142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C421E02FCE000142503 /* Client.m */; };
140C3D901E02FCE100142503 /* InterceptorI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C441E02FCE000142503 /* InterceptorI.m */; };
140C3D961E02FCE100142503 /* MyObjectI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C481E02FCE000142503 /* MyObjectI.m */; };
140C3D981E02FCE100142503 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C4A1E02FCE000142503 /* AllTests.m */; };
140C3D9A1E02FCE100142503 /* BlobjectI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C4C1E02FCE000142503 /* BlobjectI.m */; };
140C3D9C1E02FCE100142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C4D1E02FCE000142503 /* Client.m */; };
140C3DA21E02FCE100142503 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C501E02FCE000142503 /* Server.m */; };
140C3DA41E02FCE100142503 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C521E02FCE000142503 /* AllTests.m */; };
140C3DA61E02FCE100142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C531E02FCE000142503 /* Client.m */; };
140C3DAC1E02FCE100142503 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C561E02FCE000142503 /* Server.m */; };
140C3DAE1E02FCE100142503 /* ServerLocator.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C581E02FCE000142503 /* ServerLocator.m */; };
140C3DB01E02FCE100142503 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C5A1E02FCE000142503 /* TestI.m */; };
140C3DB21E02FCE100142503 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C5D1E02FCE000142503 /* AllTests.m */; };
140C3DB41E02FCE100142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C5E1E02FCE000142503 /* Client.m */; };
140C3DB81E02FCE100142503 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C601E02FCE000142503 /* Server.m */; };
140C3DBE1E02FCE100142503 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C641E02FCE000142503 /* TestI.m */; };
140C3DC01E02FCE100142503 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C661E02FCE000142503 /* AllTests.m */; };
140C3DC21E02FCE100142503 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C671E02FCE000142503 /* Client.m */; };
140C3DC61E02FCE100142503 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C691E02FCE000142503 /* Server.m */; };
140C3DCC1E02FCE100142503 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C6D1E02FCE000142503 /* TestI.m */; };
140C3DED1E02FF0900142503 /* MetricsTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B831E02FCE000142503 /* MetricsTest.ice */; };
140C3DEE1E02FF0900142503 /* ObjectsTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B8C1E02FCE000142503 /* ObjectsTest.ice */; };
140C3DEF1E02FF0900142503 /* OperationsTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B991E02FCE000142503 /* OperationsTest.ice */; };
140C3DF01E02FF0900142503 /* OptionalTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BA21E02FCE000142503 /* OptionalTest.ice */; };
140C3DF11E02FF0900142503 /* ProxyTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BAA1E02FCE000142503 /* ProxyTest.ice */; };
140C3DF21E02FF0900142503 /* RetryTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BB21E02FCE000142503 /* RetryTest.ice */; };
140C3DF31E02FF0900142503 /* ServantLocatorTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BBD1E02FCE000142503 /* ServantLocatorTest.ice */; };
140C3DF41E02FF0900142503 /* ServicesTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BC51E02FCE000142503 /* ServicesTest.ice */; };
140C3DF51E02FF0900142503 /* StreamTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BC81E02FCE000142503 /* StreamTest.ice */; };
140C3DF61E02FF0900142503 /* TimeoutTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BCF1E02FCE000142503 /* TimeoutTest.ice */; };
140C3DF71E02FF0900142503 /* ACMTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BD11E02FCE000142503 /* ACMTest.ice */; };
140C3DF81E02FF0900142503 /* AdapterDeactivationTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BD81E02FCE000142503 /* AdapterDeactivationTest.ice */; };
140C3DF91E02FF0900142503 /* AdminTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BE01E02FCE000142503 /* AdminTest.ice */; };
140C3DFA1E02FF0900142503 /* AMITest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BE91E02FCE000142503 /* AMITest.ice */; };
140C3DFB1E02FF0900142503 /* BindingTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BF11E02FCE000142503 /* BindingTest.ice */; };
140C3DFC1E02FF0900142503 /* DefaultServantTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BF81E02FCE000142503 /* DefaultServantTest.ice */; };
140C3DFD1E02FF0900142503 /* DefaultValueTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BFF1E02FCE000142503 /* DefaultValueTest.ice */; };
140C3DFE1E02FF0900142503 /* DispatcherTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C041E02FCE000142503 /* DispatcherTest.ice */; };
140C3DFF1E02FF0900142503 /* EnumTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C0B1E02FCE000142503 /* EnumTest.ice */; };
140C3E001E02FF0900142503 /* ExceptionsTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C131E02FCE000142503 /* ExceptionsTest.ice */; };
140C3E011E02FF0900142503 /* FacetsTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C1B1E02FCE000142503 /* FacetsTest.ice */; };
140C3E031E02FF0900142503 /* HashTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C291E02FCE000142503 /* HashTest.ice */; };
140C3E041E02FF0900142503 /* HoldTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C2D1E02FCE000142503 /* HoldTest.ice */; };
140C3E051E02FF0900142503 /* InfoTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C341E02FCE000142503 /* InfoTest.ice */; };
140C3E061E02FF0900142503 /* InvokeTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C4E1E02FCE000142503 /* InvokeTest.ice */; };
140C3E071E02FF0900142503 /* LocationTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C541E02FCE000142503 /* LocationTest.ice */; };
140C3E081E02FF0900142503 /* SlicingExceptionsTestClient.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C611E02FCE000142503 /* SlicingExceptionsTestClient.ice */; };
140C3E091E02FF0900142503 /* SlicingExceptionsTestServer.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C621E02FCE000142503 /* SlicingExceptionsTestServer.ice */; };
140C3E0A1E02FF0900142503 /* SlicingObjectsTestClient.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C6A1E02FCE000142503 /* SlicingObjectsTestClient.ice */; };
140C3E0B1E02FF0900142503 /* SlicingObjectsTestServer.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C6B1E02FCE000142503 /* SlicingObjectsTestServer.ice */; };
140C3E0F1E03005200142503 /* InheritanceTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3E0C1E03004300142503 /* InheritanceTest.ice */; };
140C3E131E03007D00142503 /* InterceptorTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3E101E03007900142503 /* InterceptorTest.ice */; };
140C3E151E03019000142503 /* TestCommon.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3E141E03019000142503 /* TestCommon.m */; };
140C3E181E03E87D00142503 /* Collocated.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3E171E03E87D00142503 /* Collocated.m */; };
140C3E1A1E03EAAA00142503 /* Collocated.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3E191E03EAAA00142503 /* Collocated.m */; };
140C3E1C1E03EABE00142503 /* Collocated.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3E1B1E03EABE00142503 /* Collocated.m */; };
140C3E1E1E03EAD000142503 /* Collocated.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3E1D1E03EAD000142503 /* Collocated.m */; };
140C3E201E03EAF300142503 /* Collocated.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3E1F1E03EAF300142503 /* Collocated.m */; };
140C3E221E03EBE000142503 /* Collocated.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3E211E03EBE000142503 /* Collocated.m */; };
143A09AF1EB3895D00C8F91F /* cacert.pem in Resources */ = {isa = PBXBuildFile; fileRef = 143A09AE1EB3895D00C8F91F /* cacert.pem */; };
145C4BE61E36061900A855C7 /* TestIntfI.m in Sources */ = {isa = PBXBuildFile; fileRef = 145C4BE31E36061900A855C7 /* TestIntfI.m */; };
145C4BE71E36061900A855C7 /* ObjectsDerived.ice in Resources */ = {isa = PBXBuildFile; fileRef = 145C4BE41E36061900A855C7 /* ObjectsDerived.ice */; };
145C4BE81E36061900A855C7 /* ObjectsDerivedEx.ice in Resources */ = {isa = PBXBuildFile; fileRef = 145C4BE51E36061900A855C7 /* ObjectsDerivedEx.ice */; };
145C4BE91E36064B00A855C7 /* ObjectsDerived.ice in Sources */ = {isa = PBXBuildFile; fileRef = 145C4BE41E36061900A855C7 /* ObjectsDerived.ice */; };
145C4BEA1E36064B00A855C7 /* ObjectsDerivedEx.ice in Sources */ = {isa = PBXBuildFile; fileRef = 145C4BE51E36061900A855C7 /* ObjectsDerivedEx.ice */; };
145C4BEB1E36069B00A855C7 /* ObjectsDerived.ice in Sources */ = {isa = PBXBuildFile; fileRef = 145C4BE41E36061900A855C7 /* ObjectsDerived.ice */; };
145C4BEC1E36069B00A855C7 /* ObjectsDerivedEx.ice in Sources */ = {isa = PBXBuildFile; fileRef = 145C4BE51E36061900A855C7 /* ObjectsDerivedEx.ice */; };
145C4BED1E3606FF00A855C7 /* TestIntfI.m in Sources */ = {isa = PBXBuildFile; fileRef = 145C4BE31E36061900A855C7 /* TestIntfI.m */; };
146148791EE15DFE000ECDB3 /* OnewaysAMI.m in Sources */ = {isa = PBXBuildFile; fileRef = 146148771EE15DFE000ECDB3 /* OnewaysAMI.m */; };
1461487A1EE15DFE000ECDB3 /* TwowaysAMI.m in Sources */ = {isa = PBXBuildFile; fileRef = 146148781EE15DFE000ECDB3 /* TwowaysAMI.m */; };
14863D8D1EE7682500D3AA9B /* OnewaysAMI.m in Sources */ = {isa = PBXBuildFile; fileRef = 146148771EE15DFE000ECDB3 /* OnewaysAMI.m */; };
14863D8E1EE7682500D3AA9B /* TwowaysAMI.m in Sources */ = {isa = PBXBuildFile; fileRef = 146148781EE15DFE000ECDB3 /* TwowaysAMI.m */; };
148ABA1A1DFB12C800594F70 /* client.p12 in Resources */ = {isa = PBXBuildFile; fileRef = 148ABA171DFB12C800594F70 /* client.p12 */; };
148ABA1B1DFB12C800594F70 /* server.p12 in Resources */ = {isa = PBXBuildFile; fileRef = 148ABA181DFB12C800594F70 /* server.p12 */; };
14905C561DF98FD8002AE61B /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 14905C551DF98FD8002AE61B /* main.m */; };
14905C591DF98FD8002AE61B /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 14905C581DF98FD8002AE61B /* AppDelegate.m */; };
14905C5C1DF98FD8002AE61B /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 14905C5B1DF98FD8002AE61B /* ViewController.m */; };
14905C5F1DF98FD8002AE61B /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 14905C5D1DF98FD8002AE61B /* Main.storyboard */; };
14905C611DF98FD8002AE61B /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 14905C601DF98FD8002AE61B /* Assets.xcassets */; };
14905C641DF98FD8002AE61B /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 14905C621DF98FD8002AE61B /* LaunchScreen.storyboard */; };
14905C711DF9923D002AE61B /* Controller.ice in Sources */ = {isa = PBXBuildFile; fileRef = 14905C6D1DF991F2002AE61B /* Controller.ice */; };
14B7DEA21E04103F001D0109 /* Collocated.m in Sources */ = {isa = PBXBuildFile; fileRef = 14B7DEA11E04103F001D0109 /* Collocated.m */; };
14B7DEA41E04113A001D0109 /* Collocated.m in Sources */ = {isa = PBXBuildFile; fileRef = 14B7DEA31E04113A001D0109 /* Collocated.m */; };
14B7DEA61E041157001D0109 /* Collocated.m in Sources */ = {isa = PBXBuildFile; fileRef = 14B7DEA51E041157001D0109 /* Collocated.m */; };
14B7DEA81E041173001D0109 /* Collocated.m in Sources */ = {isa = PBXBuildFile; fileRef = 14B7DEA71E041173001D0109 /* Collocated.m */; };
14B7DEAA1E04119D001D0109 /* Collocated.m in Sources */ = {isa = PBXBuildFile; fileRef = 14B7DEA91E04119D001D0109 /* Collocated.m */; };
14B7DEAD1E043085001D0109 /* InheritanceTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3E0C1E03004300142503 /* InheritanceTest.ice */; };
14B7DEAE1E043085001D0109 /* MetricsTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B831E02FCE000142503 /* MetricsTest.ice */; };
14B7DEAF1E043085001D0109 /* ObjectsTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B8C1E02FCE000142503 /* ObjectsTest.ice */; };
14B7DEB01E043085001D0109 /* OperationsTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B991E02FCE000142503 /* OperationsTest.ice */; };
14B7DEB11E043085001D0109 /* InterceptorTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3E101E03007900142503 /* InterceptorTest.ice */; };
14B7DEB21E043085001D0109 /* OptionalTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BA21E02FCE000142503 /* OptionalTest.ice */; };
14B7DEB31E043085001D0109 /* ProxyTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BAA1E02FCE000142503 /* ProxyTest.ice */; };
14B7DEB41E043085001D0109 /* RetryTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BB21E02FCE000142503 /* RetryTest.ice */; };
14B7DEB51E043085001D0109 /* ServantLocatorTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BBD1E02FCE000142503 /* ServantLocatorTest.ice */; };
14B7DEB61E043085001D0109 /* ServicesTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BC51E02FCE000142503 /* ServicesTest.ice */; };
14B7DEB71E043085001D0109 /* StreamTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BC81E02FCE000142503 /* StreamTest.ice */; };
14B7DEB81E043085001D0109 /* TimeoutTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BCF1E02FCE000142503 /* TimeoutTest.ice */; };
14B7DEB91E043085001D0109 /* ACMTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BD11E02FCE000142503 /* ACMTest.ice */; };
14B7DEBA1E043085001D0109 /* AdapterDeactivationTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BD81E02FCE000142503 /* AdapterDeactivationTest.ice */; };
14B7DEBB1E043085001D0109 /* AdminTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BE01E02FCE000142503 /* AdminTest.ice */; };
14B7DEBC1E043085001D0109 /* AMITest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BE91E02FCE000142503 /* AMITest.ice */; };
14B7DEBD1E043085001D0109 /* BindingTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BF11E02FCE000142503 /* BindingTest.ice */; };
14B7DEBE1E043085001D0109 /* DefaultServantTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BF81E02FCE000142503 /* DefaultServantTest.ice */; };
14B7DEBF1E043085001D0109 /* DefaultValueTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BFF1E02FCE000142503 /* DefaultValueTest.ice */; };
14B7DEC01E043085001D0109 /* DispatcherTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C041E02FCE000142503 /* DispatcherTest.ice */; };
14B7DEC11E043085001D0109 /* EnumTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C0B1E02FCE000142503 /* EnumTest.ice */; };
14B7DEC21E043085001D0109 /* ExceptionsTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C131E02FCE000142503 /* ExceptionsTest.ice */; };
14B7DEC31E043085001D0109 /* FacetsTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C1B1E02FCE000142503 /* FacetsTest.ice */; };
14B7DEC41E043085001D0109 /* HashTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C291E02FCE000142503 /* HashTest.ice */; };
14B7DEC51E043085001D0109 /* HoldTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C2D1E02FCE000142503 /* HoldTest.ice */; };
14B7DEC61E043085001D0109 /* InfoTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C341E02FCE000142503 /* InfoTest.ice */; };
14B7DEC71E043085001D0109 /* InvokeTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C4E1E02FCE000142503 /* InvokeTest.ice */; };
14B7DEC81E043085001D0109 /* LocationTest.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C541E02FCE000142503 /* LocationTest.ice */; };
14B7DEC91E043085001D0109 /* SlicingExceptionsTestClient.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C611E02FCE000142503 /* SlicingExceptionsTestClient.ice */; };
14B7DECA1E043085001D0109 /* SlicingExceptionsTestServer.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C621E02FCE000142503 /* SlicingExceptionsTestServer.ice */; };
14B7DECB1E043085001D0109 /* SlicingObjectsTestClient.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C6A1E02FCE000142503 /* SlicingObjectsTestClient.ice */; };
14B7DECC1E043085001D0109 /* SlicingObjectsTestServer.ice in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C6B1E02FCE000142503 /* SlicingObjectsTestServer.ice */; };
14B7DECD1E043085001D0109 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BEE1E02FCE000142503 /* TestI.m */; };
14B7DECE1E043085001D0109 /* ServantLocatorI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BBC1E02FCE000142503 /* ServantLocatorI.m */; };
14B7DECF1E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C531E02FCE000142503 /* Client.m */; };
14B7DED01E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C191E02FCE000142503 /* Client.m */; };
14B7DED11E043085001D0109 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BD91E02FCE000142503 /* AllTests.m */; };
14B7DED21E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BE21E02FCE000142503 /* Client.m */; };
14B7DED31E043085001D0109 /* Controller.ice in Sources */ = {isa = PBXBuildFile; fileRef = 14905C6D1DF991F2002AE61B /* Controller.ice */; };
14B7DED41E043085001D0109 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C501E02FCE000142503 /* Server.m */; };
14B7DED61E043085001D0109 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BFB1E02FCE000142503 /* TestI.m */; };
14B7DED71E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C4D1E02FCE000142503 /* Client.m */; };
14B7DED81E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BC71E02FCE000142503 /* Client.m */; };
14B7DED91E043085001D0109 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C1C1E02FCE000142503 /* Server.m */; };
14B7DEDA1E043085001D0109 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C601E02FCE000142503 /* Server.m */; };
14B7DEDB1E043085001D0109 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BEC1E02FCE000142503 /* Server.m */; };
14B7DEDC1E043085001D0109 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B911E02FCE000142503 /* AllTests.m */; };
14B7DEDD1E043085001D0109 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C091E02FCE000142503 /* AllTests.m */; };
14B7DEDE1E043085001D0109 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C3A1E02FCE000142503 /* AllTests.m */; };
14B7DEDF1E043085001D0109 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C4A1E02FCE000142503 /* AllTests.m */; };
14B7DEE01E043085001D0109 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C561E02FCE000142503 /* Server.m */; };
14B7DEE11E043085001D0109 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BBE1E02FCE000142503 /* Server.m */; };
14B7DEE21E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BCB1E02FCE000142503 /* Client.m */; };
14B7DEE31E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C021E02FCE000142503 /* Client.m */; };
14B7DEE41E043085001D0109 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 14905C5B1DF98FD8002AE61B /* ViewController.m */; };
14B7DEE51E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B821E02FCE000142503 /* Client.m */; };
14B7DEE61E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C421E02FCE000142503 /* Client.m */; };
14B7DEE71E043085001D0109 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C321E02FCE000142503 /* AllTests.m */; };
14B7DEE81E043085001D0109 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C051E02FCE000142503 /* Server.m */; };
14B7DEE91E043085001D0109 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BE61E02FCE000142503 /* TestI.m */; };
14B7DEEA1E043085001D0109 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C2B1E02FCE000142503 /* AllTests.m */; };
14B7DEEB1E043085001D0109 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BF51E02FCE000142503 /* TestI.m */; };
14B7DEEC1E043085001D0109 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B861E02FCE000142503 /* TestI.m */; };
14B7DEED1E043085001D0109 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C521E02FCE000142503 /* AllTests.m */; };
14B7DEEE1E043085001D0109 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C3E1E02FCE000142503 /* Server.m */; };
14B7DEEF1E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BDA1E02FCE000142503 /* Client.m */; };
14B7DEF01E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C281E02FCE000142503 /* Client.m */; };
14B7DEF11E043085001D0109 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BA71E02FCE000142503 /* AllTests.m */; };
14B7DEF21E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BFE1E02FCE000142503 /* Client.m */; };
14B7DEF31E043085001D0109 /* Oneways.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B971E02FCE000142503 /* Oneways.m */; };
14B7DEF41E043085001D0109 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C271E02FCE000142503 /* AllTests.m */; };
14B7DEF51E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C3B1E02FCE000142503 /* Client.m */; };
14B7DEF61E043085001D0109 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BFD1E02FCE000142503 /* AllTests.m */; };
14B7DEF71E043085001D0109 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B8F1E02FCE000142503 /* TestI.m */; };
14B7DEF81E043085001D0109 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C2E1E02FCE000142503 /* Server.m */; };
14B7DEF91E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B891E02FCE000142503 /* Client.m */; };
14B7DEFA1E043085001D0109 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C181E02FCE000142503 /* AllTests.m */; };
14B7DEFB1E043085001D0109 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BDC1E02FCE000142503 /* Server.m */; };
14B7DEFC1E043085001D0109 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 14905C581DF98FD8002AE61B /* AppDelegate.m */; };
14B7DEFD1E043085001D0109 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C381E02FCE000142503 /* TestI.m */; };
14B7DEFE1E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BEA1E02FCE000142503 /* Client.m */; };
14B7DEFF1E043085001D0109 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C401E02FCE000142503 /* TestI.m */; };
14B7DF001E043085001D0109 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BCE1E02FCE000142503 /* TestI.m */; };
14B7DF011E043085001D0109 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BD41E02FCE000142503 /* Server.m */; };
14B7DF021E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C2C1E02FCE000142503 /* Client.m */; };
14B7DF031E043085001D0109 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C141E02FCE000142503 /* Server.m */; };
14B7DF041E043085001D0109 /* Twoways.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B9D1E02FCE000142503 /* Twoways.m */; };
14B7DF051E043085001D0109 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C101E02FCE000142503 /* AllTests.m */; };
14B7DF071E043085001D0109 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BCA1E02FCE000142503 /* AllTests.m */; };
14B7DF081E043085001D0109 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BE11E02FCE000142503 /* AllTests.m */; };
14B7DF091E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BC31E02FCE000142503 /* Client.m */; };
14B7DF0A1E043085001D0109 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C361E02FCE000142503 /* Server.m */; };
14B7DF0B1E043085001D0109 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C161E02FCE000142503 /* TestI.m */; };
14B7DF0C1E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BF21E02FCE000142503 /* Client.m */; };
14B7DF0D1E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C111E02FCE000142503 /* Client.m */; };
14B7DF0E1E043085001D0109 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C5A1E02FCE000142503 /* TestI.m */; };
14B7DF0F1E043085001D0109 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BF31E02FCE000142503 /* Server.m */; };
14B7DF101E043085001D0109 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C0E1E02FCE000142503 /* TestI.m */; };
14B7DF111E043085001D0109 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BAF1E02FCE000142503 /* AllTests.m */; };
14B7DF121E043085001D0109 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BC01E02FCE000142503 /* TestI.m */; };
14B7DF131E043085001D0109 /* ServerLocator.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C581E02FCE000142503 /* ServerLocator.m */; };
14B7DF141E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BA81E02FCE000142503 /* Client.m */; };
14B7DF151E043085001D0109 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BE81E02FCE000142503 /* AllTests.m */; };
14B7DF161E043085001D0109 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C5D1E02FCE000142503 /* AllTests.m */; };
14B7DF171E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B941E02FCE000142503 /* Client.m */; };
14B7DF181E043085001D0109 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C071E02FCE000142503 /* TestI.m */; };
14B7DF191E043085001D0109 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BE41E02FCE000142503 /* Server.m */; };
14B7DF1A1E043085001D0109 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BC21E02FCE000142503 /* AllTests.m */; };
14B7DF1B1E043085001D0109 /* BatchOneways.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B921E02FCE000142503 /* BatchOneways.m */; };
14B7DF1C1E043085001D0109 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BF01E02FCE000142503 /* AllTests.m */; };
14B7DF1D1E043085001D0109 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BB71E02FCE000142503 /* AllTests.m */; };
14B7DF1E1E043085001D0109 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BA51E02FCE000142503 /* TestI.m */; };
14B7DF1F1E043085001D0109 /* TestCommon.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3E141E03019000142503 /* TestCommon.m */; };
14B7DF201E043085001D0109 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B9A1E02FCE000142503 /* Server.m */; };
14B7DF211E043085001D0109 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BD21E02FCE000142503 /* AllTests.m */; };
14B7DF221E043085001D0109 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BA31E02FCE000142503 /* Server.m */; };
14B7DF231E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BA11E02FCE000142503 /* Client.m */; };
14B7DF241E043085001D0109 /* MyObjectI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C481E02FCE000142503 /* MyObjectI.m */; };
14B7DF251E043085001D0109 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B881E02FCE000142503 /* AllTests.m */; };
14B7DF261E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C0A1E02FCE000142503 /* Client.m */; };
14B7DF271E043085001D0109 /* BatchOnewaysAMI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B931E02FCE000142503 /* BatchOnewaysAMI.m */; };
14B7DF281E043085001D0109 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C301E02FCE000142503 /* TestI.m */; };
14B7DF291E043085001D0109 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C661E02FCE000142503 /* AllTests.m */; };
14B7DF2A1E043085001D0109 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B811E02FCE000142503 /* AllTests.m */; };
14B7DF2B1E043085001D0109 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C011E02FCE000142503 /* AllTests.m */; };
14B7DF2C1E043085001D0109 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C1E1E02FCE000142503 /* TestI.m */; };
14B7DF2D1E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C331E02FCE000142503 /* Client.m */; };
14B7DF2E1E043085001D0109 /* Collocated.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3E1F1E03EAF300142503 /* Collocated.m */; };
14B7DF2F1E043085001D0109 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 14905C551DF98FD8002AE61B /* main.m */; };
14B7DF301E043085001D0109 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BD61E02FCE000142503 /* TestI.m */; };
14B7DF311E043085001D0109 /* Collocated.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3E1D1E03EAD000142503 /* Collocated.m */; };
14B7DF321E043085001D0109 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C691E02FCE000142503 /* Server.m */; };
14B7DF331E043085001D0109 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BB31E02FCE000142503 /* Server.m */; };
14B7DF341E043085001D0109 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C641E02FCE000142503 /* TestI.m */; };
14B7DF351E043085001D0109 /* Collocated.m in Sources */ = {isa = PBXBuildFile; fileRef = 14B7DEA71E041173001D0109 /* Collocated.m */; };
14B7DF361E043085001D0109 /* Collocated.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3E171E03E87D00142503 /* Collocated.m */; };
14B7DF371E043085001D0109 /* Collocated.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3E191E03EAAA00142503 /* Collocated.m */; };
14B7DF381E043085001D0109 /* Collocated.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3E211E03EBE000142503 /* Collocated.m */; };
14B7DF391E043085001D0109 /* Collocated.m in Sources */ = {isa = PBXBuildFile; fileRef = 14B7DEA91E04119D001D0109 /* Collocated.m */; };
14B7DF3A1E043085001D0109 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C6D1E02FCE000142503 /* TestI.m */; };
14B7DF3B1E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C5E1E02FCE000142503 /* Client.m */; };
14B7DF3C1E043085001D0109 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BAB1E02FCE000142503 /* Server.m */; };
14B7DF3D1E043085001D0109 /* Collocated.m in Sources */ = {isa = PBXBuildFile; fileRef = 14B7DEA51E041157001D0109 /* Collocated.m */; };
14B7DF3E1E043085001D0109 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B8D1E02FCE000142503 /* Server.m */; };
14B7DF3F1E043085001D0109 /* Collocated.m in Sources */ = {isa = PBXBuildFile; fileRef = 14B7DEA11E04103F001D0109 /* Collocated.m */; };
14B7DF401E043085001D0109 /* Collocated.m in Sources */ = {isa = PBXBuildFile; fileRef = 14B7DEA31E04113A001D0109 /* Collocated.m */; };
14B7DF411E043085001D0109 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B9C1E02FCE000142503 /* TestI.m */; };
14B7DF421E043085001D0109 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3B841E02FCE000142503 /* Server.m */; };
14B7DF431E043085001D0109 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C0C1E02FCE000142503 /* Server.m */; };
14B7DF441E043085001D0109 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BDE1E02FCE000142503 /* TestI.m */; };
14B7DF451E043085001D0109 /* BlobjectI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C4C1E02FCE000142503 /* BlobjectI.m */; };
14B7DF461E043085001D0109 /* InterceptorI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C441E02FCE000142503 /* InterceptorI.m */; };
14B7DF471E043085001D0109 /* Collocated.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3E1B1E03EABE00142503 /* Collocated.m */; };
14B7DF481E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BB81E02FCE000142503 /* Client.m */; };
14B7DF491E043085001D0109 /* Server.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BCC1E02FCE000142503 /* Server.m */; };
14B7DF4A1E043085001D0109 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BB51E02FCE000142503 /* TestI.m */; };
14B7DF4B1E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3C671E02FCE000142503 /* Client.m */; };
14B7DF4C1E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BF71E02FCE000142503 /* Client.m */; };
14B7DF4D1E043085001D0109 /* TestI.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BAD1E02FCE000142503 /* TestI.m */; };
14B7DF4E1E043085001D0109 /* AllTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BA01E02FCE000142503 /* AllTests.m */; };
14B7DF4F1E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BD31E02FCE000142503 /* Client.m */; };
14B7DF501E043085001D0109 /* Client.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C3BB01E02FCE000142503 /* Client.m */; };
14B7DF561E043085001D0109 /* client.p12 in Resources */ = {isa = PBXBuildFile; fileRef = 148ABA171DFB12C800594F70 /* client.p12 */; };
14B7DF5F1E043085001D0109 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 14905C621DF98FD8002AE61B /* LaunchScreen.storyboard */; };
14B7DF641E043085001D0109 /* server.p12 in Resources */ = {isa = PBXBuildFile; fileRef = 148ABA181DFB12C800594F70 /* server.p12 */; };
14B7DF681E043085001D0109 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 14905C601DF98FD8002AE61B /* Assets.xcassets */; };
14B7DF721E043085001D0109 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 14905C5D1DF98FD8002AE61B /* Main.storyboard */; };
14C8F6201EB39722009B4CEC /* cacert.pem in Resources */ = {isa = PBXBuildFile; fileRef = 143A09AE1EB3895D00C8F91F /* cacert.pem */; };
14FFBAA01E29361A00EA55AF /* ExternalAccessory.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 14FFBA9F1E29361A00EA55AF /* ExternalAccessory.framework */; };
14FFBAA11E29362900EA55AF /* ExternalAccessory.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 14FFBA9F1E29361A00EA55AF /* ExternalAccessory.framework */; };
/* End PBXBuildFile section */
/* Begin PBXBuildRule section */
14905C701DF991FB002AE61B /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
filePatterns = "*.ice";
fileType = pattern.proxy;
isEditable = 1;
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).m",
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).h",
);
script = "#export ICE_BIN_DIST=all\n../../../../scripts/ice-builder-xcode-wrapper";
};
14B7DF791E043085001D0109 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
filePatterns = "*.ice";
fileType = pattern.proxy;
isEditable = 1;
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).m",
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).h",
);
script = "#export ICE_BIN_DIST=all\n../../../../scripts/ice-builder-xcode-wrapper";
};
/* End PBXBuildRule section */
/* Begin PBXFileReference section */
140C3B811E02FCE000142503 /* AllTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllTests.m; sourceTree = "<group>"; };
140C3B821E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3B831E02FCE000142503 /* MetricsTest.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MetricsTest.ice; sourceTree = "<group>"; };
140C3B841E02FCE000142503 /* Server.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Server.m; sourceTree = "<group>"; };
140C3B851E02FCE000142503 /* TestI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestI.h; sourceTree = "<group>"; };
140C3B861E02FCE000142503 /* TestI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestI.m; sourceTree = "<group>"; };
140C3B881E02FCE000142503 /* AllTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllTests.m; sourceTree = "<group>"; };
140C3B891E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3B8C1E02FCE000142503 /* ObjectsTest.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ObjectsTest.ice; sourceTree = "<group>"; };
140C3B8D1E02FCE000142503 /* Server.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Server.m; sourceTree = "<group>"; };
140C3B8E1E02FCE000142503 /* TestI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestI.h; sourceTree = "<group>"; };
140C3B8F1E02FCE000142503 /* TestI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestI.m; sourceTree = "<group>"; };
140C3B911E02FCE000142503 /* AllTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllTests.m; sourceTree = "<group>"; };
140C3B921E02FCE000142503 /* BatchOneways.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BatchOneways.m; sourceTree = "<group>"; };
140C3B931E02FCE000142503 /* BatchOnewaysAMI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BatchOnewaysAMI.m; sourceTree = "<group>"; };
140C3B941E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3B971E02FCE000142503 /* Oneways.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Oneways.m; sourceTree = "<group>"; };
140C3B991E02FCE000142503 /* OperationsTest.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = OperationsTest.ice; sourceTree = "<group>"; };
140C3B9A1E02FCE000142503 /* Server.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Server.m; sourceTree = "<group>"; };
140C3B9B1E02FCE000142503 /* TestI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestI.h; sourceTree = "<group>"; };
140C3B9C1E02FCE000142503 /* TestI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestI.m; sourceTree = "<group>"; };
140C3B9D1E02FCE000142503 /* Twoways.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Twoways.m; sourceTree = "<group>"; };
140C3BA01E02FCE000142503 /* AllTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllTests.m; sourceTree = "<group>"; };
140C3BA11E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3BA21E02FCE000142503 /* OptionalTest.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = OptionalTest.ice; sourceTree = "<group>"; };
140C3BA31E02FCE000142503 /* Server.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Server.m; sourceTree = "<group>"; };
140C3BA41E02FCE000142503 /* TestI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestI.h; sourceTree = "<group>"; };
140C3BA51E02FCE000142503 /* TestI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestI.m; sourceTree = "<group>"; };
140C3BA71E02FCE000142503 /* AllTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllTests.m; sourceTree = "<group>"; };
140C3BA81E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3BAA1E02FCE000142503 /* ProxyTest.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ProxyTest.ice; sourceTree = "<group>"; };
140C3BAB1E02FCE000142503 /* Server.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Server.m; sourceTree = "<group>"; };
140C3BAC1E02FCE000142503 /* TestI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestI.h; sourceTree = "<group>"; };
140C3BAD1E02FCE000142503 /* TestI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestI.m; sourceTree = "<group>"; };
140C3BAF1E02FCE000142503 /* AllTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllTests.m; sourceTree = "<group>"; };
140C3BB01E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3BB21E02FCE000142503 /* RetryTest.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = RetryTest.ice; sourceTree = "<group>"; };
140C3BB31E02FCE000142503 /* Server.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Server.m; sourceTree = "<group>"; };
140C3BB41E02FCE000142503 /* TestI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestI.h; sourceTree = "<group>"; };
140C3BB51E02FCE000142503 /* TestI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestI.m; sourceTree = "<group>"; };
140C3BB71E02FCE000142503 /* AllTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllTests.m; sourceTree = "<group>"; };
140C3BB81E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3BBB1E02FCE000142503 /* ServantLocatorI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ServantLocatorI.h; sourceTree = "<group>"; };
140C3BBC1E02FCE000142503 /* ServantLocatorI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ServantLocatorI.m; sourceTree = "<group>"; };
140C3BBD1E02FCE000142503 /* ServantLocatorTest.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ServantLocatorTest.ice; sourceTree = "<group>"; };
140C3BBE1E02FCE000142503 /* Server.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Server.m; sourceTree = "<group>"; };
140C3BBF1E02FCE000142503 /* TestI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestI.h; sourceTree = "<group>"; };
140C3BC01E02FCE000142503 /* TestI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestI.m; sourceTree = "<group>"; };
140C3BC21E02FCE000142503 /* AllTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllTests.m; sourceTree = "<group>"; };
140C3BC31E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3BC51E02FCE000142503 /* ServicesTest.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ServicesTest.ice; sourceTree = "<group>"; };
140C3BC71E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3BC81E02FCE000142503 /* StreamTest.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = StreamTest.ice; sourceTree = "<group>"; };
140C3BCA1E02FCE000142503 /* AllTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllTests.m; sourceTree = "<group>"; };
140C3BCB1E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3BCC1E02FCE000142503 /* Server.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Server.m; sourceTree = "<group>"; };
140C3BCD1E02FCE000142503 /* TestI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestI.h; sourceTree = "<group>"; };
140C3BCE1E02FCE000142503 /* TestI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestI.m; sourceTree = "<group>"; };
140C3BCF1E02FCE000142503 /* TimeoutTest.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = TimeoutTest.ice; sourceTree = "<group>"; };
140C3BD11E02FCE000142503 /* ACMTest.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ACMTest.ice; sourceTree = "<group>"; };
140C3BD21E02FCE000142503 /* AllTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllTests.m; sourceTree = "<group>"; };
140C3BD31E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3BD41E02FCE000142503 /* Server.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Server.m; sourceTree = "<group>"; };
140C3BD51E02FCE000142503 /* TestI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestI.h; sourceTree = "<group>"; };
140C3BD61E02FCE000142503 /* TestI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestI.m; sourceTree = "<group>"; };
140C3BD81E02FCE000142503 /* AdapterDeactivationTest.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AdapterDeactivationTest.ice; sourceTree = "<group>"; };
140C3BD91E02FCE000142503 /* AllTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllTests.m; sourceTree = "<group>"; };
140C3BDA1E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3BDC1E02FCE000142503 /* Server.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Server.m; sourceTree = "<group>"; };
140C3BDD1E02FCE000142503 /* TestI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestI.h; sourceTree = "<group>"; };
140C3BDE1E02FCE000142503 /* TestI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestI.m; sourceTree = "<group>"; };
140C3BE01E02FCE000142503 /* AdminTest.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AdminTest.ice; sourceTree = "<group>"; };
140C3BE11E02FCE000142503 /* AllTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllTests.m; sourceTree = "<group>"; };
140C3BE21E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3BE41E02FCE000142503 /* Server.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Server.m; sourceTree = "<group>"; };
140C3BE51E02FCE000142503 /* TestI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestI.h; sourceTree = "<group>"; };
140C3BE61E02FCE000142503 /* TestI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestI.m; sourceTree = "<group>"; };
140C3BE81E02FCE000142503 /* AllTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllTests.m; sourceTree = "<group>"; };
140C3BE91E02FCE000142503 /* AMITest.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AMITest.ice; sourceTree = "<group>"; };
140C3BEA1E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3BEC1E02FCE000142503 /* Server.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Server.m; sourceTree = "<group>"; };
140C3BED1E02FCE000142503 /* TestI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestI.h; sourceTree = "<group>"; };
140C3BEE1E02FCE000142503 /* TestI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestI.m; sourceTree = "<group>"; };
140C3BF01E02FCE000142503 /* AllTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllTests.m; sourceTree = "<group>"; };
140C3BF11E02FCE000142503 /* BindingTest.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BindingTest.ice; sourceTree = "<group>"; };
140C3BF21E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3BF31E02FCE000142503 /* Server.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Server.m; sourceTree = "<group>"; };
140C3BF41E02FCE000142503 /* TestI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestI.h; sourceTree = "<group>"; };
140C3BF51E02FCE000142503 /* TestI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestI.m; sourceTree = "<group>"; };
140C3BF71E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3BF81E02FCE000142503 /* DefaultServantTest.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DefaultServantTest.ice; sourceTree = "<group>"; };
140C3BFA1E02FCE000142503 /* TestI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestI.h; sourceTree = "<group>"; };
140C3BFB1E02FCE000142503 /* TestI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestI.m; sourceTree = "<group>"; };
140C3BFD1E02FCE000142503 /* AllTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllTests.m; sourceTree = "<group>"; };
140C3BFE1E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3BFF1E02FCE000142503 /* DefaultValueTest.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DefaultValueTest.ice; sourceTree = "<group>"; };
140C3C011E02FCE000142503 /* AllTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllTests.m; sourceTree = "<group>"; };
140C3C021E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3C041E02FCE000142503 /* DispatcherTest.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DispatcherTest.ice; sourceTree = "<group>"; };
140C3C051E02FCE000142503 /* Server.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Server.m; sourceTree = "<group>"; };
140C3C061E02FCE000142503 /* TestI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestI.h; sourceTree = "<group>"; };
140C3C071E02FCE000142503 /* TestI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestI.m; sourceTree = "<group>"; };
140C3C091E02FCE000142503 /* AllTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllTests.m; sourceTree = "<group>"; };
140C3C0A1E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3C0B1E02FCE000142503 /* EnumTest.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EnumTest.ice; sourceTree = "<group>"; };
140C3C0C1E02FCE000142503 /* Server.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Server.m; sourceTree = "<group>"; };
140C3C0D1E02FCE000142503 /* TestI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestI.h; sourceTree = "<group>"; };
140C3C0E1E02FCE000142503 /* TestI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestI.m; sourceTree = "<group>"; };
140C3C101E02FCE000142503 /* AllTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllTests.m; sourceTree = "<group>"; };
140C3C111E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3C131E02FCE000142503 /* ExceptionsTest.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ExceptionsTest.ice; sourceTree = "<group>"; };
140C3C141E02FCE000142503 /* Server.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Server.m; sourceTree = "<group>"; };
140C3C151E02FCE000142503 /* TestI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestI.h; sourceTree = "<group>"; };
140C3C161E02FCE000142503 /* TestI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestI.m; sourceTree = "<group>"; };
140C3C181E02FCE000142503 /* AllTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllTests.m; sourceTree = "<group>"; };
140C3C191E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3C1B1E02FCE000142503 /* FacetsTest.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FacetsTest.ice; sourceTree = "<group>"; };
140C3C1C1E02FCE000142503 /* Server.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Server.m; sourceTree = "<group>"; };
140C3C1D1E02FCE000142503 /* TestI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestI.h; sourceTree = "<group>"; };
140C3C1E1E02FCE000142503 /* TestI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestI.m; sourceTree = "<group>"; };
140C3C271E02FCE000142503 /* AllTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllTests.m; sourceTree = "<group>"; };
140C3C281E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3C291E02FCE000142503 /* HashTest.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = HashTest.ice; sourceTree = "<group>"; };
140C3C2B1E02FCE000142503 /* AllTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllTests.m; sourceTree = "<group>"; };
140C3C2C1E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3C2D1E02FCE000142503 /* HoldTest.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = HoldTest.ice; sourceTree = "<group>"; };
140C3C2E1E02FCE000142503 /* Server.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Server.m; sourceTree = "<group>"; };
140C3C2F1E02FCE000142503 /* TestI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestI.h; sourceTree = "<group>"; };
140C3C301E02FCE000142503 /* TestI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestI.m; sourceTree = "<group>"; };
140C3C321E02FCE000142503 /* AllTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllTests.m; sourceTree = "<group>"; };
140C3C331E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3C341E02FCE000142503 /* InfoTest.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = InfoTest.ice; sourceTree = "<group>"; };
140C3C361E02FCE000142503 /* Server.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Server.m; sourceTree = "<group>"; };
140C3C371E02FCE000142503 /* TestI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestI.h; sourceTree = "<group>"; };
140C3C381E02FCE000142503 /* TestI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestI.m; sourceTree = "<group>"; };
140C3C3A1E02FCE000142503 /* AllTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllTests.m; sourceTree = "<group>"; };
140C3C3B1E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3C3E1E02FCE000142503 /* Server.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Server.m; sourceTree = "<group>"; };
140C3C3F1E02FCE000142503 /* TestI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestI.h; sourceTree = "<group>"; };
140C3C401E02FCE000142503 /* TestI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestI.m; sourceTree = "<group>"; };
140C3C421E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3C431E02FCE000142503 /* InterceptorI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InterceptorI.h; sourceTree = "<group>"; };
140C3C441E02FCE000142503 /* InterceptorI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InterceptorI.m; sourceTree = "<group>"; };
140C3C471E02FCE000142503 /* MyObjectI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyObjectI.h; sourceTree = "<group>"; };
140C3C481E02FCE000142503 /* MyObjectI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyObjectI.m; sourceTree = "<group>"; };
140C3C4A1E02FCE000142503 /* AllTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllTests.m; sourceTree = "<group>"; };
140C3C4B1E02FCE000142503 /* BlobjectI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BlobjectI.h; sourceTree = "<group>"; };
140C3C4C1E02FCE000142503 /* BlobjectI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BlobjectI.m; sourceTree = "<group>"; };
140C3C4D1E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3C4E1E02FCE000142503 /* InvokeTest.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = InvokeTest.ice; sourceTree = "<group>"; };
140C3C501E02FCE000142503 /* Server.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Server.m; sourceTree = "<group>"; };
140C3C521E02FCE000142503 /* AllTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllTests.m; sourceTree = "<group>"; };
140C3C531E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3C541E02FCE000142503 /* LocationTest.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LocationTest.ice; sourceTree = "<group>"; };
140C3C561E02FCE000142503 /* Server.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Server.m; sourceTree = "<group>"; };
140C3C571E02FCE000142503 /* ServerLocator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ServerLocator.h; sourceTree = "<group>"; };
140C3C581E02FCE000142503 /* ServerLocator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ServerLocator.m; sourceTree = "<group>"; };
140C3C591E02FCE000142503 /* TestI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestI.h; sourceTree = "<group>"; };
140C3C5A1E02FCE000142503 /* TestI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestI.m; sourceTree = "<group>"; };
140C3C5D1E02FCE000142503 /* AllTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllTests.m; sourceTree = "<group>"; };
140C3C5E1E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3C601E02FCE000142503 /* Server.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Server.m; sourceTree = "<group>"; };
140C3C611E02FCE000142503 /* SlicingExceptionsTestClient.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SlicingExceptionsTestClient.ice; sourceTree = "<group>"; };
140C3C621E02FCE000142503 /* SlicingExceptionsTestServer.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SlicingExceptionsTestServer.ice; sourceTree = "<group>"; };
140C3C631E02FCE000142503 /* TestI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestI.h; sourceTree = "<group>"; };
140C3C641E02FCE000142503 /* TestI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestI.m; sourceTree = "<group>"; };
140C3C661E02FCE000142503 /* AllTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AllTests.m; sourceTree = "<group>"; };
140C3C671E02FCE000142503 /* Client.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Client.m; sourceTree = "<group>"; };
140C3C691E02FCE000142503 /* Server.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Server.m; sourceTree = "<group>"; };
140C3C6A1E02FCE000142503 /* SlicingObjectsTestClient.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SlicingObjectsTestClient.ice; sourceTree = "<group>"; };
140C3C6B1E02FCE000142503 /* SlicingObjectsTestServer.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SlicingObjectsTestServer.ice; sourceTree = "<group>"; };
140C3C6C1E02FCE000142503 /* TestI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestI.h; sourceTree = "<group>"; };
140C3C6D1E02FCE000142503 /* TestI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestI.m; sourceTree = "<group>"; };
140C3E0C1E03004300142503 /* InheritanceTest.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = InheritanceTest.ice; sourceTree = "<group>"; };
140C3E101E03007900142503 /* InterceptorTest.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = InterceptorTest.ice; sourceTree = "<group>"; };
140C3E141E03019000142503 /* TestCommon.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TestCommon.m; path = ../../../Common/TestCommon.m; sourceTree = "<group>"; };
140C3E171E03E87D00142503 /* Collocated.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Collocated.m; sourceTree = "<group>"; };
140C3E191E03EAAA00142503 /* Collocated.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Collocated.m; sourceTree = "<group>"; };
140C3E1B1E03EABE00142503 /* Collocated.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Collocated.m; sourceTree = "<group>"; };
140C3E1D1E03EAD000142503 /* Collocated.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Collocated.m; sourceTree = "<group>"; };
140C3E1F1E03EAF300142503 /* Collocated.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Collocated.m; sourceTree = "<group>"; };
140C3E211E03EBE000142503 /* Collocated.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Collocated.m; sourceTree = "<group>"; };
143A09AE1EB3895D00C8F91F /* cacert.pem */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = cacert.pem; path = ../../../../certs/cacert.pem; sourceTree = "<group>"; };
145C4BE31E36061900A855C7 /* TestIntfI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestIntfI.m; sourceTree = "<group>"; };
145C4BE41E36061900A855C7 /* ObjectsDerived.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ObjectsDerived.ice; sourceTree = "<group>"; };
145C4BE51E36061900A855C7 /* ObjectsDerivedEx.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ObjectsDerivedEx.ice; sourceTree = "<group>"; };
146148771EE15DFE000ECDB3 /* OnewaysAMI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OnewaysAMI.m; sourceTree = "<group>"; };
146148781EE15DFE000ECDB3 /* TwowaysAMI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TwowaysAMI.m; sourceTree = "<group>"; };
148ABA171DFB12C800594F70 /* client.p12 */ = {isa = PBXFileReference; lastKnownFileType = file; name = client.p12; path = ../../../../certs/client.p12; sourceTree = "<group>"; };
148ABA181DFB12C800594F70 /* server.p12 */ = {isa = PBXFileReference; lastKnownFileType = file; name = server.p12; path = ../../../../certs/server.p12; sourceTree = "<group>"; };
148ABA1E1DFB18A300594F70 /* Objective-C Test Controller.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "Objective-C Test Controller.entitlements"; sourceTree = "<group>"; };
14905C511DF98FD8002AE61B /* Objective-C Test Controller.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Objective-C Test Controller.app"; sourceTree = BUILT_PRODUCTS_DIR; };
14905C551DF98FD8002AE61B /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
14905C571DF98FD8002AE61B /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
14905C581DF98FD8002AE61B /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
14905C5A1DF98FD8002AE61B /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
14905C5B1DF98FD8002AE61B /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
14905C5E1DF98FD8002AE61B /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
14905C601DF98FD8002AE61B /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
14905C631DF98FD8002AE61B /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
14905C651DF98FD8002AE61B /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
14905C6D1DF991F2002AE61B /* Controller.ice */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = Controller.ice; path = ../../../../../scripts/Controller.ice; sourceTree = "<group>"; };
14B7DEA11E04103F001D0109 /* Collocated.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Collocated.m; sourceTree = "<group>"; };
14B7DEA31E04113A001D0109 /* Collocated.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Collocated.m; sourceTree = "<group>"; };
14B7DEA51E041157001D0109 /* Collocated.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Collocated.m; sourceTree = "<group>"; };
14B7DEA71E041173001D0109 /* Collocated.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Collocated.m; sourceTree = "<group>"; };
14B7DEA91E04119D001D0109 /* Collocated.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Collocated.m; sourceTree = "<group>"; };
14B7DF7D1E043085001D0109 /* Objective-C ARC Test Controller.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Objective-C ARC Test Controller.app"; sourceTree = BUILT_PRODUCTS_DIR; };
14FFBA9F1E29361A00EA55AF /* ExternalAccessory.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ExternalAccessory.framework; path = System/Library/Frameworks/ExternalAccessory.framework; sourceTree = SDKROOT; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
14905C4E1DF98FD8002AE61B /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
14FFBAA01E29361A00EA55AF /* ExternalAccessory.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
14B7DF511E043085001D0109 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
14FFBAA11E29362900EA55AF /* ExternalAccessory.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
140C31281E02F7FF00142503 /* Tests */ = {
isa = PBXGroup;
children = (
140C3B801E02FCE000142503 /* metrics */,
140C3B871E02FCE000142503 /* objects */,
140C3B901E02FCE000142503 /* operations */,
140C3B9F1E02FCE000142503 /* optional */,
140C3BA61E02FCE000142503 /* proxy */,
140C3BAE1E02FCE000142503 /* retry */,
140C3BB61E02FCE000142503 /* servantLocator */,
140C3BC11E02FCE000142503 /* services */,
140C3BC61E02FCE000142503 /* stream */,
140C3BC91E02FCE000142503 /* timeout */,
140C3BD01E02FCE000142503 /* acm */,
140C3BD71E02FCE000142503 /* adapterDeactivation */,
140C3BDF1E02FCE000142503 /* admin */,
140C3BE71E02FCE000142503 /* ami */,
140C3BEF1E02FCE000142503 /* binding */,
140C3BF61E02FCE000142503 /* defaultServant */,
140C3BFC1E02FCE000142503 /* defaultValue */,
140C3C001E02FCE000142503 /* dispatcher */,
140C3C081E02FCE000142503 /* enums */,
140C3C0F1E02FCE000142503 /* exceptions */,
140C3C171E02FCE000142503 /* facets */,
140C3C261E02FCE000142503 /* hash */,
140C3C2A1E02FCE000142503 /* hold */,
140C3C311E02FCE000142503 /* info */,
140C3C391E02FCE000142503 /* inheritance */,
140C3C411E02FCE000142503 /* interceptor */,
140C3C491E02FCE000142503 /* invoke */,
140C3C511E02FCE000142503 /* location */,
140C3C5B1E02FCE000142503 /* slicing */,
);
name = Tests;
sourceTree = "<group>";
};
140C3B801E02FCE000142503 /* metrics */ = {
isa = PBXGroup;
children = (
140C3B811E02FCE000142503 /* AllTests.m */,
140C3B821E02FCE000142503 /* Client.m */,
140C3B831E02FCE000142503 /* MetricsTest.ice */,
140C3B841E02FCE000142503 /* Server.m */,
140C3B851E02FCE000142503 /* TestI.h */,
140C3B861E02FCE000142503 /* TestI.m */,
);
name = metrics;
path = ../../Ice/metrics;
sourceTree = "<group>";
};
140C3B871E02FCE000142503 /* objects */ = {
isa = PBXGroup;
children = (
145C4BE31E36061900A855C7 /* TestIntfI.m */,
145C4BE41E36061900A855C7 /* ObjectsDerived.ice */,
145C4BE51E36061900A855C7 /* ObjectsDerivedEx.ice */,
140C3E1D1E03EAD000142503 /* Collocated.m */,
140C3B881E02FCE000142503 /* AllTests.m */,
140C3B891E02FCE000142503 /* Client.m */,
140C3B8C1E02FCE000142503 /* ObjectsTest.ice */,
140C3B8D1E02FCE000142503 /* Server.m */,
140C3B8E1E02FCE000142503 /* TestI.h */,
140C3B8F1E02FCE000142503 /* TestI.m */,
);
name = objects;
path = ../../Ice/objects;
sourceTree = "<group>";
};
140C3B901E02FCE000142503 /* operations */ = {
isa = PBXGroup;
children = (
146148771EE15DFE000ECDB3 /* OnewaysAMI.m */,
146148781EE15DFE000ECDB3 /* TwowaysAMI.m */,
140C3E171E03E87D00142503 /* Collocated.m */,
140C3B911E02FCE000142503 /* AllTests.m */,
140C3B921E02FCE000142503 /* BatchOneways.m */,
140C3B931E02FCE000142503 /* BatchOnewaysAMI.m */,
140C3B941E02FCE000142503 /* Client.m */,
140C3B971E02FCE000142503 /* Oneways.m */,
140C3B991E02FCE000142503 /* OperationsTest.ice */,
140C3B9A1E02FCE000142503 /* Server.m */,
140C3B9B1E02FCE000142503 /* TestI.h */,
140C3B9C1E02FCE000142503 /* TestI.m */,
140C3B9D1E02FCE000142503 /* Twoways.m */,
);
name = operations;
path = ../../Ice/operations;
sourceTree = "<group>";
};
140C3B9F1E02FCE000142503 /* optional */ = {
isa = PBXGroup;
children = (
140C3BA01E02FCE000142503 /* AllTests.m */,
140C3BA11E02FCE000142503 /* Client.m */,
140C3BA21E02FCE000142503 /* OptionalTest.ice */,
140C3BA31E02FCE000142503 /* Server.m */,
140C3BA41E02FCE000142503 /* TestI.h */,
140C3BA51E02FCE000142503 /* TestI.m */,
);
name = optional;
path = ../../Ice/optional;
sourceTree = "<group>";
};
140C3BA61E02FCE000142503 /* proxy */ = {
isa = PBXGroup;
children = (
140C3E191E03EAAA00142503 /* Collocated.m */,
140C3BA71E02FCE000142503 /* AllTests.m */,
140C3BA81E02FCE000142503 /* Client.m */,
140C3BAA1E02FCE000142503 /* ProxyTest.ice */,
140C3BAB1E02FCE000142503 /* Server.m */,
140C3BAC1E02FCE000142503 /* TestI.h */,
140C3BAD1E02FCE000142503 /* TestI.m */,
);
name = proxy;
path = ../../Ice/proxy;
sourceTree = "<group>";
};
140C3BAE1E02FCE000142503 /* retry */ = {
isa = PBXGroup;
children = (
14B7DEA71E041173001D0109 /* Collocated.m */,
140C3BAF1E02FCE000142503 /* AllTests.m */,
140C3BB01E02FCE000142503 /* Client.m */,
140C3BB21E02FCE000142503 /* RetryTest.ice */,
140C3BB31E02FCE000142503 /* Server.m */,
140C3BB41E02FCE000142503 /* TestI.h */,
140C3BB51E02FCE000142503 /* TestI.m */,
);
name = retry;
path = ../../Ice/retry;
sourceTree = "<group>";
};
140C3BB61E02FCE000142503 /* servantLocator */ = {
isa = PBXGroup;
children = (
14B7DEA91E04119D001D0109 /* Collocated.m */,
140C3BB71E02FCE000142503 /* AllTests.m */,
140C3BB81E02FCE000142503 /* Client.m */,
140C3BBB1E02FCE000142503 /* ServantLocatorI.h */,
140C3BBC1E02FCE000142503 /* ServantLocatorI.m */,
140C3BBD1E02FCE000142503 /* ServantLocatorTest.ice */,
140C3BBE1E02FCE000142503 /* Server.m */,
140C3BBF1E02FCE000142503 /* TestI.h */,
140C3BC01E02FCE000142503 /* TestI.m */,
);
name = servantLocator;
path = ../../Ice/servantLocator;
sourceTree = "<group>";
};
140C3BC11E02FCE000142503 /* services */ = {
isa = PBXGroup;
children = (
140C3BC21E02FCE000142503 /* AllTests.m */,
140C3BC31E02FCE000142503 /* Client.m */,
140C3BC51E02FCE000142503 /* ServicesTest.ice */,
);
name = services;
path = ../../Ice/services;
sourceTree = "<group>";
};
140C3BC61E02FCE000142503 /* stream */ = {
isa = PBXGroup;
children = (
140C3BC71E02FCE000142503 /* Client.m */,
140C3BC81E02FCE000142503 /* StreamTest.ice */,
);
name = stream;
path = ../../Ice/stream;
sourceTree = "<group>";
};
140C3BC91E02FCE000142503 /* timeout */ = {
isa = PBXGroup;
children = (
140C3BCA1E02FCE000142503 /* AllTests.m */,
140C3BCB1E02FCE000142503 /* Client.m */,
140C3BCC1E02FCE000142503 /* Server.m */,
140C3BCD1E02FCE000142503 /* TestI.h */,
140C3BCE1E02FCE000142503 /* TestI.m */,
140C3BCF1E02FCE000142503 /* TimeoutTest.ice */,
);
name = timeout;
path = ../../Ice/timeout;
sourceTree = "<group>";
};
140C3BD01E02FCE000142503 /* acm */ = {
isa = PBXGroup;
children = (
140C3BD11E02FCE000142503 /* ACMTest.ice */,
140C3BD21E02FCE000142503 /* AllTests.m */,
140C3BD31E02FCE000142503 /* Client.m */,
140C3BD41E02FCE000142503 /* Server.m */,
140C3BD51E02FCE000142503 /* TestI.h */,
140C3BD61E02FCE000142503 /* TestI.m */,
);
name = acm;
path = ../../Ice/acm;
sourceTree = "<group>";
};
140C3BD71E02FCE000142503 /* adapterDeactivation */ = {
isa = PBXGroup;
children = (
140C3E211E03EBE000142503 /* Collocated.m */,
140C3BD81E02FCE000142503 /* AdapterDeactivationTest.ice */,
140C3BD91E02FCE000142503 /* AllTests.m */,
140C3BDA1E02FCE000142503 /* Client.m */,
140C3BDC1E02FCE000142503 /* Server.m */,
140C3BDD1E02FCE000142503 /* TestI.h */,
140C3BDE1E02FCE000142503 /* TestI.m */,
);
name = adapterDeactivation;
path = ../../Ice/adapterDeactivation;
sourceTree = "<group>";
};
140C3BDF1E02FCE000142503 /* admin */ = {
isa = PBXGroup;
children = (
140C3BE01E02FCE000142503 /* AdminTest.ice */,
140C3BE11E02FCE000142503 /* AllTests.m */,
140C3BE21E02FCE000142503 /* Client.m */,
140C3BE41E02FCE000142503 /* Server.m */,
140C3BE51E02FCE000142503 /* TestI.h */,
140C3BE61E02FCE000142503 /* TestI.m */,
);
name = admin;
path = ../../Ice/admin;
sourceTree = "<group>";
};
140C3BE71E02FCE000142503 /* ami */ = {
isa = PBXGroup;
children = (
140C3E1B1E03EABE00142503 /* Collocated.m */,
140C3BE81E02FCE000142503 /* AllTests.m */,
140C3BE91E02FCE000142503 /* AMITest.ice */,
140C3BEA1E02FCE000142503 /* Client.m */,
140C3BEC1E02FCE000142503 /* Server.m */,
140C3BED1E02FCE000142503 /* TestI.h */,
140C3BEE1E02FCE000142503 /* TestI.m */,
);
name = ami;
path = ../../Ice/ami;
sourceTree = "<group>";
};
140C3BEF1E02FCE000142503 /* binding */ = {
isa = PBXGroup;
children = (
140C3BF01E02FCE000142503 /* AllTests.m */,
140C3BF11E02FCE000142503 /* BindingTest.ice */,
140C3BF21E02FCE000142503 /* Client.m */,
140C3BF31E02FCE000142503 /* Server.m */,
140C3BF41E02FCE000142503 /* TestI.h */,
140C3BF51E02FCE000142503 /* TestI.m */,
);
name = binding;
path = ../../Ice/binding;
sourceTree = "<group>";
};
140C3BF61E02FCE000142503 /* defaultServant */ = {
isa = PBXGroup;
children = (
140C3BF71E02FCE000142503 /* Client.m */,
140C3BF81E02FCE000142503 /* DefaultServantTest.ice */,
140C3BFA1E02FCE000142503 /* TestI.h */,
140C3BFB1E02FCE000142503 /* TestI.m */,
);
name = defaultServant;
path = ../../Ice/defaultServant;
sourceTree = "<group>";
};
140C3BFC1E02FCE000142503 /* defaultValue */ = {
isa = PBXGroup;
children = (
140C3BFD1E02FCE000142503 /* AllTests.m */,
140C3BFE1E02FCE000142503 /* Client.m */,
140C3BFF1E02FCE000142503 /* DefaultValueTest.ice */,
);
name = defaultValue;
path = ../../Ice/defaultValue;
sourceTree = "<group>";
};
140C3C001E02FCE000142503 /* dispatcher */ = {
isa = PBXGroup;
children = (
14B7DEA11E04103F001D0109 /* Collocated.m */,
140C3C011E02FCE000142503 /* AllTests.m */,
140C3C021E02FCE000142503 /* Client.m */,
140C3C041E02FCE000142503 /* DispatcherTest.ice */,
140C3C051E02FCE000142503 /* Server.m */,
140C3C061E02FCE000142503 /* TestI.h */,
140C3C071E02FCE000142503 /* TestI.m */,
);
name = dispatcher;
path = ../../Ice/dispatcher;
sourceTree = "<group>";
};
140C3C081E02FCE000142503 /* enums */ = {
isa = PBXGroup;
children = (
140C3C091E02FCE000142503 /* AllTests.m */,
140C3C0A1E02FCE000142503 /* Client.m */,
140C3C0B1E02FCE000142503 /* EnumTest.ice */,
140C3C0C1E02FCE000142503 /* Server.m */,
140C3C0D1E02FCE000142503 /* TestI.h */,
140C3C0E1E02FCE000142503 /* TestI.m */,
);
name = enums;
path = ../../Ice/enums;
sourceTree = "<group>";
};
140C3C0F1E02FCE000142503 /* exceptions */ = {
isa = PBXGroup;
children = (
140C3E1F1E03EAF300142503 /* Collocated.m */,
140C3C101E02FCE000142503 /* AllTests.m */,
140C3C111E02FCE000142503 /* Client.m */,
140C3C131E02FCE000142503 /* ExceptionsTest.ice */,
140C3C141E02FCE000142503 /* Server.m */,
140C3C151E02FCE000142503 /* TestI.h */,
140C3C161E02FCE000142503 /* TestI.m */,
);
name = exceptions;
path = ../../Ice/exceptions;
sourceTree = "<group>";
};
140C3C171E02FCE000142503 /* facets */ = {
isa = PBXGroup;
children = (
14B7DEA51E041157001D0109 /* Collocated.m */,
140C3C181E02FCE000142503 /* AllTests.m */,
140C3C191E02FCE000142503 /* Client.m */,
140C3C1B1E02FCE000142503 /* FacetsTest.ice */,
140C3C1C1E02FCE000142503 /* Server.m */,
140C3C1D1E02FCE000142503 /* TestI.h */,
140C3C1E1E02FCE000142503 /* TestI.m */,
);
name = facets;
path = ../../Ice/facets;
sourceTree = "<group>";
};
140C3C261E02FCE000142503 /* hash */ = {
isa = PBXGroup;
children = (
140C3C271E02FCE000142503 /* AllTests.m */,
140C3C281E02FCE000142503 /* Client.m */,
140C3C291E02FCE000142503 /* HashTest.ice */,
);
name = hash;
path = ../../Ice/hash;
sourceTree = "<group>";
};
140C3C2A1E02FCE000142503 /* hold */ = {
isa = PBXGroup;
children = (
140C3C2B1E02FCE000142503 /* AllTests.m */,
140C3C2C1E02FCE000142503 /* Client.m */,
140C3C2D1E02FCE000142503 /* HoldTest.ice */,
140C3C2E1E02FCE000142503 /* Server.m */,
140C3C2F1E02FCE000142503 /* TestI.h */,
140C3C301E02FCE000142503 /* TestI.m */,
);
name = hold;
path = ../../Ice/hold;
sourceTree = "<group>";
};
140C3C311E02FCE000142503 /* info */ = {
isa = PBXGroup;
children = (
140C3C321E02FCE000142503 /* AllTests.m */,
140C3C331E02FCE000142503 /* Client.m */,
140C3C341E02FCE000142503 /* InfoTest.ice */,
140C3C361E02FCE000142503 /* Server.m */,
140C3C371E02FCE000142503 /* TestI.h */,
140C3C381E02FCE000142503 /* TestI.m */,
);
name = info;
path = ../../Ice/info;
sourceTree = "<group>";
};
140C3C391E02FCE000142503 /* inheritance */ = {
isa = PBXGroup;
children = (
14B7DEA31E04113A001D0109 /* Collocated.m */,
140C3E0C1E03004300142503 /* InheritanceTest.ice */,
140C3C3A1E02FCE000142503 /* AllTests.m */,
140C3C3B1E02FCE000142503 /* Client.m */,
140C3C3E1E02FCE000142503 /* Server.m */,
140C3C3F1E02FCE000142503 /* TestI.h */,
140C3C401E02FCE000142503 /* TestI.m */,
);
name = inheritance;
path = ../../Ice/inheritance;
sourceTree = "<group>";
};
140C3C411E02FCE000142503 /* interceptor */ = {
isa = PBXGroup;
children = (
140C3E101E03007900142503 /* InterceptorTest.ice */,
140C3C421E02FCE000142503 /* Client.m */,
140C3C431E02FCE000142503 /* InterceptorI.h */,
140C3C441E02FCE000142503 /* InterceptorI.m */,
140C3C471E02FCE000142503 /* MyObjectI.h */,
140C3C481E02FCE000142503 /* MyObjectI.m */,
);
name = interceptor;
path = ../../Ice/interceptor;
sourceTree = "<group>";
};
140C3C491E02FCE000142503 /* invoke */ = {
isa = PBXGroup;
children = (
140C3C4A1E02FCE000142503 /* AllTests.m */,
140C3C4B1E02FCE000142503 /* BlobjectI.h */,
140C3C4C1E02FCE000142503 /* BlobjectI.m */,
140C3C4D1E02FCE000142503 /* Client.m */,
140C3C4E1E02FCE000142503 /* InvokeTest.ice */,
140C3C501E02FCE000142503 /* Server.m */,
);
name = invoke;
path = ../../Ice/invoke;
sourceTree = "<group>";
};
140C3C511E02FCE000142503 /* location */ = {
isa = PBXGroup;
children = (
140C3C521E02FCE000142503 /* AllTests.m */,
140C3C531E02FCE000142503 /* Client.m */,
140C3C541E02FCE000142503 /* LocationTest.ice */,
140C3C561E02FCE000142503 /* Server.m */,
140C3C571E02FCE000142503 /* ServerLocator.h */,
140C3C581E02FCE000142503 /* ServerLocator.m */,
140C3C591E02FCE000142503 /* TestI.h */,
140C3C5A1E02FCE000142503 /* TestI.m */,
);
name = location;
path = ../../Ice/location;
sourceTree = "<group>";
};
140C3C5B1E02FCE000142503 /* slicing */ = {
isa = PBXGroup;
children = (
140C3C5C1E02FCE000142503 /* exceptions */,
140C3C651E02FCE000142503 /* objects */,
);
name = slicing;
path = ../../Ice/slicing;
sourceTree = "<group>";
};
140C3C5C1E02FCE000142503 /* exceptions */ = {
isa = PBXGroup;
children = (
140C3C5D1E02FCE000142503 /* AllTests.m */,
140C3C5E1E02FCE000142503 /* Client.m */,
140C3C601E02FCE000142503 /* Server.m */,
140C3C611E02FCE000142503 /* SlicingExceptionsTestClient.ice */,
140C3C621E02FCE000142503 /* SlicingExceptionsTestServer.ice */,
140C3C631E02FCE000142503 /* TestI.h */,
140C3C641E02FCE000142503 /* TestI.m */,
);
path = exceptions;
sourceTree = "<group>";
};
140C3C651E02FCE000142503 /* objects */ = {
isa = PBXGroup;
children = (
140C3C661E02FCE000142503 /* AllTests.m */,
140C3C671E02FCE000142503 /* Client.m */,
140C3C691E02FCE000142503 /* Server.m */,
140C3C6A1E02FCE000142503 /* SlicingObjectsTestClient.ice */,
140C3C6B1E02FCE000142503 /* SlicingObjectsTestServer.ice */,
140C3C6C1E02FCE000142503 /* TestI.h */,
140C3C6D1E02FCE000142503 /* TestI.m */,
);
path = objects;
sourceTree = "<group>";
};
148ABA151DFB12A500594F70 /* Resources */ = {
isa = PBXGroup;
children = (
143A09AE1EB3895D00C8F91F /* cacert.pem */,
148ABA171DFB12C800594F70 /* client.p12 */,
148ABA181DFB12C800594F70 /* server.p12 */,
);
name = Resources;
sourceTree = "<group>";
};
14905C481DF98FD8002AE61B = {
isa = PBXGroup;
children = (
140C31281E02F7FF00142503 /* Tests */,
148ABA1E1DFB18A300594F70 /* Objective-C Test Controller.entitlements */,
148ABA151DFB12A500594F70 /* Resources */,
14905C531DF98FD8002AE61B /* Classes */,
14905C521DF98FD8002AE61B /* Products */,
14FFBA9E1E29361A00EA55AF /* Frameworks */,
);
sourceTree = "<group>";
};
14905C521DF98FD8002AE61B /* Products */ = {
isa = PBXGroup;
children = (
14905C511DF98FD8002AE61B /* Objective-C Test Controller.app */,
14B7DF7D1E043085001D0109 /* Objective-C ARC Test Controller.app */,
);
name = Products;
sourceTree = "<group>";
};
14905C531DF98FD8002AE61B /* Classes */ = {
isa = PBXGroup;
children = (
140C3E141E03019000142503 /* TestCommon.m */,
14905C6D1DF991F2002AE61B /* Controller.ice */,
14905C571DF98FD8002AE61B /* AppDelegate.h */,
14905C581DF98FD8002AE61B /* AppDelegate.m */,
14905C5A1DF98FD8002AE61B /* ViewController.h */,
14905C5B1DF98FD8002AE61B /* ViewController.m */,
14905C5D1DF98FD8002AE61B /* Main.storyboard */,
14905C601DF98FD8002AE61B /* Assets.xcassets */,
14905C621DF98FD8002AE61B /* LaunchScreen.storyboard */,
14905C651DF98FD8002AE61B /* Info.plist */,
14905C541DF98FD8002AE61B /* Supporting Files */,
);
path = Classes;
sourceTree = "<group>";
};
14905C541DF98FD8002AE61B /* Supporting Files */ = {
isa = PBXGroup;
children = (
14905C551DF98FD8002AE61B /* main.m */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
14FFBA9E1E29361A00EA55AF /* Frameworks */ = {
isa = PBXGroup;
children = (
14FFBA9F1E29361A00EA55AF /* ExternalAccessory.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
14905C501DF98FD8002AE61B /* Objective-C Test Controller */ = {
isa = PBXNativeTarget;
buildConfigurationList = 14905C681DF98FD8002AE61B /* Build configuration list for PBXNativeTarget "Objective-C Test Controller" */;
buildPhases = (
14905C4D1DF98FD8002AE61B /* Sources */,
14905C4E1DF98FD8002AE61B /* Frameworks */,
14905C4F1DF98FD8002AE61B /* Resources */,
);
buildRules = (
14905C701DF991FB002AE61B /* PBXBuildRule */,
);
dependencies = (
);
name = "Objective-C Test Controller";
productName = "C++ Test Controller";
productReference = 14905C511DF98FD8002AE61B /* Objective-C Test Controller.app */;
productType = "com.apple.product-type.application";
};
14B7DEAB1E043085001D0109 /* Objective-C ARC Test Controller */ = {
isa = PBXNativeTarget;
buildConfigurationList = 14B7DF7A1E043085001D0109 /* Build configuration list for PBXNativeTarget "Objective-C ARC Test Controller" */;
buildPhases = (
14B7DEAC1E043085001D0109 /* Sources */,
14B7DF511E043085001D0109 /* Frameworks */,
14B7DF521E043085001D0109 /* Resources */,
);
buildRules = (
14B7DF791E043085001D0109 /* PBXBuildRule */,
);
dependencies = (
);
name = "Objective-C ARC Test Controller";
productName = "C++ Test Controller";
productReference = 14B7DF7D1E043085001D0109 /* Objective-C ARC Test Controller.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
14905C491DF98FD8002AE61B /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0820;
ORGANIZATIONNAME = "ZeroC, Inc.";
TargetAttributes = {
14905C501DF98FD8002AE61B = {
CreatedOnToolsVersion = 8.1;
ProvisioningStyle = Automatic;
SystemCapabilities = {
com.apple.Push = {
enabled = 0;
};
};
};
14B7DEAB1E043085001D0109 = {
ProvisioningStyle = Automatic;
SystemCapabilities = {
com.apple.Push = {
enabled = 0;
};
};
};
};
};
buildConfigurationList = 14905C4C1DF98FD8002AE61B /* Build configuration list for PBXProject "Objective-C Test Controller" */;
compatibilityVersion = "Xcode 8.0";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = 14905C481DF98FD8002AE61B;
productRefGroup = 14905C521DF98FD8002AE61B /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
14905C501DF98FD8002AE61B /* Objective-C Test Controller */,
14B7DEAB1E043085001D0109 /* Objective-C ARC Test Controller */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
14905C4F1DF98FD8002AE61B /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
148ABA1A1DFB12C800594F70 /* client.p12 in Resources */,
14905C641DF98FD8002AE61B /* LaunchScreen.storyboard in Resources */,
148ABA1B1DFB12C800594F70 /* server.p12 in Resources */,
143A09AF1EB3895D00C8F91F /* cacert.pem in Resources */,
14905C611DF98FD8002AE61B /* Assets.xcassets in Resources */,
14905C5F1DF98FD8002AE61B /* Main.storyboard in Resources */,
145C4BE81E36061900A855C7 /* ObjectsDerivedEx.ice in Resources */,
145C4BE71E36061900A855C7 /* ObjectsDerived.ice in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
14B7DF521E043085001D0109 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
14C8F6201EB39722009B4CEC /* cacert.pem in Resources */,
14B7DF561E043085001D0109 /* client.p12 in Resources */,
14B7DF5F1E043085001D0109 /* LaunchScreen.storyboard in Resources */,
14B7DF641E043085001D0109 /* server.p12 in Resources */,
14B7DF681E043085001D0109 /* Assets.xcassets in Resources */,
14B7DF721E043085001D0109 /* Main.storyboard in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
14905C4D1DF98FD8002AE61B /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
145C4BEB1E36069B00A855C7 /* ObjectsDerived.ice in Sources */,
145C4BEC1E36069B00A855C7 /* ObjectsDerivedEx.ice in Sources */,
140C3E0F1E03005200142503 /* InheritanceTest.ice in Sources */,
140C3DED1E02FF0900142503 /* MetricsTest.ice in Sources */,
140C3DEE1E02FF0900142503 /* ObjectsTest.ice in Sources */,
140C3DEF1E02FF0900142503 /* OperationsTest.ice in Sources */,
140C3E131E03007D00142503 /* InterceptorTest.ice in Sources */,
140C3DF01E02FF0900142503 /* OptionalTest.ice in Sources */,
140C3DF11E02FF0900142503 /* ProxyTest.ice in Sources */,
140C3DF21E02FF0900142503 /* RetryTest.ice in Sources */,
140C3DF31E02FF0900142503 /* ServantLocatorTest.ice in Sources */,
140C3DF41E02FF0900142503 /* ServicesTest.ice in Sources */,
140C3DF51E02FF0900142503 /* StreamTest.ice in Sources */,
140C3DF61E02FF0900142503 /* TimeoutTest.ice in Sources */,
140C3DF71E02FF0900142503 /* ACMTest.ice in Sources */,
140C3DF81E02FF0900142503 /* AdapterDeactivationTest.ice in Sources */,
140C3DF91E02FF0900142503 /* AdminTest.ice in Sources */,
145C4BE61E36061900A855C7 /* TestIntfI.m in Sources */,
140C3DFA1E02FF0900142503 /* AMITest.ice in Sources */,
140C3DFB1E02FF0900142503 /* BindingTest.ice in Sources */,
140C3DFC1E02FF0900142503 /* DefaultServantTest.ice in Sources */,
140C3DFD1E02FF0900142503 /* DefaultValueTest.ice in Sources */,
140C3DFE1E02FF0900142503 /* DispatcherTest.ice in Sources */,
140C3DFF1E02FF0900142503 /* EnumTest.ice in Sources */,
140C3E001E02FF0900142503 /* ExceptionsTest.ice in Sources */,
140C3E011E02FF0900142503 /* FacetsTest.ice in Sources */,
140C3E031E02FF0900142503 /* HashTest.ice in Sources */,
140C3E041E02FF0900142503 /* HoldTest.ice in Sources */,
140C3E051E02FF0900142503 /* InfoTest.ice in Sources */,
140C3E061E02FF0900142503 /* InvokeTest.ice in Sources */,
140C3E071E02FF0900142503 /* LocationTest.ice in Sources */,
140C3E081E02FF0900142503 /* SlicingExceptionsTestClient.ice in Sources */,
140C3E091E02FF0900142503 /* SlicingExceptionsTestServer.ice in Sources */,
140C3E0A1E02FF0900142503 /* SlicingObjectsTestClient.ice in Sources */,
140C3E0B1E02FF0900142503 /* SlicingObjectsTestServer.ice in Sources */,
140C3D141E02FCE100142503 /* TestI.m in Sources */,
146148791EE15DFE000ECDB3 /* OnewaysAMI.m in Sources */,
140C3CCA1E02FCE000142503 /* ServantLocatorI.m in Sources */,
140C3DA61E02FCE100142503 /* Client.m in Sources */,
140C3D521E02FCE100142503 /* Client.m in Sources */,
140C3CF41E02FCE100142503 /* AllTests.m in Sources */,
140C3D021E02FCE100142503 /* Client.m in Sources */,
14905C711DF9923D002AE61B /* Controller.ice in Sources */,
140C3DA21E02FCE100142503 /* Server.m in Sources */,
140C3D261E02FCE100142503 /* TestI.m in Sources */,
140C3D9C1E02FCE100142503 /* Client.m in Sources */,
140C3CDA1E02FCE100142503 /* Client.m in Sources */,
140C3D581E02FCE100142503 /* Server.m in Sources */,
140C3DB81E02FCE100142503 /* Server.m in Sources */,
140C3D121E02FCE100142503 /* Server.m in Sources */,
140C3C861E02FCE000142503 /* AllTests.m in Sources */,
140C3D3A1E02FCE100142503 /* AllTests.m in Sources */,
140C3D821E02FCE100142503 /* AllTests.m in Sources */,
140C3D981E02FCE100142503 /* AllTests.m in Sources */,
140C3DAC1E02FCE100142503 /* Server.m in Sources */,
140C3CCE1E02FCE000142503 /* Server.m in Sources */,
140C3CE01E02FCE100142503 /* Client.m in Sources */,
140C3D301E02FCE100142503 /* Client.m in Sources */,
14905C5C1DF98FD8002AE61B /* ViewController.m in Sources */,
140C3C701E02FCE000142503 /* Client.m in Sources */,
140C3D8E1E02FCE100142503 /* Client.m in Sources */,
140C3D761E02FCE100142503 /* AllTests.m in Sources */,
140C3D361E02FCE100142503 /* Server.m in Sources */,
140C3D081E02FCE100142503 /* TestI.m in Sources */,
140C3D6C1E02FCE100142503 /* AllTests.m in Sources */,
140C3D1E1E02FCE100142503 /* TestI.m in Sources */,
140C3C761E02FCE000142503 /* TestI.m in Sources */,
140C3DA41E02FCE100142503 /* AllTests.m in Sources */,
140C3D8A1E02FCE100142503 /* Server.m in Sources */,
140C3CF61E02FCE100142503 /* Client.m in Sources */,
140C3D681E02FCE100142503 /* Client.m in Sources */,
140C3CAA1E02FCE000142503 /* AllTests.m in Sources */,
140C3D2A1E02FCE100142503 /* Client.m in Sources */,
140C3C921E02FCE000142503 /* Oneways.m in Sources */,
140C3D661E02FCE100142503 /* AllTests.m in Sources */,
140C3D841E02FCE100142503 /* Client.m in Sources */,
140C3D281E02FCE100142503 /* AllTests.m in Sources */,
140C3C841E02FCE000142503 /* TestI.m in Sources */,
140C3D721E02FCE100142503 /* Server.m in Sources */,
140C3C7A1E02FCE000142503 /* Client.m in Sources */,
140C3D501E02FCE100142503 /* AllTests.m in Sources */,
140C3CFA1E02FCE100142503 /* Server.m in Sources */,
14905C591DF98FD8002AE61B /* AppDelegate.m in Sources */,
140C3D801E02FCE100142503 /* TestI.m in Sources */,
140C3D0E1E02FCE100142503 /* Client.m in Sources */,
140C3D8C1E02FCE100142503 /* TestI.m in Sources */,
140C3CE41E02FCE100142503 /* TestI.m in Sources */,
140C3CEE1E02FCE100142503 /* Server.m in Sources */,
140C3D6E1E02FCE100142503 /* Client.m in Sources */,
140C3D4C1E02FCE100142503 /* Server.m in Sources */,
140C3C9C1E02FCE000142503 /* Twoways.m in Sources */,
140C3D441E02FCE100142503 /* AllTests.m in Sources */,
140C3CDE1E02FCE100142503 /* AllTests.m in Sources */,
140C3D001E02FCE100142503 /* AllTests.m in Sources */,
140C3CD41E02FCE100142503 /* Client.m in Sources */,
140C3D7E1E02FCE100142503 /* Server.m in Sources */,
140C3D4E1E02FCE100142503 /* TestI.m in Sources */,
140C3D1A1E02FCE100142503 /* Client.m in Sources */,
140C3D461E02FCE100142503 /* Client.m in Sources */,
140C3DB01E02FCE100142503 /* TestI.m in Sources */,
140C3D1C1E02FCE100142503 /* Server.m in Sources */,
140C3D421E02FCE100142503 /* TestI.m in Sources */,
140C3CB61E02FCE000142503 /* AllTests.m in Sources */,
140C3CD01E02FCE100142503 /* TestI.m in Sources */,
140C3DAE1E02FCE100142503 /* ServerLocator.m in Sources */,
140C3CAC1E02FCE000142503 /* Client.m in Sources */,
140C3D0A1E02FCE100142503 /* AllTests.m in Sources */,
140C3DB21E02FCE100142503 /* AllTests.m in Sources */,
140C3C8C1E02FCE000142503 /* Client.m in Sources */,
140C3D381E02FCE100142503 /* TestI.m in Sources */,
140C3D061E02FCE100142503 /* Server.m in Sources */,
140C3CD21E02FCE100142503 /* AllTests.m in Sources */,
140C3C881E02FCE000142503 /* BatchOneways.m in Sources */,
140C3D161E02FCE100142503 /* AllTests.m in Sources */,
140C3CC21E02FCE000142503 /* AllTests.m in Sources */,
140C3CA81E02FCE000142503 /* TestI.m in Sources */,
140C3E151E03019000142503 /* TestCommon.m in Sources */,
1461487A1EE15DFE000ECDB3 /* TwowaysAMI.m in Sources */,
140C3C981E02FCE000142503 /* Server.m in Sources */,
140C3CEA1E02FCE100142503 /* AllTests.m in Sources */,
140C3CA61E02FCE000142503 /* Server.m in Sources */,
140C3CA21E02FCE000142503 /* Client.m in Sources */,
140C3D961E02FCE100142503 /* MyObjectI.m in Sources */,
140C3C781E02FCE000142503 /* AllTests.m in Sources */,
140C3D3C1E02FCE100142503 /* Client.m in Sources */,
140C3C8A1E02FCE000142503 /* BatchOnewaysAMI.m in Sources */,
140C3D741E02FCE100142503 /* TestI.m in Sources */,
140C3DC01E02FCE100142503 /* AllTests.m in Sources */,
140C3C6E1E02FCE000142503 /* AllTests.m in Sources */,
140C3D2E1E02FCE100142503 /* AllTests.m in Sources */,
140C3D5A1E02FCE100142503 /* TestI.m in Sources */,
140C3D781E02FCE100142503 /* Client.m in Sources */,
140C3E201E03EAF300142503 /* Collocated.m in Sources */,
14905C561DF98FD8002AE61B /* main.m in Sources */,
140C3CF01E02FCE100142503 /* TestI.m in Sources */,
140C3E1E1E03EAD000142503 /* Collocated.m in Sources */,
140C3DC61E02FCE100142503 /* Server.m in Sources */,
140C3CBE1E02FCE000142503 /* Server.m in Sources */,
140C3DBE1E02FCE100142503 /* TestI.m in Sources */,
14B7DEA81E041173001D0109 /* Collocated.m in Sources */,
140C3E181E03E87D00142503 /* Collocated.m in Sources */,
140C3E1A1E03EAAA00142503 /* Collocated.m in Sources */,
140C3E221E03EBE000142503 /* Collocated.m in Sources */,
14B7DEAA1E04119D001D0109 /* Collocated.m in Sources */,
140C3DCC1E02FCE100142503 /* TestI.m in Sources */,
140C3DB41E02FCE100142503 /* Client.m in Sources */,
140C3CB21E02FCE000142503 /* Server.m in Sources */,
14B7DEA61E041157001D0109 /* Collocated.m in Sources */,
140C3C821E02FCE000142503 /* Server.m in Sources */,
14B7DEA21E04103F001D0109 /* Collocated.m in Sources */,
14B7DEA41E04113A001D0109 /* Collocated.m in Sources */,
140C3C9A1E02FCE000142503 /* TestI.m in Sources */,
140C3C741E02FCE000142503 /* Server.m in Sources */,
140C3D401E02FCE100142503 /* Server.m in Sources */,
140C3CFC1E02FCE100142503 /* TestI.m in Sources */,
140C3D9A1E02FCE100142503 /* BlobjectI.m in Sources */,
140C3D901E02FCE100142503 /* InterceptorI.m in Sources */,
140C3E1C1E03EABE00142503 /* Collocated.m in Sources */,
140C3CC41E02FCE000142503 /* Client.m in Sources */,
140C3CE21E02FCE100142503 /* Server.m in Sources */,
140C3CC01E02FCE000142503 /* TestI.m in Sources */,
140C3DC21E02FCE100142503 /* Client.m in Sources */,
140C3D201E02FCE100142503 /* Client.m in Sources */,
140C3CB41E02FCE000142503 /* TestI.m in Sources */,
140C3CA01E02FCE000142503 /* AllTests.m in Sources */,
140C3CEC1E02FCE100142503 /* Client.m in Sources */,
140C3CB81E02FCE000142503 /* Client.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
14B7DEAC1E043085001D0109 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
14863D8D1EE7682500D3AA9B /* OnewaysAMI.m in Sources */,
14863D8E1EE7682500D3AA9B /* TwowaysAMI.m in Sources */,
145C4BED1E3606FF00A855C7 /* TestIntfI.m in Sources */,
145C4BE91E36064B00A855C7 /* ObjectsDerived.ice in Sources */,
145C4BEA1E36064B00A855C7 /* ObjectsDerivedEx.ice in Sources */,
14B7DEAD1E043085001D0109 /* InheritanceTest.ice in Sources */,
14B7DEAE1E043085001D0109 /* MetricsTest.ice in Sources */,
14B7DEAF1E043085001D0109 /* ObjectsTest.ice in Sources */,
14B7DEB01E043085001D0109 /* OperationsTest.ice in Sources */,
14B7DEB11E043085001D0109 /* InterceptorTest.ice in Sources */,
14B7DEB21E043085001D0109 /* OptionalTest.ice in Sources */,
14B7DEB31E043085001D0109 /* ProxyTest.ice in Sources */,
14B7DEB41E043085001D0109 /* RetryTest.ice in Sources */,
14B7DEB51E043085001D0109 /* ServantLocatorTest.ice in Sources */,
14B7DEB61E043085001D0109 /* ServicesTest.ice in Sources */,
14B7DEB71E043085001D0109 /* StreamTest.ice in Sources */,
14B7DEB81E043085001D0109 /* TimeoutTest.ice in Sources */,
14B7DEB91E043085001D0109 /* ACMTest.ice in Sources */,
14B7DEBA1E043085001D0109 /* AdapterDeactivationTest.ice in Sources */,
14B7DEBB1E043085001D0109 /* AdminTest.ice in Sources */,
14B7DEBC1E043085001D0109 /* AMITest.ice in Sources */,
14B7DEBD1E043085001D0109 /* BindingTest.ice in Sources */,
14B7DEBE1E043085001D0109 /* DefaultServantTest.ice in Sources */,
14B7DEBF1E043085001D0109 /* DefaultValueTest.ice in Sources */,
14B7DEC01E043085001D0109 /* DispatcherTest.ice in Sources */,
14B7DEC11E043085001D0109 /* EnumTest.ice in Sources */,
14B7DEC21E043085001D0109 /* ExceptionsTest.ice in Sources */,
14B7DEC31E043085001D0109 /* FacetsTest.ice in Sources */,
14B7DEC41E043085001D0109 /* HashTest.ice in Sources */,
14B7DEC51E043085001D0109 /* HoldTest.ice in Sources */,
14B7DEC61E043085001D0109 /* InfoTest.ice in Sources */,
14B7DEC71E043085001D0109 /* InvokeTest.ice in Sources */,
14B7DEC81E043085001D0109 /* LocationTest.ice in Sources */,
14B7DEC91E043085001D0109 /* SlicingExceptionsTestClient.ice in Sources */,
14B7DECA1E043085001D0109 /* SlicingExceptionsTestServer.ice in Sources */,
14B7DECB1E043085001D0109 /* SlicingObjectsTestClient.ice in Sources */,
14B7DECC1E043085001D0109 /* SlicingObjectsTestServer.ice in Sources */,
14B7DECD1E043085001D0109 /* TestI.m in Sources */,
14B7DECE1E043085001D0109 /* ServantLocatorI.m in Sources */,
14B7DECF1E043085001D0109 /* Client.m in Sources */,
14B7DED01E043085001D0109 /* Client.m in Sources */,
14B7DED11E043085001D0109 /* AllTests.m in Sources */,
14B7DED21E043085001D0109 /* Client.m in Sources */,
14B7DED31E043085001D0109 /* Controller.ice in Sources */,
14B7DED41E043085001D0109 /* Server.m in Sources */,
14B7DED61E043085001D0109 /* TestI.m in Sources */,
14B7DED71E043085001D0109 /* Client.m in Sources */,
14B7DED81E043085001D0109 /* Client.m in Sources */,
14B7DED91E043085001D0109 /* Server.m in Sources */,
14B7DEDA1E043085001D0109 /* Server.m in Sources */,
14B7DEDB1E043085001D0109 /* Server.m in Sources */,
14B7DEDC1E043085001D0109 /* AllTests.m in Sources */,
14B7DEDD1E043085001D0109 /* AllTests.m in Sources */,
14B7DEDE1E043085001D0109 /* AllTests.m in Sources */,
14B7DEDF1E043085001D0109 /* AllTests.m in Sources */,
14B7DEE01E043085001D0109 /* Server.m in Sources */,
14B7DEE11E043085001D0109 /* Server.m in Sources */,
14B7DEE21E043085001D0109 /* Client.m in Sources */,
14B7DEE31E043085001D0109 /* Client.m in Sources */,
14B7DEE41E043085001D0109 /* ViewController.m in Sources */,
14B7DEE51E043085001D0109 /* Client.m in Sources */,
14B7DEE61E043085001D0109 /* Client.m in Sources */,
14B7DEE71E043085001D0109 /* AllTests.m in Sources */,
14B7DEE81E043085001D0109 /* Server.m in Sources */,
14B7DEE91E043085001D0109 /* TestI.m in Sources */,
14B7DEEA1E043085001D0109 /* AllTests.m in Sources */,
14B7DEEB1E043085001D0109 /* TestI.m in Sources */,
14B7DEEC1E043085001D0109 /* TestI.m in Sources */,
14B7DEED1E043085001D0109 /* AllTests.m in Sources */,
14B7DEEE1E043085001D0109 /* Server.m in Sources */,
14B7DEEF1E043085001D0109 /* Client.m in Sources */,
14B7DEF01E043085001D0109 /* Client.m in Sources */,
14B7DEF11E043085001D0109 /* AllTests.m in Sources */,
14B7DEF21E043085001D0109 /* Client.m in Sources */,
14B7DEF31E043085001D0109 /* Oneways.m in Sources */,
14B7DEF41E043085001D0109 /* AllTests.m in Sources */,
14B7DEF51E043085001D0109 /* Client.m in Sources */,
14B7DEF61E043085001D0109 /* AllTests.m in Sources */,
14B7DEF71E043085001D0109 /* TestI.m in Sources */,
14B7DEF81E043085001D0109 /* Server.m in Sources */,
14B7DEF91E043085001D0109 /* Client.m in Sources */,
14B7DEFA1E043085001D0109 /* AllTests.m in Sources */,
14B7DEFB1E043085001D0109 /* Server.m in Sources */,
14B7DEFC1E043085001D0109 /* AppDelegate.m in Sources */,
14B7DEFD1E043085001D0109 /* TestI.m in Sources */,
14B7DEFE1E043085001D0109 /* Client.m in Sources */,
14B7DEFF1E043085001D0109 /* TestI.m in Sources */,
14B7DF001E043085001D0109 /* TestI.m in Sources */,
14B7DF011E043085001D0109 /* Server.m in Sources */,
14B7DF021E043085001D0109 /* Client.m in Sources */,
14B7DF031E043085001D0109 /* Server.m in Sources */,
14B7DF041E043085001D0109 /* Twoways.m in Sources */,
14B7DF051E043085001D0109 /* AllTests.m in Sources */,
14B7DF071E043085001D0109 /* AllTests.m in Sources */,
14B7DF081E043085001D0109 /* AllTests.m in Sources */,
14B7DF091E043085001D0109 /* Client.m in Sources */,
14B7DF0A1E043085001D0109 /* Server.m in Sources */,
14B7DF0B1E043085001D0109 /* TestI.m in Sources */,
14B7DF0C1E043085001D0109 /* Client.m in Sources */,
14B7DF0D1E043085001D0109 /* Client.m in Sources */,
14B7DF0E1E043085001D0109 /* TestI.m in Sources */,
14B7DF0F1E043085001D0109 /* Server.m in Sources */,
14B7DF101E043085001D0109 /* TestI.m in Sources */,
14B7DF111E043085001D0109 /* AllTests.m in Sources */,
14B7DF121E043085001D0109 /* TestI.m in Sources */,
14B7DF131E043085001D0109 /* ServerLocator.m in Sources */,
14B7DF141E043085001D0109 /* Client.m in Sources */,
14B7DF151E043085001D0109 /* AllTests.m in Sources */,
14B7DF161E043085001D0109 /* AllTests.m in Sources */,
14B7DF171E043085001D0109 /* Client.m in Sources */,
14B7DF181E043085001D0109 /* TestI.m in Sources */,
14B7DF191E043085001D0109 /* Server.m in Sources */,
14B7DF1A1E043085001D0109 /* AllTests.m in Sources */,
14B7DF1B1E043085001D0109 /* BatchOneways.m in Sources */,
14B7DF1C1E043085001D0109 /* AllTests.m in Sources */,
14B7DF1D1E043085001D0109 /* AllTests.m in Sources */,
14B7DF1E1E043085001D0109 /* TestI.m in Sources */,
14B7DF1F1E043085001D0109 /* TestCommon.m in Sources */,
14B7DF201E043085001D0109 /* Server.m in Sources */,
14B7DF211E043085001D0109 /* AllTests.m in Sources */,
14B7DF221E043085001D0109 /* Server.m in Sources */,
14B7DF231E043085001D0109 /* Client.m in Sources */,
14B7DF241E043085001D0109 /* MyObjectI.m in Sources */,
14B7DF251E043085001D0109 /* AllTests.m in Sources */,
14B7DF261E043085001D0109 /* Client.m in Sources */,
14B7DF271E043085001D0109 /* BatchOnewaysAMI.m in Sources */,
14B7DF281E043085001D0109 /* TestI.m in Sources */,
14B7DF291E043085001D0109 /* AllTests.m in Sources */,
14B7DF2A1E043085001D0109 /* AllTests.m in Sources */,
14B7DF2B1E043085001D0109 /* AllTests.m in Sources */,
14B7DF2C1E043085001D0109 /* TestI.m in Sources */,
14B7DF2D1E043085001D0109 /* Client.m in Sources */,
14B7DF2E1E043085001D0109 /* Collocated.m in Sources */,
14B7DF2F1E043085001D0109 /* main.m in Sources */,
14B7DF301E043085001D0109 /* TestI.m in Sources */,
14B7DF311E043085001D0109 /* Collocated.m in Sources */,
14B7DF321E043085001D0109 /* Server.m in Sources */,
14B7DF331E043085001D0109 /* Server.m in Sources */,
14B7DF341E043085001D0109 /* TestI.m in Sources */,
14B7DF351E043085001D0109 /* Collocated.m in Sources */,
14B7DF361E043085001D0109 /* Collocated.m in Sources */,
14B7DF371E043085001D0109 /* Collocated.m in Sources */,
14B7DF381E043085001D0109 /* Collocated.m in Sources */,
14B7DF391E043085001D0109 /* Collocated.m in Sources */,
14B7DF3A1E043085001D0109 /* TestI.m in Sources */,
14B7DF3B1E043085001D0109 /* Client.m in Sources */,
14B7DF3C1E043085001D0109 /* Server.m in Sources */,
14B7DF3D1E043085001D0109 /* Collocated.m in Sources */,
14B7DF3E1E043085001D0109 /* Server.m in Sources */,
14B7DF3F1E043085001D0109 /* Collocated.m in Sources */,
14B7DF401E043085001D0109 /* Collocated.m in Sources */,
14B7DF411E043085001D0109 /* TestI.m in Sources */,
14B7DF421E043085001D0109 /* Server.m in Sources */,
14B7DF431E043085001D0109 /* Server.m in Sources */,
14B7DF441E043085001D0109 /* TestI.m in Sources */,
14B7DF451E043085001D0109 /* BlobjectI.m in Sources */,
14B7DF461E043085001D0109 /* InterceptorI.m in Sources */,
14B7DF471E043085001D0109 /* Collocated.m in Sources */,
14B7DF481E043085001D0109 /* Client.m in Sources */,
14B7DF491E043085001D0109 /* Server.m in Sources */,
14B7DF4A1E043085001D0109 /* TestI.m in Sources */,
14B7DF4B1E043085001D0109 /* Client.m in Sources */,
14B7DF4C1E043085001D0109 /* Client.m in Sources */,
14B7DF4D1E043085001D0109 /* TestI.m in Sources */,
14B7DF4E1E043085001D0109 /* AllTests.m in Sources */,
14B7DF4F1E043085001D0109 /* Client.m in Sources */,
14B7DF501E043085001D0109 /* Client.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXVariantGroup section */
14905C5D1DF98FD8002AE61B /* Main.storyboard */ = {
isa = PBXVariantGroup;
children = (
14905C5E1DF98FD8002AE61B /* Base */,
);
name = Main.storyboard;
sourceTree = "<group>";
};
14905C621DF98FD8002AE61B /* LaunchScreen.storyboard */ = {
isa = PBXVariantGroup;
children = (
14905C631DF98FD8002AE61B /* Base */,
);
name = LaunchScreen.storyboard;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
14905C661DF98FD8002AE61B /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ADDITIONAL_SDKS = "../../../../sdk/$(PLATFORM_NAME).sdk";
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
14905C671DF98FD8002AE61B /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ADDITIONAL_SDKS = "../../../../sdk/$(PLATFORM_NAME).sdk";
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
name = Release;
};
14905C691DF98FD8002AE61B /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_OBJC_ARC = NO;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
DEVELOPMENT_TEAM = U4TBVKNQ7F;
HEADER_SEARCH_PATHS = (
../../Ice,
../../include,
);
INFOPLIST_FILE = Classes/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
OTHER_LDFLAGS = (
"-lIceGridObjC",
"-lGlacier2ObjC",
"-lIceSSLObjC",
"-lIceStormObjC",
"-lIceObjC",
"-lIceDiscovery",
"-lIceIAP",
"-lIceSSL",
"-lIce",
"-lbz2",
"-liconv",
"-lc++",
"-ObjC",
);
PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.ObjC-Test-Controller";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE = "";
PROVISIONING_PROFILE_SPECIFIER = "";
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
14905C6A1DF98FD8002AE61B /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_OBJC_ARC = NO;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
DEVELOPMENT_TEAM = U4TBVKNQ7F;
HEADER_SEARCH_PATHS = (
../../Ice,
../../include,
);
INFOPLIST_FILE = Classes/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
OTHER_LDFLAGS = (
"-lIceGridObjC",
"-lGlacier2ObjC",
"-lIceSSLObjC",
"-lIceStormObjC",
"-lIceObjC",
"-lIceDiscovery",
"-lIceIAP",
"-lIceSSL",
"-lIce",
"-lbz2",
"-liconv",
"-lc++",
"-ObjC",
);
PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.ObjC-Test-Controller";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE = "";
PROVISIONING_PROFILE_SPECIFIER = "";
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
14B7DF7B1E043085001D0109 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
DEVELOPMENT_TEAM = U4TBVKNQ7F;
HEADER_SEARCH_PATHS = (
../../Ice,
../../include,
);
INFOPLIST_FILE = Classes/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
OTHER_CFLAGS = "-fobjc-arc-exceptions ";
OTHER_LDFLAGS = (
"-lIceGridObjC",
"-lGlacier2ObjC",
"-lIceSSLObjC",
"-lIceStormObjC",
"-lIceObjC",
"-lIceDiscovery",
"-lIceIAP",
"-lIceSSL",
"-lIce",
"-lbz2",
"-liconv",
"-lc++",
"-ObjC",
);
PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.ObjC-ARC-Test-Controller";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE = "";
PROVISIONING_PROFILE_SPECIFIER = "";
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
14B7DF7C1E043085001D0109 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
DEVELOPMENT_TEAM = U4TBVKNQ7F;
HEADER_SEARCH_PATHS = (
../../Ice,
../../include,
);
INFOPLIST_FILE = Classes/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
OTHER_CFLAGS = "-fobjc-arc-exceptions ";
OTHER_LDFLAGS = (
"-lIceGridObjC",
"-lGlacier2ObjC",
"-lIceSSLObjC",
"-lIceStormObjC",
"-lIceObjC",
"-lIceDiscovery",
"-lIceIAP",
"-lIceSSL",
"-lIce",
"-lbz2",
"-liconv",
"-lc++",
"-ObjC",
);
PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.ObjC-ARC-Test-Controller";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE = "";
PROVISIONING_PROFILE_SPECIFIER = "";
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
14905C4C1DF98FD8002AE61B /* Build configuration list for PBXProject "Objective-C Test Controller" */ = {
isa = XCConfigurationList;
buildConfigurations = (
14905C661DF98FD8002AE61B /* Debug */,
14905C671DF98FD8002AE61B /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Debug;
};
14905C681DF98FD8002AE61B /* Build configuration list for PBXNativeTarget "Objective-C Test Controller" */ = {
isa = XCConfigurationList;
buildConfigurations = (
14905C691DF98FD8002AE61B /* Debug */,
14905C6A1DF98FD8002AE61B /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Debug;
};
14B7DF7A1E043085001D0109 /* Build configuration list for PBXNativeTarget "Objective-C ARC Test Controller" */ = {
isa = XCConfigurationList;
buildConfigurations = (
14B7DF7B1E043085001D0109 /* Debug */,
14B7DF7C1E043085001D0109 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Debug;
};
/* End XCConfigurationList section */
};
rootObject = 14905C491DF98FD8002AE61B /* Project object */;
}
|