-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathproject.pbxproj
3196 lines (3178 loc) · 165 KB
/
project.pbxproj
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
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 51;
objects = {
/* Begin PBXBuildFile section */
1B21A7D92D711B29000CA0D5 /* URLEndpointListenerTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1B21A7D82D711B29000CA0D5 /* URLEndpointListenerTest.cc */; };
1B21A7DA2D711B29000CA0D5 /* URLEndpointListenerTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1B21A7D82D711B29000CA0D5 /* URLEndpointListenerTest.cc */; };
1B21A7DB2D711B29000CA0D5 /* URLEndpointListenerTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1B21A7D82D711B29000CA0D5 /* URLEndpointListenerTest.cc */; };
1BC5D9602D6E3BD10080153E /* CBLURLEndpointListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BC5D95F2D6E3BD10080153E /* CBLURLEndpointListener.h */; };
1BC5D9612D6E3BD10080153E /* CBLURLEndpointListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BC5D95F2D6E3BD10080153E /* CBLURLEndpointListener.h */; };
1BC5D9662D6E4DA60080153E /* CBLURLEndpointListener_CAPI.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1BC5D9652D6E4DA60080153E /* CBLURLEndpointListener_CAPI.cc */; };
1BC5D9682D6E50960080153E /* CBLURLEndpointListener_Internal.hh in Headers */ = {isa = PBXBuildFile; fileRef = 1BC5D9672D6E50960080153E /* CBLURLEndpointListener_Internal.hh */; };
271A98B0243FDF56008C032D /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 271A98AF243FDF55008C032D /* SystemConfiguration.framework */; };
271C2A3121CAC98F0045856E /* CBLReplicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 271C2A2C21CAC98F0045856E /* CBLReplicator.h */; };
271C2A3221CAC98F0045856E /* CBLBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 271C2A2D21CAC98F0045856E /* CBLBase.h */; };
271C2A3321CAC98F0045856E /* CBLDocument.h in Headers */ = {isa = PBXBuildFile; fileRef = 271C2A2E21CAC98F0045856E /* CBLDocument.h */; };
271C2A3421CAC98F0045856E /* CBLDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 271C2A2F21CAC98F0045856E /* CBLDatabase.h */; };
271C2A3521CAC98F0045856E /* CBLQuery.h in Headers */ = {isa = PBXBuildFile; fileRef = 271C2A3021CAC98F0045856E /* CBLQuery.h */; };
271C2A6F21CAD5B30045856E /* CBLBase_CAPI.cc in Sources */ = {isa = PBXBuildFile; fileRef = 271C2A6E21CAD5B30045856E /* CBLBase_CAPI.cc */; };
271C2A7221CADB170045856E /* CBLDatabase.cc in Sources */ = {isa = PBXBuildFile; fileRef = 271C2A7121CADB170045856E /* CBLDatabase.cc */; };
271C2A7621CC4BD60045856E /* Internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 271C2A7421CC4BD60045856E /* Internal.cc */; };
271C2A7821CC750E0045856E /* CBLDocument.cc in Sources */ = {isa = PBXBuildFile; fileRef = 271C2A7721CC750E0045856E /* CBLDocument.cc */; };
2736A634242E5A74002B9D65 /* ReplicatorEETest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2736A633242E5A74002B9D65 /* ReplicatorEETest.cc */; };
2736A635242E5A74002B9D65 /* ReplicatorEETest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2736A633242E5A74002B9D65 /* ReplicatorEETest.cc */; };
273CE7E22452123400D01CA2 /* libfleeceBase.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27B61DBA21D6FF2D0027CCDB /* libfleeceBase.a */; };
275B3576234810C400FE9CF0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 275B3567234810C400FE9CF0 /* Foundation.framework */; };
275B358723481AE700FE9CF0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 275B3567234810C400FE9CF0 /* Foundation.framework */; };
275B358923481D0C00FE9CF0 /* CBLTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 27B61D6921D6B60D0027CCDB /* CBLTest.cc */; };
275B358A23481D0C00FE9CF0 /* DatabaseTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 27B61DB821D6ECA70027CCDB /* DatabaseTest.cc */; };
275B358B23481D0C00FE9CF0 /* DatabaseTest_Cpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 277FEE5221E6BCA500B60E3C /* DatabaseTest_Cpp.cc */; };
275B358C23481D0C00FE9CF0 /* BlobTest_Cpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 275BC4F32204FB1400DBE7D2 /* BlobTest_Cpp.cc */; };
275B358D23481D0C00FE9CF0 /* ReplicatorTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 277CC99422BC23DE00B245CB /* ReplicatorTest.cc */; };
275B358E23481D0C00FE9CF0 /* CBLTest.c in Sources */ = {isa = PBXBuildFile; fileRef = 27C9B5F221F7EE670040BC45 /* CBLTest.c */; };
275B3591234BCF7500FE9CF0 /* libcblite.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 27B61D7021D6B64A0027CCDB /* libcblite.dylib */; };
275B3594234BDB2700FE9CF0 /* CBLTestsMain.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 275B3593234BDB2700FE9CF0 /* CBLTestsMain.cpp */; };
275B3599234C158900FE9CF0 /* CouchbaseLiteTests.mm in Sources */ = {isa = PBXBuildFile; fileRef = 275B3597234C158400FE9CF0 /* CouchbaseLiteTests.mm */; };
275B359E234D064600FE9CF0 /* QueryTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 275B359D234D064600FE9CF0 /* QueryTest.cc */; };
275B359F234D064600FE9CF0 /* QueryTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 275B359D234D064600FE9CF0 /* QueryTest.cc */; };
275BC4DE2201323700DBE7D2 /* CBLBlob_CAPI.cc in Sources */ = {isa = PBXBuildFile; fileRef = 275BC4DD2201323700DBE7D2 /* CBLBlob_CAPI.cc */; };
275BC4F42204FB1400DBE7D2 /* BlobTest_Cpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 275BC4F32204FB1400DBE7D2 /* BlobTest_Cpp.cc */; };
276633A62602815000B9BD36 /* CBLDatabase_CAPI.cc in Sources */ = {isa = PBXBuildFile; fileRef = 276633A52602815000B9BD36 /* CBLDatabase_CAPI.cc */; };
276634192605338300B9BD36 /* CBLDocument_CAPI.cc in Sources */ = {isa = PBXBuildFile; fileRef = 276634182605338300B9BD36 /* CBLDocument_CAPI.cc */; };
277B77D3245B44BE00B222D3 /* CBLLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 277B77C6245B44BE00B222D3 /* CBLLog.h */; };
277B77D5245B44E900B222D3 /* CBLLog.cc in Sources */ = {isa = PBXBuildFile; fileRef = 277B77D4245B44E900B222D3 /* CBLLog.cc */; };
277CC99522BC23DE00B245CB /* ReplicatorTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 277CC99422BC23DE00B245CB /* ReplicatorTest.cc */; };
277CC9C022BC4E2E00B245CB /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 277CC9B122BC4E2E00B245CB /* Security.framework */; };
277FEE5321E6BCA500B60E3C /* DatabaseTest_Cpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 277FEE5221E6BCA500B60E3C /* DatabaseTest_Cpp.cc */; };
277FEE7521ED3C4900B60E3C /* CBLReplicator_CAPI.cc in Sources */ = {isa = PBXBuildFile; fileRef = 277FEE7421ED3C4900B60E3C /* CBLReplicator_CAPI.cc */; };
277FEE7821ED62AA00B60E3C /* CBLReplicatorConfig.hh in Headers */ = {isa = PBXBuildFile; fileRef = 277FEE7621ED62AA00B60E3C /* CBLReplicatorConfig.hh */; };
27886C8D21F64C1400069BEA /* Listener.hh in Headers */ = {isa = PBXBuildFile; fileRef = 27886C8B21F64C1400069BEA /* Listener.hh */; };
27886C8E21F64C1400069BEA /* Listener.cc in Sources */ = {isa = PBXBuildFile; fileRef = 27886C8C21F64C1400069BEA /* Listener.cc */; };
27984E212249A189000FE777 /* dylib_main.cc in Sources */ = {isa = PBXBuildFile; fileRef = 27B61D7E21D6B6900027CCDB /* dylib_main.cc */; };
27984E262249A1BE000FE777 /* libcblite-static.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 271C2A2321CAC8920045856E /* libcblite-static.a */; };
27984E282249A1EE000FE777 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 27B61D8121D6B8230027CCDB /* libz.tbd */; };
27984E292249A240000FE777 /* CouchbaseLite.h in Headers */ = {isa = PBXBuildFile; fileRef = 27B61DA321D6E40D0027CCDB /* CouchbaseLite.h */; settings = {ATTRIBUTES = (Public, ); }; };
27984E2A2249A240000FE777 /* CBLBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 271C2A2D21CAC98F0045856E /* CBLBase.h */; settings = {ATTRIBUTES = (Public, ); }; };
27984E2B2249A240000FE777 /* CBLBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = 275BC4CC22012D8700DBE7D2 /* CBLBlob.h */; settings = {ATTRIBUTES = (Public, ); }; };
27984E2C2249A240000FE777 /* CBLDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 271C2A2F21CAC98F0045856E /* CBLDatabase.h */; settings = {ATTRIBUTES = (Public, ); }; };
27984E2D2249A240000FE777 /* CBLDocument.h in Headers */ = {isa = PBXBuildFile; fileRef = 271C2A2E21CAC98F0045856E /* CBLDocument.h */; settings = {ATTRIBUTES = (Public, ); }; };
27984E2E2249A240000FE777 /* CBLQuery.h in Headers */ = {isa = PBXBuildFile; fileRef = 271C2A3021CAC98F0045856E /* CBLQuery.h */; settings = {ATTRIBUTES = (Public, ); }; };
27984E2F2249A240000FE777 /* CBLReplicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 271C2A2C21CAC98F0045856E /* CBLReplicator.h */; settings = {ATTRIBUTES = (Public, ); }; };
27984E302249A240000FE777 /* CBL_Compat.h in Headers */ = {isa = PBXBuildFile; fileRef = 271C2A7021CAD6440045856E /* CBL_Compat.h */; settings = {ATTRIBUTES = (Public, ); }; };
27984E312249A247000FE777 /* CouchbaseLite.hh in Headers */ = {isa = PBXBuildFile; fileRef = 277FEE5021E6BC2100B60E3C /* CouchbaseLite.hh */; };
27984E322249A247000FE777 /* Base.hh in Headers */ = {isa = PBXBuildFile; fileRef = 277FEE3D21DEF0C700B60E3C /* Base.hh */; };
27984E332249A247000FE777 /* Blob.hh in Headers */ = {isa = PBXBuildFile; fileRef = 275BC4E22204E6A800DBE7D2 /* Blob.hh */; };
27984E342249A247000FE777 /* Database.hh in Headers */ = {isa = PBXBuildFile; fileRef = 27B61DD821DEEC540027CCDB /* Database.hh */; };
27984E352249A247000FE777 /* Document.hh in Headers */ = {isa = PBXBuildFile; fileRef = 277FEE4E21DEF54D00B60E3C /* Document.hh */; };
27984E362249A247000FE777 /* Query.hh in Headers */ = {isa = PBXBuildFile; fileRef = 277FEE4F21E6AB1100B60E3C /* Query.hh */; };
27984E372249A247000FE777 /* Replicator.hh in Headers */ = {isa = PBXBuildFile; fileRef = 27C9B5F121F7D74A0040BC45 /* Replicator.hh */; };
27B61D5621D5ABA60027CCDB /* CBLQuery_CAPI.cc in Sources */ = {isa = PBXBuildFile; fileRef = 27B61D5521D5ABA60027CCDB /* CBLQuery_CAPI.cc */; };
27B61D6A21D6B60D0027CCDB /* CBLTest.hh in Headers */ = {isa = PBXBuildFile; fileRef = 27B61D6821D6B60D0027CCDB /* CBLTest.hh */; };
27B61D7D21D6B66F0027CCDB /* libcblite-static.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 271C2A2321CAC8920045856E /* libcblite-static.a */; };
27B61D7F21D6B6900027CCDB /* dylib_main.cc in Sources */ = {isa = PBXBuildFile; fileRef = 27B61D7E21D6B6900027CCDB /* dylib_main.cc */; };
27B61D8221D6B8230027CCDB /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 27B61D8121D6B8230027CCDB /* libz.tbd */; };
27B61DAF21D6E4B70027CCDB /* CBLTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 27B61D6921D6B60D0027CCDB /* CBLTest.cc */; };
27B61DB521D6EBDD0027CCDB /* libcblite.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 27B61D7021D6B64A0027CCDB /* libcblite.dylib */; };
27B61DB921D6ECA70027CCDB /* DatabaseTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 27B61DB821D6ECA70027CCDB /* DatabaseTest.cc */; };
27B61DBB21D6FF2D0027CCDB /* libfleeceBase.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27B61DBA21D6FF2D0027CCDB /* libfleeceBase.a */; };
27C9B5F321F7EE670040BC45 /* CBLTest.c in Sources */ = {isa = PBXBuildFile; fileRef = 27C9B5F221F7EE670040BC45 /* CBLTest.c */; };
27D11BEF2351043B00C58A70 /* ConflictResolver.hh in Headers */ = {isa = PBXBuildFile; fileRef = 27D11BED2351043B00C58A70 /* ConflictResolver.hh */; };
27D11BF02351043B00C58A70 /* ConflictResolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 27D11BEE2351043B00C58A70 /* ConflictResolver.cc */; };
27D30F9F23A2D30500392107 /* PerfTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 27D30F9123A2D30500392107 /* PerfTest.cc */; };
27DBCF2F246B4352002FD7A7 /* CBLQuery_Internal.hh in Headers */ = {isa = PBXBuildFile; fileRef = 27DBCF2E246B4352002FD7A7 /* CBLQuery_Internal.hh */; };
27DBCF42246B81EE002FD7A7 /* LibC++Debug.cc in Sources */ = {isa = PBXBuildFile; fileRef = 27DBCF41246B81EE002FD7A7 /* LibC++Debug.cc */; };
27DBD095246C9573002FD7A7 /* LibC++Debug.cc in Sources */ = {isa = PBXBuildFile; fileRef = 27DBCF41246B81EE002FD7A7 /* LibC++Debug.cc */; };
27DBD098246C9DE7002FD7A7 /* CBLDatabase+Apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 27DBD097246C9DE7002FD7A7 /* CBLDatabase+Apple.mm */; };
27DBD09C246CA60E002FD7A7 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 271A98AF243FDF55008C032D /* SystemConfiguration.framework */; };
27DBD0A9246CA667002FD7A7 /* CBLLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 277B77C6245B44BE00B222D3 /* CBLLog.h */; settings = {ATTRIBUTES = (Public, ); }; };
400983512D0769630029F26E /* CBLLogSinks.h in Headers */ = {isa = PBXBuildFile; fileRef = 400983502D0769630029F26E /* CBLLogSinks.h */; settings = {ATTRIBUTES = (Public, ); }; };
400983522D0769630029F26E /* CBLLogSinks.h in Headers */ = {isa = PBXBuildFile; fileRef = 400983502D0769630029F26E /* CBLLogSinks.h */; };
400983552D07B8500029F26E /* CBLLogSinks.cc in Sources */ = {isa = PBXBuildFile; fileRef = 400983542D07B8500029F26E /* CBLLogSinks.cc */; };
400983562D07B8500029F26E /* CBLLogSinks_Internal.hh in Headers */ = {isa = PBXBuildFile; fileRef = 400983532D07B8500029F26E /* CBLLogSinks_Internal.hh */; };
4009839E2D0917BB0029F26E /* CBLLogSinks_CAPI.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4009839D2D0917BB0029F26E /* CBLLogSinks_CAPI.cc */; };
400AB0512C2E669F00DB6223 /* VectorSearchTest_Cpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 400AB0412C2E669500DB6223 /* VectorSearchTest_Cpp.cc */; };
400AB0532C2E66B500DB6223 /* QueryIndex.hh in Headers */ = {isa = PBXBuildFile; fileRef = 400AB0522C2E66B500DB6223 /* QueryIndex.hh */; };
4022546E29355577000FBAC8 /* assets in Resources */ = {isa = PBXBuildFile; fileRef = 4022546D29355576000FBAC8 /* assets */; };
4022546F29355577000FBAC8 /* assets in Resources */ = {isa = PBXBuildFile; fileRef = 4022546D29355576000FBAC8 /* assets */; };
4022547029355577000FBAC8 /* assets in Resources */ = {isa = PBXBuildFile; fileRef = 4022546D29355576000FBAC8 /* assets */; };
405D4F7D2C34713400221516 /* CBLQueryIndexTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 406F8D802C17E3B4000223FC /* CBLQueryIndexTypes.h */; };
405D4F8C2C34713500221516 /* CBLQueryIndexTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 406F8D802C17E3B4000223FC /* CBLQueryIndexTypes.h */; settings = {ATTRIBUTES = (Public, ); }; };
405D4F8D2C34714E00221516 /* CBLQueryTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 406F8D6F2C17E191000223FC /* CBLQueryTypes.h */; };
405D4F8E2C34714F00221516 /* CBLQueryTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 406F8D6F2C17E191000223FC /* CBLQueryTypes.h */; settings = {ATTRIBUTES = (Public, ); }; };
406E46E42BACC4BF0088198C /* VectorSearchTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 406E46D22BACAEFF0088198C /* VectorSearchTest.cc */; };
4083FCAF2BA3B8B00061509D /* CBLVectorIndexConfig_CAPI.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4083FCAE2BA3B8B00061509D /* CBLVectorIndexConfig_CAPI.cc */; };
4083FCB02BA3B8C50061509D /* CBLVectorIndexConfig.hh in Headers */ = {isa = PBXBuildFile; fileRef = 4083FC9F2BA3A4390061509D /* CBLVectorIndexConfig.hh */; };
4083FCBC2BA8DE200061509D /* CBLPrediction_CAPI.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4083FCBB2BA8DE200061509D /* CBLPrediction_CAPI.cc */; };
4083FCC02BAA235F0061509D /* CBLPrediction_Internal.hh in Headers */ = {isa = PBXBuildFile; fileRef = 4083FCBF2BAA203A0061509D /* CBLPrediction_Internal.hh */; };
4083FCC22BAA38F30061509D /* CBLPrediction.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4083FCC12BAA38F30061509D /* CBLPrediction.cc */; };
40ACB2392C2F98B200CBE8F2 /* Prediction.hh in Headers */ = {isa = PBXBuildFile; fileRef = 40ACB2382C2F20DA00CBE8F2 /* Prediction.hh */; };
40ACB23A2C2F98B600CBE8F2 /* VectorIndex.hh in Headers */ = {isa = PBXBuildFile; fileRef = 400AB0542C2E7AC300DB6223 /* VectorIndex.hh */; };
40D1862529B6D1A50061AA85 /* Collection.hh in Headers */ = {isa = PBXBuildFile; fileRef = FCC064BD287CBD95000C5BD7 /* Collection.hh */; };
40E32F402D2F3ED4000CED57 /* LogSinks.hh in Headers */ = {isa = PBXBuildFile; fileRef = 40E32F3F2D2F3ED4000CED57 /* LogSinks.hh */; };
40E32F422D2F45A3000CED57 /* LogTest_Cpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 40E32F412D2F45A3000CED57 /* LogTest_Cpp.cc */; };
40E32F432D2F45A3000CED57 /* LogTest_Cpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 40E32F412D2F45A3000CED57 /* LogTest_Cpp.cc */; };
40E32F442D2F45A3000CED57 /* LogTest_Cpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 40E32F412D2F45A3000CED57 /* LogTest_Cpp.cc */; };
40E7CA732BFE7336004BE7E1 /* ContextManager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 40E7CA632BFE7336004BE7E1 /* ContextManager.cc */; };
40E7CA742BFE7336004BE7E1 /* ContextManager.hh in Headers */ = {isa = PBXBuildFile; fileRef = 40E7CA722BFE7336004BE7E1 /* ContextManager.hh */; };
40F902D82B9F7B12002EA0A0 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 40F902C82B9F7AF6002EA0A0 /* PrivacyInfo.xcprivacy */; };
40FE2DD12C082465005E99E9 /* CBLQueryIndex.h in Headers */ = {isa = PBXBuildFile; fileRef = 40FE2DC22C08245E005E99E9 /* CBLQueryIndex.h */; };
40FE2DD22C082466005E99E9 /* CBLQueryIndex.h in Headers */ = {isa = PBXBuildFile; fileRef = 40FE2DC22C08245E005E99E9 /* CBLQueryIndex.h */; settings = {ATTRIBUTES = (Public, ); }; };
40FE2DD62C092578005E99E9 /* CBLQueryIndex_CAPI.cc in Sources */ = {isa = PBXBuildFile; fileRef = 40FE2DD52C092578005E99E9 /* CBLQueryIndex_CAPI.cc */; };
40FE2DD92C0926FF005E99E9 /* CBLQueryIndex.cc in Sources */ = {isa = PBXBuildFile; fileRef = 40FE2DD72C0926FF005E99E9 /* CBLQueryIndex.cc */; };
40FE2DDA2C0926FF005E99E9 /* CBLQueryIndex_Internal.hh in Headers */ = {isa = PBXBuildFile; fileRef = 40FE2DD82C0926FF005E99E9 /* CBLQueryIndex_Internal.hh */; };
40FE2E0E2C12AEF6005E99E9 /* LazyVectorIndexTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 40FE2DFE2C12AEEB005E99E9 /* LazyVectorIndexTest.cc */; };
42D1B69D2978AD31003B9871 /* CBLUserAgent.mm in Sources */ = {isa = PBXBuildFile; fileRef = 42D1B68F2978AD31003B9871 /* CBLUserAgent.mm */; };
6938073022DE96C200727053 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 277CC9B122BC4E2E00B245CB /* Security.framework */; };
932062DB26BC6B43006917A5 /* CBLQuery.cc in Sources */ = {isa = PBXBuildFile; fileRef = 932062DA26BC6B43006917A5 /* CBLQuery.cc */; };
9320630F26BDB408006917A5 /* CBLPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 9320630126BDB340006917A5 /* CBLPlatform.h */; };
9320631026BDB409006917A5 /* CBLPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 9320630126BDB340006917A5 /* CBLPlatform.h */; settings = {ATTRIBUTES = (Public, ); }; };
93965A6326A7CD50008728EE /* LogTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 93965A6226A7CD50008728EE /* LogTest.cc */; };
93965A6426A7CD50008728EE /* LogTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 93965A6226A7CD50008728EE /* LogTest.cc */; };
93C70CE026C4D3F80093E927 /* CBLEncryptable.h in Headers */ = {isa = PBXBuildFile; fileRef = 93C70CD226C4D3F20093E927 /* CBLEncryptable.h */; };
93C70CE126C4D3F90093E927 /* CBLEncryptable.h in Headers */ = {isa = PBXBuildFile; fileRef = 93C70CD226C4D3F20093E927 /* CBLEncryptable.h */; settings = {ATTRIBUTES = (Public, ); }; };
93C70CE326C5B4BC0093E927 /* CBLEncryptable_CAPI.cc in Sources */ = {isa = PBXBuildFile; fileRef = 93C70CE226C5B4BC0093E927 /* CBLEncryptable_CAPI.cc */; };
93C70D1726CB334D0093E927 /* ReplicatorPropEncTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 93C70D1626CB334D0093E927 /* ReplicatorPropEncTest.cc */; };
93C70D1826CB535D0093E927 /* ReplicatorPropEncTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 93C70D1626CB334D0093E927 /* ReplicatorPropEncTest.cc */; };
93C70D3426D01B5A0093E927 /* BlobTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 93C70D3326D01B5A0093E927 /* BlobTest.cc */; };
93C70D3526D01B5A0093E927 /* BlobTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 93C70D3326D01B5A0093E927 /* BlobTest.cc */; };
93EC366226C49AF700182B02 /* CBLEncryptable_Internal.hh in Headers */ = {isa = PBXBuildFile; fileRef = 93EC365D26C498AB00182B02 /* CBLEncryptable_Internal.hh */; };
AE591AB829473A4500E4BDE8 /* CBLUserAgent.hh in Headers */ = {isa = PBXBuildFile; fileRef = AE591AB729473A4400E4BDE8 /* CBLUserAgent.hh */; };
AED22E7D291BE1B0005F065D /* QueryTest_Cpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED22E6F291BE1AF005F065D /* QueryTest_Cpp.cc */; };
AED22E7E291BE1B0005F065D /* QueryTest_Cpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED22E6F291BE1AF005F065D /* QueryTest_Cpp.cc */; };
AED22E7F291BE1B0005F065D /* QueryTest_Cpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = AED22E6F291BE1AF005F065D /* QueryTest_Cpp.cc */; };
EA34BC4C2C369895000CEA70 /* CBLPrediction.h in Headers */ = {isa = PBXBuildFile; fileRef = 4083FCB62BA3F6930061509D /* CBLPrediction.h */; };
EA34BC5A2C3698B8000CEA70 /* CBLPrediction.h in Headers */ = {isa = PBXBuildFile; fileRef = 4083FCB62BA3F6930061509D /* CBLPrediction.h */; settings = {ATTRIBUTES = (Public, ); }; };
FC09077C28A5F3EF00201B07 /* CollectionTest_Cpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = FC09077B28A5F3EF00201B07 /* CollectionTest_Cpp.cc */; };
FC09078A28A5F40200201B07 /* CollectionTest_Cpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = FC09077B28A5F3EF00201B07 /* CollectionTest_Cpp.cc */; };
FC0907E728AD763600201B07 /* DocumentTest_Cpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = FC0907E628AD763600201B07 /* DocumentTest_Cpp.cc */; };
FC0907E828AD763600201B07 /* DocumentTest_Cpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = FC0907E628AD763600201B07 /* DocumentTest_Cpp.cc */; };
FC5FBBA52821B3450066157F /* CBLCollection.cc in Sources */ = {isa = PBXBuildFile; fileRef = FC5FBBA32821B3450066157F /* CBLCollection.cc */; };
FC5FBBA62821B3450066157F /* CBLCollection_Internal.hh in Headers */ = {isa = PBXBuildFile; fileRef = FC5FBBA42821B3450066157F /* CBLCollection_Internal.hh */; };
FC5FBBB52821CC2E0066157F /* CBLCollection_CAPI.cc in Sources */ = {isa = PBXBuildFile; fileRef = FC5FBBB42821CC2E0066157F /* CBLCollection_CAPI.cc */; };
FC5FBBB72821E4970066157F /* CBLDatabase_Internal.hh in Headers */ = {isa = PBXBuildFile; fileRef = 27C9B5E021F655110040BC45 /* CBLDatabase_Internal.hh */; };
FC645E0E29085C05007D5536 /* CollectionTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = FCD8298B283591D4004AA814 /* CollectionTest.cc */; };
FC645E0F29085C0A007D5536 /* CBLTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 27B61D6921D6B60D0027CCDB /* CBLTest.cc */; };
FC645E1029085C26007D5536 /* BlobTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 93C70D3326D01B5A0093E927 /* BlobTest.cc */; };
FC645E1129085C2A007D5536 /* BlobTest_Cpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 275BC4F32204FB1400DBE7D2 /* BlobTest_Cpp.cc */; };
FC645E1229085C2E007D5536 /* CollectionTest_Cpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = FC09077B28A5F3EF00201B07 /* CollectionTest_Cpp.cc */; };
FC645E1329085C31007D5536 /* DatabaseTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 27B61DB821D6ECA70027CCDB /* DatabaseTest.cc */; };
FC645E1429085C5D007D5536 /* DatabaseTest_Cpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 277FEE5221E6BCA500B60E3C /* DatabaseTest_Cpp.cc */; };
FC645E1529085C63007D5536 /* DocumentTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = FCC063F2285BA641000C5BD7 /* DocumentTest.cc */; };
FC645E1629085C6B007D5536 /* DocumentTest_Cpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = FC0907E628AD763600201B07 /* DocumentTest_Cpp.cc */; };
FC645E1729085C6E007D5536 /* LogTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 93965A6226A7CD50008728EE /* LogTest.cc */; };
FC645E1829085C71007D5536 /* QueryTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 275B359D234D064600FE9CF0 /* QueryTest.cc */; };
FC645E1929085C75007D5536 /* ReplicatorTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 277CC99422BC23DE00B245CB /* ReplicatorTest.cc */; };
FC645E1A29085C84007D5536 /* ReplicatorCollectionTest_Cpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = FC82CE0428C6E2BD001FA083 /* ReplicatorCollectionTest_Cpp.cc */; };
FC645E1B29085C87007D5536 /* ReplicatorEETest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2736A633242E5A74002B9D65 /* ReplicatorEETest.cc */; };
FC645E1C29085C89007D5536 /* ReplicatorPropEncTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 93C70D1626CB334D0093E927 /* ReplicatorPropEncTest.cc */; };
FC645E1D29085CBF007D5536 /* CBLTest.c in Sources */ = {isa = PBXBuildFile; fileRef = 27C9B5F221F7EE670040BC45 /* CBLTest.c */; };
FC645E2029086153007D5536 /* CouchbaseLite.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 27984E0A2249A126000FE777 /* CouchbaseLite.framework */; };
FC645E2429087419007D5536 /* CouchbaseLite.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 27984E0A2249A126000FE777 /* CouchbaseLite.framework */; };
FC645E2529087419007D5536 /* CouchbaseLite.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 27984E0A2249A126000FE777 /* CouchbaseLite.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
FC645E2C29087777007D5536 /* Platform_Apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = FC645E292908756C007D5536 /* Platform_Apple.mm */; };
FC645E2D29088211007D5536 /* Platform_Apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = FC645E292908756C007D5536 /* Platform_Apple.mm */; };
FC645E2E29088211007D5536 /* Platform_Apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = FC645E292908756C007D5536 /* Platform_Apple.mm */; };
FC82CE0528C6E2BD001FA083 /* ReplicatorCollectionTest_Cpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = FC82CE0428C6E2BD001FA083 /* ReplicatorCollectionTest_Cpp.cc */; };
FC82CE1328C6E2FD001FA083 /* ReplicatorCollectionTest_Cpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = FC82CE0428C6E2BD001FA083 /* ReplicatorCollectionTest_Cpp.cc */; };
FC8678E4289C69470023F34F /* ReplicatorCollectionTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = FC8678E3289C69470023F34F /* ReplicatorCollectionTest.cc */; };
FC8678F2289C69690023F34F /* ReplicatorCollectionTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = FC8678E3289C69470023F34F /* ReplicatorCollectionTest.cc */; };
FCB96E8329007D37001C4DED /* CBLDefaults_CAPI.cc in Sources */ = {isa = PBXBuildFile; fileRef = FCB96E8229007D37001C4DED /* CBLDefaults_CAPI.cc */; };
FCB96E8429007D4F001C4DED /* CBLDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = FCB96E7429007C81001C4DED /* CBLDefaults.h */; settings = {ATTRIBUTES = (Public, ); }; };
FCB96E8529007D50001C4DED /* CBLDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = FCB96E7429007C81001C4DED /* CBLDefaults.h */; };
FCC063C928588DA6000C5BD7 /* CBLScope.cc in Sources */ = {isa = PBXBuildFile; fileRef = FCC063C828588DA6000C5BD7 /* CBLScope.cc */; };
FCC063F3285BA641000C5BD7 /* DocumentTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = FCC063F2285BA641000C5BD7 /* DocumentTest.cc */; };
FCC06403285BCAC9000C5BD7 /* DocumentTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = FCC063F2285BA641000C5BD7 /* DocumentTest.cc */; };
FCC064122862B848000C5BD7 /* CBLBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = 275BC4CC22012D8700DBE7D2 /* CBLBlob.h */; };
FCC064202862B850000C5BD7 /* CBLScope.h in Headers */ = {isa = PBXBuildFile; fileRef = FCD829B12835ECE0004AA814 /* CBLScope.h */; };
FCC064212862B851000C5BD7 /* CBLScope.h in Headers */ = {isa = PBXBuildFile; fileRef = FCD829B12835ECE0004AA814 /* CBLScope.h */; settings = {ATTRIBUTES = (Public, ); }; };
FCC064222862B859000C5BD7 /* CBL_Compat.h in Headers */ = {isa = PBXBuildFile; fileRef = 271C2A7021CAD6440045856E /* CBL_Compat.h */; };
FCC064232862B869000C5BD7 /* CouchbaseLite.h in Headers */ = {isa = PBXBuildFile; fileRef = 27B61DA321D6E40D0027CCDB /* CouchbaseLite.h */; };
FCD8298C283591D4004AA814 /* CollectionTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = FCD8298B283591D4004AA814 /* CollectionTest.cc */; };
FCD8298D283591D4004AA814 /* CollectionTest.cc in Sources */ = {isa = PBXBuildFile; fileRef = FCD8298B283591D4004AA814 /* CollectionTest.cc */; };
FCD8299D2835AC3F004AA814 /* CBLScope_Internal.hh in Headers */ = {isa = PBXBuildFile; fileRef = FCD8299C2835AC20004AA814 /* CBLScope_Internal.hh */; };
FCD829B32835EE39004AA814 /* CBLScope_CAPI.cc in Sources */ = {isa = PBXBuildFile; fileRef = FCD829B22835EE39004AA814 /* CBLScope_CAPI.cc */; };
FCD988BB2821B10300512BBD /* CBLCollection.h in Headers */ = {isa = PBXBuildFile; fileRef = FCD988AD2821B0F500512BBD /* CBLCollection.h */; };
FCD988BC2821B10400512BBD /* CBLCollection.h in Headers */ = {isa = PBXBuildFile; fileRef = FCD988AD2821B0F500512BBD /* CBLCollection.h */; settings = {ATTRIBUTES = (Public, ); }; };
FCE497192907917300EF2354 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = FCE497182907917300EF2354 /* AppDelegate.m */; };
FCE4971C2907917300EF2354 /* SceneDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = FCE4971B2907917300EF2354 /* SceneDelegate.m */; };
FCE4971F2907917300EF2354 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = FCE4971E2907917300EF2354 /* ViewController.m */; };
FCE497222907917300EF2354 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = FCE497202907917300EF2354 /* Main.storyboard */; };
FCE497242907917400EF2354 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = FCE497232907917400EF2354 /* Assets.xcassets */; };
FCE497272907917400EF2354 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = FCE497252907917400EF2354 /* LaunchScreen.storyboard */; };
FCE4972A2907917400EF2354 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = FCE497292907917400EF2354 /* main.m */; };
FCE497C02907959400EF2354 /* LibC++Debug.cc in Sources */ = {isa = PBXBuildFile; fileRef = 27DBCF41246B81EE002FD7A7 /* LibC++Debug.cc */; };
FCE497D32907963900EF2354 /* CBLCatchTests.mm in Sources */ = {isa = PBXBuildFile; fileRef = FCE497332907917500EF2354 /* CBLCatchTests.mm */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
1B21A7D42D70E760000CA0D5 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 271C2A3821CAD5950045856E /* LiteCore.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = 27FC81E71EAAB0D90028E38E;
remoteInfo = "LiteCoreREST static";
};
271A989F243C0852008C032D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 271C2A3821CAD5950045856E /* LiteCore.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = 2771A097228624C000B18E0A;
remoteInfo = LiteCoreWebSocket;
};
271C2A4E21CAD5950045856E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 271C2A3821CAD5950045856E /* LiteCore.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 27EF81121917EEC600A327B9;
remoteInfo = "LiteCore static";
};
271C2A5021CAD5950045856E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 271C2A3821CAD5950045856E /* LiteCore.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 720EA3F51BA7EAD9002B8416;
remoteInfo = "LiteCore dylib";
};
271C2A5221CAD5950045856E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 271C2A3821CAD5950045856E /* LiteCore.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 27B64934206971FB00FC12F7;
remoteInfo = "LiteCore framework";
};
271C2A5421CAD5950045856E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 271C2A3821CAD5950045856E /* LiteCore.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 27FC81E81EAAB0D90028E38E;
remoteInfo = "LiteCoreREST static";
};
271C2A5A21CAD5950045856E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 271C2A3821CAD5950045856E /* LiteCore.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 2708FE521CF4CC880022F721;
remoteInfo = LiteCoreCppTests;
};
271C2A5C21CAD5950045856E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 271C2A3821CAD5950045856E /* LiteCore.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 274D04081BA75E1C00FF7C35;
remoteInfo = C4Tests;
};
271C2A6021CAD5950045856E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 271C2A3821CAD5950045856E /* LiteCore.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 27DF7D631F4236500022F3DF;
remoteInfo = SQLite;
};
271C2A6221CAD5950045856E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 271C2A3821CAD5950045856E /* LiteCore.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 27EF807419142C2500A327B9;
remoteInfo = Tokenizer;
};
271C2A6621CAD5950045856E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 271C2A3821CAD5950045856E /* LiteCore.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 27139B3018F8E9750021A9A3;
remoteInfo = "LiteCore XCTests";
};
271C2A6821CAD5950045856E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 271C2A3821CAD5950045856E /* LiteCore.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 27A924941D9B316D00086206;
remoteInfo = "LiteCore-iOS";
};
271C2A6C21CAD5950045856E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 271C2A3821CAD5950045856E /* LiteCore.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 27A924AC1D9B316D00086206;
remoteInfo = "LiteCore-iOS Tests";
};
271C2A7A21CC86E10045856E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 271C2A3821CAD5950045856E /* LiteCore.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = 27EF80F91917EEC600A327B9;
remoteInfo = "LiteCore static";
};
272F012E2279038600E62F72 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 271C2A1B21CAC8920045856E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 271C2A2221CAC8920045856E;
remoteInfo = CBL_C;
};
275B358F234BCF6900FE9CF0 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 271C2A1B21CAC8920045856E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 27B61D6F21D6B64A0027CCDB;
remoteInfo = "CBL_C Dylib";
};
277CC9A522BC23DF00B245CB /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 271C2A3821CAD5950045856E /* LiteCore.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 2771A098228624C000B18E0A;
remoteInfo = LiteCoreWebSocket;
};
277CC9AC22BC3E2800B245CB /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 271C2A3821CAD5950045856E /* LiteCore.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = 2771A097228624C000B18E0A;
remoteInfo = LiteCoreWebSocket;
};
279157C624E1CAC8008B56FE /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 271C2A3821CAD5950045856E /* LiteCore.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 278F476724C9131000E1CA7A;
remoteInfo = "iOS Perf Test";
};
27984E222249A1A0000FE777 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 271C2A1B21CAC8920045856E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 271C2A2221CAC8920045856E;
remoteInfo = CBL_C;
};
27984E242249A1A6000FE777 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 271C2A3821CAD5950045856E /* LiteCore.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = 27EF80F91917EEC600A327B9;
remoteInfo = "LiteCore static";
};
27B61D7B21D6B6680027CCDB /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 271C2A1B21CAC8920045856E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 271C2A2221CAC8920045856E;
remoteInfo = CBL_C;
};
27B61DB621D6EBE00027CCDB /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 271C2A1B21CAC8920045856E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 27B61D6F21D6B64A0027CCDB;
remoteInfo = "CBL_C Dylib";
};
27B61DBD21D707910027CCDB /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 271C2A3821CAD5950045856E /* LiteCore.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = 27EF80F91917EEC600A327B9;
remoteInfo = "LiteCore static";
};
FC645E2629087419007D5536 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 271C2A1B21CAC8920045856E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 27984E092249A126000FE777;
remoteInfo = "CBL_C Framework";
};
FCE497302907917400EF2354 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 271C2A1B21CAC8920045856E /* Project object */;
proxyType = 1;
remoteGlobalIDString = FCE497142907917300EF2354;
remoteInfo = "CouchbaseLiteTests-iOS-App";
};
/* End PBXContainerItemProxy section */
/* Begin PBXCopyFilesBuildPhase section */
27B61DA621D6E49D0027CCDB /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = /usr/share/man/man1/;
dstSubfolderSpec = 0;
files = (
);
runOnlyForDeploymentPostprocessing = 1;
};
FCE497DB2907996400EF2354 /* Embed Frameworks */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 10;
files = (
FC645E2529087419007D5536 /* CouchbaseLite.framework in Embed Frameworks */,
);
name = "Embed Frameworks";
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
1B21A7D82D711B29000CA0D5 /* URLEndpointListenerTest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = URLEndpointListenerTest.cc; sourceTree = "<group>"; };
1BC5D95F2D6E3BD10080153E /* CBLURLEndpointListener.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CBLURLEndpointListener.h; sourceTree = "<group>"; };
1BC5D9652D6E4DA60080153E /* CBLURLEndpointListener_CAPI.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CBLURLEndpointListener_CAPI.cc; sourceTree = "<group>"; };
1BC5D9672D6E50960080153E /* CBLURLEndpointListener_Internal.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = CBLURLEndpointListener_Internal.hh; sourceTree = "<group>"; };
2716F8F5247D9D6700BE21D9 /* exports */ = {isa = PBXFileReference; lastKnownFileType = folder; path = exports; sourceTree = "<group>"; };
271A98AF243FDF55008C032D /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
271C2A2321CAC8920045856E /* libcblite-static.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libcblite-static.a"; sourceTree = BUILT_PRODUCTS_DIR; };
271C2A2C21CAC98F0045856E /* CBLReplicator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CBLReplicator.h; sourceTree = "<group>"; };
271C2A2D21CAC98F0045856E /* CBLBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CBLBase.h; sourceTree = "<group>"; };
271C2A2E21CAC98F0045856E /* CBLDocument.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CBLDocument.h; sourceTree = "<group>"; };
271C2A2F21CAC98F0045856E /* CBLDatabase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CBLDatabase.h; sourceTree = "<group>"; };
271C2A3021CAC98F0045856E /* CBLQuery.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CBLQuery.h; sourceTree = "<group>"; };
271C2A3821CAD5950045856E /* LiteCore.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = LiteCore.xcodeproj; path = "couchbase-lite-core/Xcode/LiteCore.xcodeproj"; sourceTree = "<group>"; };
271C2A6E21CAD5B30045856E /* CBLBase_CAPI.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CBLBase_CAPI.cc; sourceTree = "<group>"; };
271C2A7021CAD6440045856E /* CBL_Compat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CBL_Compat.h; sourceTree = "<group>"; };
271C2A7121CADB170045856E /* CBLDatabase.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CBLDatabase.cc; sourceTree = "<group>"; };
271C2A7421CC4BD60045856E /* Internal.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = Internal.cc; sourceTree = "<group>"; };
271C2A7721CC750E0045856E /* CBLDocument.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CBLDocument.cc; sourceTree = "<group>"; };
271C2A7921CC756A0045856E /* Internal.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = Internal.hh; sourceTree = "<group>"; };
27310FD7235F686D0046F8C8 /* CBL_Framework_Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = CBL_Framework_Debug.xcconfig; sourceTree = "<group>"; };
2736A625242E5A07002B9D65 /* ReplicatorTest.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = ReplicatorTest.hh; sourceTree = "<group>"; };
2736A633242E5A74002B9D65 /* ReplicatorEETest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = ReplicatorEETest.cc; sourceTree = "<group>"; };
273CD2D025E81C8F00B93C59 /* cmake */ = {isa = PBXFileReference; lastKnownFileType = folder; path = cmake; sourceTree = "<group>"; };
275B3567234810C400FE9CF0 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
275B357C234812C800FE9CF0 /* CouchbaseLiteTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CouchbaseLiteTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
275B358823481C5200FE9CF0 /* CouchbaseLiteTests.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = CouchbaseLiteTests.xcconfig; sourceTree = "<group>"; };
275B3593234BDB2700FE9CF0 /* CBLTestsMain.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CBLTestsMain.cpp; sourceTree = "<group>"; };
275B3597234C158400FE9CF0 /* CouchbaseLiteTests.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = CouchbaseLiteTests.mm; path = test/CouchbaseLiteTests.mm; sourceTree = SOURCE_ROOT; };
275B359D234D064600FE9CF0 /* QueryTest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = QueryTest.cc; sourceTree = "<group>"; };
275BC4CC22012D8700DBE7D2 /* CBLBlob.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CBLBlob.h; sourceTree = "<group>"; };
275BC4DD2201323700DBE7D2 /* CBLBlob_CAPI.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CBLBlob_CAPI.cc; sourceTree = "<group>"; };
275BC4E22204E6A800DBE7D2 /* Blob.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = Blob.hh; sourceTree = "<group>"; };
275BC4F32204FB1400DBE7D2 /* BlobTest_Cpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = BlobTest_Cpp.cc; sourceTree = "<group>"; };
275BC4F52209080E00DBE7D2 /* CBLBlob_Internal.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = CBLBlob_Internal.hh; sourceTree = "<group>"; };
275FA3342236E54D001C392D /* CBLPrivate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CBLPrivate.h; sourceTree = "<group>"; };
276633A52602815000B9BD36 /* CBLDatabase_CAPI.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CBLDatabase_CAPI.cc; sourceTree = "<group>"; };
276634182605338300B9BD36 /* CBLDocument_CAPI.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CBLDocument_CAPI.cc; sourceTree = "<group>"; };
277B77C6245B44BE00B222D3 /* CBLLog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CBLLog.h; sourceTree = "<group>"; };
277B77D4245B44E900B222D3 /* CBLLog.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CBLLog.cc; sourceTree = "<group>"; };
277CC99422BC23DE00B245CB /* ReplicatorTest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = ReplicatorTest.cc; sourceTree = "<group>"; };
277CC9B122BC4E2E00B245CB /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
277FEE3D21DEF0C700B60E3C /* Base.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = Base.hh; sourceTree = "<group>"; };
277FEE4E21DEF54D00B60E3C /* Document.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = Document.hh; sourceTree = "<group>"; };
277FEE4F21E6AB1100B60E3C /* Query.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = Query.hh; sourceTree = "<group>"; };
277FEE5021E6BC2100B60E3C /* CouchbaseLite.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = CouchbaseLite.hh; sourceTree = "<group>"; };
277FEE5221E6BCA500B60E3C /* DatabaseTest_Cpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = DatabaseTest_Cpp.cc; sourceTree = "<group>"; };
277FEE7421ED3C4900B60E3C /* CBLReplicator_CAPI.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CBLReplicator_CAPI.cc; sourceTree = "<group>"; };
277FEE7621ED62AA00B60E3C /* CBLReplicatorConfig.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = CBLReplicatorConfig.hh; sourceTree = "<group>"; };
277FEE7A21ED6C0000B60E3C /* CBLDocument_Internal.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = CBLDocument_Internal.hh; sourceTree = "<group>"; };
27886C8B21F64C1400069BEA /* Listener.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = Listener.hh; sourceTree = "<group>"; };
27886C8C21F64C1400069BEA /* Listener.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = Listener.cc; sourceTree = "<group>"; };
27984DF422499ED4000FE777 /* CouchbaseLite.modulemap */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.module-map"; path = CouchbaseLite.modulemap; sourceTree = "<group>"; };
27984E0A2249A126000FE777 /* CouchbaseLite.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = CouchbaseLite.framework; sourceTree = BUILT_PRODUCTS_DIR; };
27984E0D2249A127000FE777 /* Framework-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Framework-Info.plist"; sourceTree = "<group>"; };
27984E412249ACD2000FE777 /* CBL_Framework.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = CBL_Framework.xcconfig; sourceTree = "<group>"; };
27984E482249AF44000FE777 /* CBL_Dylib_Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = CBL_Dylib_Release.xcconfig; sourceTree = "<group>"; };
27984E492249AF61000FE777 /* CBL_Framework_Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = CBL_Framework_Release.xcconfig; sourceTree = "<group>"; };
27A63F252633408000634F7B /* CBLTest_Cpp.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = CBLTest_Cpp.hh; sourceTree = "<group>"; };
27B61D5521D5ABA60027CCDB /* CBLQuery_CAPI.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CBLQuery_CAPI.cc; sourceTree = "<group>"; };
27B61D6821D6B60D0027CCDB /* CBLTest.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = CBLTest.hh; sourceTree = "<group>"; };
27B61D6921D6B60D0027CCDB /* CBLTest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CBLTest.cc; sourceTree = "<group>"; };
27B61D7021D6B64A0027CCDB /* libcblite.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libcblite.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
27B61D7E21D6B6900027CCDB /* dylib_main.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = dylib_main.cc; sourceTree = "<group>"; };
27B61D8121D6B8230027CCDB /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
27B61D8521D6BA2A0027CCDB /* Project.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Project.xcconfig; sourceTree = "<group>"; };
27B61D8621D6BAB10027CCDB /* CBL_static.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = CBL_static.xcconfig; sourceTree = "<group>"; };
27B61D8721D6BAB10027CCDB /* Project_Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Project_Release.xcconfig; sourceTree = "<group>"; };
27B61D8821D6BAB10027CCDB /* CBL_dylib.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = CBL_dylib.xcconfig; sourceTree = "<group>"; };
27B61D8921D6BAB10027CCDB /* Project_Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Project_Debug.xcconfig; sourceTree = "<group>"; };
27B61DA321D6E40D0027CCDB /* CouchbaseLite.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CouchbaseLite.h; sourceTree = "<group>"; };
27B61DA821D6E49D0027CCDB /* CBL_Tests */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = CBL_Tests; sourceTree = BUILT_PRODUCTS_DIR; };
27B61DB021D6E53D0027CCDB /* CBL_Tests.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = CBL_Tests.xcconfig; sourceTree = "<group>"; };
27B61DB821D6ECA70027CCDB /* DatabaseTest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = DatabaseTest.cc; sourceTree = "<group>"; };
27B61DBA21D6FF2D0027CCDB /* libfleeceBase.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libfleeceBase.a; sourceTree = BUILT_PRODUCTS_DIR; };
27B61DBF21DD33930027CCDB /* Doxyfile */ = {isa = PBXFileReference; lastKnownFileType = text; path = Doxyfile; sourceTree = "<group>"; };
27B61DC321DEE1C20027CCDB /* CMakeLists.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = CMakeLists.txt; sourceTree = "<group>"; };
27B61DD421DEE5DC0027CCDB /* CMakeLists.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = CMakeLists.txt; sourceTree = "<group>"; };
27B61DD821DEEC540027CCDB /* Database.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = Database.hh; sourceTree = "<group>"; };
27C9B5DB21F296C10040BC45 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
27C9B5E021F655110040BC45 /* CBLDatabase_Internal.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = CBLDatabase_Internal.hh; sourceTree = "<group>"; };
27C9B5F121F7D74A0040BC45 /* Replicator.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = Replicator.hh; sourceTree = "<group>"; };
27C9B5F221F7EE670040BC45 /* CBLTest.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CBLTest.c; sourceTree = "<group>"; };
27D055892358FA40009BB0A1 /* Project_Debug_EE.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Project_Debug_EE.xcconfig; sourceTree = "<group>"; };
27D0558A2358FA67009BB0A1 /* Project_Release_EE.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Project_Release_EE.xcconfig; sourceTree = "<group>"; };
27D11BED2351043B00C58A70 /* ConflictResolver.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = ConflictResolver.hh; sourceTree = "<group>"; };
27D11BEE2351043B00C58A70 /* ConflictResolver.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = ConflictResolver.cc; sourceTree = "<group>"; };
27D11BFF235140E300C58A70 /* CBLReplicator_Internal.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = CBLReplicator_Internal.hh; sourceTree = "<group>"; };
27D30F9123A2D30500392107 /* PerfTest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PerfTest.cc; sourceTree = "<group>"; };
27DBCF2E246B4352002FD7A7 /* CBLQuery_Internal.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = CBLQuery_Internal.hh; sourceTree = "<group>"; };
27DBCF41246B81EE002FD7A7 /* LibC++Debug.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = "LibC++Debug.cc"; sourceTree = "<group>"; };
27DBD096246C99AF002FD7A7 /* mergeIntoStaticLib.sh */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = mergeIntoStaticLib.sh; sourceTree = "<group>"; };
27DBD097246C9DE7002FD7A7 /* CBLDatabase+Apple.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = "CBLDatabase+Apple.mm"; sourceTree = "<group>"; };
400983502D0769630029F26E /* CBLLogSinks.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CBLLogSinks.h; sourceTree = "<group>"; };
400983532D07B8500029F26E /* CBLLogSinks_Internal.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = CBLLogSinks_Internal.hh; sourceTree = "<group>"; };
400983542D07B8500029F26E /* CBLLogSinks.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CBLLogSinks.cc; sourceTree = "<group>"; };
4009839D2D0917BB0029F26E /* CBLLogSinks_CAPI.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CBLLogSinks_CAPI.cc; sourceTree = "<group>"; };
400AB0412C2E669500DB6223 /* VectorSearchTest_Cpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = VectorSearchTest_Cpp.cc; sourceTree = "<group>"; };
400AB0522C2E66B500DB6223 /* QueryIndex.hh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = QueryIndex.hh; sourceTree = "<group>"; };
400AB0542C2E7AC300DB6223 /* VectorIndex.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = VectorIndex.hh; sourceTree = "<group>"; };
4022546D29355576000FBAC8 /* assets */ = {isa = PBXFileReference; lastKnownFileType = folder; path = assets; sourceTree = "<group>"; };
406E46D22BACAEFF0088198C /* VectorSearchTest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = VectorSearchTest.cc; sourceTree = "<group>"; };
406E46E72BAD3BB30088198C /* cmake */ = {isa = PBXFileReference; lastKnownFileType = folder; path = cmake; sourceTree = "<group>"; };
406F8D6F2C17E191000223FC /* CBLQueryTypes.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CBLQueryTypes.h; sourceTree = "<group>"; };
406F8D802C17E3B4000223FC /* CBLQueryIndexTypes.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CBLQueryIndexTypes.h; sourceTree = "<group>"; };
406F8D852C180611000223FC /* cmake */ = {isa = PBXFileReference; lastKnownFileType = folder; path = cmake; sourceTree = "<group>"; };
4083FC9F2BA3A4390061509D /* CBLVectorIndexConfig.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = CBLVectorIndexConfig.hh; sourceTree = "<group>"; };
4083FCAE2BA3B8B00061509D /* CBLVectorIndexConfig_CAPI.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CBLVectorIndexConfig_CAPI.cc; sourceTree = "<group>"; };
4083FCB62BA3F6930061509D /* CBLPrediction.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CBLPrediction.h; sourceTree = "<group>"; };
4083FCBB2BA8DE200061509D /* CBLPrediction_CAPI.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CBLPrediction_CAPI.cc; sourceTree = "<group>"; };
4083FCBF2BAA203A0061509D /* CBLPrediction_Internal.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = CBLPrediction_Internal.hh; sourceTree = "<group>"; };
4083FCC12BAA38F30061509D /* CBLPrediction.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CBLPrediction.cc; sourceTree = "<group>"; };
40ACB2382C2F20DA00CBE8F2 /* Prediction.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = Prediction.hh; sourceTree = "<group>"; };
40E32F3F2D2F3ED4000CED57 /* LogSinks.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = LogSinks.hh; sourceTree = "<group>"; };
40E32F412D2F45A3000CED57 /* LogTest_Cpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = LogTest_Cpp.cc; sourceTree = "<group>"; };
40E7CA632BFE7336004BE7E1 /* ContextManager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ContextManager.cc; sourceTree = "<group>"; };
40E7CA722BFE7336004BE7E1 /* ContextManager.hh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = ContextManager.hh; sourceTree = "<group>"; };
40F902C82B9F7AF6002EA0A0 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
40FE2DC22C08245E005E99E9 /* CBLQueryIndex.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CBLQueryIndex.h; sourceTree = "<group>"; };
40FE2DD52C092578005E99E9 /* CBLQueryIndex_CAPI.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CBLQueryIndex_CAPI.cc; sourceTree = "<group>"; };
40FE2DD72C0926FF005E99E9 /* CBLQueryIndex.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CBLQueryIndex.cc; sourceTree = "<group>"; };
40FE2DD82C0926FF005E99E9 /* CBLQueryIndex_Internal.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = CBLQueryIndex_Internal.hh; sourceTree = "<group>"; };
40FE2DFE2C12AEEB005E99E9 /* LazyVectorIndexTest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = LazyVectorIndexTest.cc; sourceTree = "<group>"; };
40FE2E0F2C12AF52005E99E9 /* VectorSearchTest.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = VectorSearchTest.hh; sourceTree = "<group>"; };
42D1B68F2978AD31003B9871 /* CBLUserAgent.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = CBLUserAgent.mm; sourceTree = "<group>"; };
932062DA26BC6B43006917A5 /* CBLQuery.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CBLQuery.cc; sourceTree = "<group>"; };
9320630126BDB340006917A5 /* CBLPlatform.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CBLPlatform.h; sourceTree = "<group>"; };
9320631126BDB5CA006917A5 /* CBLPlatform_CAPI+Android.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = "CBLPlatform_CAPI+Android.cc"; sourceTree = "<group>"; };
9320631426BDD059006917A5 /* CBLDatabase+Android.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = "CBLDatabase+Android.cc"; sourceTree = "<group>"; };
934AD381270E797D0038D62E /* CBLLog_Internal.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = CBLLog_Internal.hh; sourceTree = "<group>"; };
93965A6226A7CD50008728EE /* LogTest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = LogTest.cc; sourceTree = "<group>"; };
93C70CD226C4D3F20093E927 /* CBLEncryptable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CBLEncryptable.h; sourceTree = "<group>"; };
93C70CE226C5B4BC0093E927 /* CBLEncryptable_CAPI.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CBLEncryptable_CAPI.cc; sourceTree = "<group>"; };
93C70D1626CB334D0093E927 /* ReplicatorPropEncTest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = ReplicatorPropEncTest.cc; sourceTree = "<group>"; };
93C70D3326D01B5A0093E927 /* BlobTest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = BlobTest.cc; sourceTree = "<group>"; };
93D0AFF1262619B800777AFC /* generate_edition_header.sh */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = generate_edition_header.sh; sourceTree = "<group>"; };
93E490C326BDE10F0091B587 /* DatabaseTest_Android.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = DatabaseTest_Android.cc; sourceTree = "<group>"; };
93EC365D26C498AB00182B02 /* CBLEncryptable_Internal.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = CBLEncryptable_Internal.hh; sourceTree = "<group>"; };
AE591AB729473A4400E4BDE8 /* CBLUserAgent.hh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = CBLUserAgent.hh; sourceTree = "<group>"; };
AED22E6F291BE1AF005F065D /* QueryTest_Cpp.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = QueryTest_Cpp.cc; sourceTree = "<group>"; };
FC09077B28A5F3EF00201B07 /* CollectionTest_Cpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CollectionTest_Cpp.cc; sourceTree = "<group>"; };
FC0907E628AD763600201B07 /* DocumentTest_Cpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = DocumentTest_Cpp.cc; sourceTree = "<group>"; };
FC5FBBA32821B3450066157F /* CBLCollection.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CBLCollection.cc; sourceTree = "<group>"; };
FC5FBBA42821B3450066157F /* CBLCollection_Internal.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = CBLCollection_Internal.hh; sourceTree = "<group>"; };
FC5FBBB42821CC2E0066157F /* CBLCollection_CAPI.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CBLCollection_CAPI.cc; sourceTree = "<group>"; };
FC645E282908756C007D5536 /* Platform_Apple.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = Platform_Apple.hh; sourceTree = "<group>"; };
FC645E292908756C007D5536 /* Platform_Apple.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = Platform_Apple.mm; sourceTree = "<group>"; };
FC82CE0428C6E2BD001FA083 /* ReplicatorCollectionTest_Cpp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = ReplicatorCollectionTest_Cpp.cc; sourceTree = "<group>"; };
FC8678E3289C69470023F34F /* ReplicatorCollectionTest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = ReplicatorCollectionTest.cc; sourceTree = "<group>"; };
FCB96E7429007C81001C4DED /* CBLDefaults.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CBLDefaults.h; sourceTree = "<group>"; };
FCB96E8229007D37001C4DED /* CBLDefaults_CAPI.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CBLDefaults_CAPI.cc; sourceTree = "<group>"; };
FCC063C828588DA6000C5BD7 /* CBLScope.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CBLScope.cc; sourceTree = "<group>"; };
FCC063F2285BA641000C5BD7 /* DocumentTest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = DocumentTest.cc; sourceTree = "<group>"; };
FCC064BD287CBD95000C5BD7 /* Collection.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = Collection.hh; sourceTree = "<group>"; };
FCCE06402908EF5800B420AF /* CouchbaseLiteTests-iOS-App.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "CouchbaseLiteTests-iOS-App.xcconfig"; sourceTree = "<group>"; };
FCCE064E2908EF5900B420AF /* CouchbaseLiteTests-iOS.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "CouchbaseLiteTests-iOS.xcconfig"; sourceTree = "<group>"; };
FCD8298B283591D4004AA814 /* CollectionTest.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CollectionTest.cc; sourceTree = "<group>"; };
FCD8299C2835AC20004AA814 /* CBLScope_Internal.hh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = CBLScope_Internal.hh; sourceTree = "<group>"; };
FCD829B12835ECE0004AA814 /* CBLScope.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CBLScope.h; sourceTree = "<group>"; };
FCD829B22835EE39004AA814 /* CBLScope_CAPI.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CBLScope_CAPI.cc; sourceTree = "<group>"; };
FCD988AD2821B0F500512BBD /* CBLCollection.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CBLCollection.h; sourceTree = "<group>"; };
FCE497152907917300EF2354 /* CouchbaseLiteTests.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = CouchbaseLiteTests.app; sourceTree = BUILT_PRODUCTS_DIR; };
FCE497172907917300EF2354 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
FCE497182907917300EF2354 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
FCE4971A2907917300EF2354 /* SceneDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SceneDelegate.h; sourceTree = "<group>"; };
FCE4971B2907917300EF2354 /* SceneDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SceneDelegate.m; sourceTree = "<group>"; };
FCE4971D2907917300EF2354 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
FCE4971E2907917300EF2354 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
FCE497212907917300EF2354 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
FCE497232907917400EF2354 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
FCE497262907917400EF2354 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
FCE497282907917400EF2354 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
FCE497292907917400EF2354 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
FCE4972F2907917400EF2354 /* CouchbaseLiteTests-iOS.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "CouchbaseLiteTests-iOS.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
FCE497332907917500EF2354 /* CBLCatchTests.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = CBLCatchTests.mm; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
275B3579234812C700FE9CF0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
275B3591234BCF7500FE9CF0 /* libcblite.dylib in Frameworks */,
273CE7E22452123400D01CA2 /* libfleeceBase.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
27984E072249A126000FE777 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
27984E262249A1BE000FE777 /* libcblite-static.a in Frameworks */,
275B358723481AE700FE9CF0 /* Foundation.framework in Frameworks */,
6938073022DE96C200727053 /* Security.framework in Frameworks */,
27DBD09C246CA60E002FD7A7 /* SystemConfiguration.framework in Frameworks */,
27984E282249A1EE000FE777 /* libz.tbd in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
27B61D6E21D6B64A0027CCDB /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
27B61D7D21D6B66F0027CCDB /* libcblite-static.a in Frameworks */,
275B3576234810C400FE9CF0 /* Foundation.framework in Frameworks */,
277CC9C022BC4E2E00B245CB /* Security.framework in Frameworks */,
271A98B0243FDF56008C032D /* SystemConfiguration.framework in Frameworks */,
27B61D8221D6B8230027CCDB /* libz.tbd in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
27B61DA521D6E49D0027CCDB /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
27B61DBB21D6FF2D0027CCDB /* libfleeceBase.a in Frameworks */,
27B61DB521D6EBDD0027CCDB /* libcblite.dylib in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
FCE497122907917300EF2354 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
FC645E2429087419007D5536 /* CouchbaseLite.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
FCE4972C2907917400EF2354 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
FC645E2029086153007D5536 /* CouchbaseLite.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
271C2A1A21CAC8920045856E = {
isa = PBXGroup;
children = (
27C9B5DB21F296C10040BC45 /* README.md */,
271C2A2A21CAC93B0045856E /* include */,
271C2A3621CAC9A50045856E /* src */,
27B61D6721D6B5DA0027CCDB /* test */,
27B61DBF21DD33930027CCDB /* Doxyfile */,
27B61DC321DEE1C20027CCDB /* CMakeLists.txt */,
273CD2D025E81C8F00B93C59 /* cmake */,
27B61D8321D6B9F60027CCDB /* Xcode */,
271C2A3721CAC9B50045856E /* vendor */,
271C2A2421CAC8920045856E /* Products */,
271C2A7C21CC86EB0045856E /* Frameworks */,
);
sourceTree = "<group>";
};
271C2A2421CAC8920045856E /* Products */ = {
isa = PBXGroup;
children = (
271C2A2321CAC8920045856E /* libcblite-static.a */,
27B61D7021D6B64A0027CCDB /* libcblite.dylib */,
27B61DA821D6E49D0027CCDB /* CBL_Tests */,
27984E0A2249A126000FE777 /* CouchbaseLite.framework */,
275B357C234812C800FE9CF0 /* CouchbaseLiteTests.xctest */,
FCE497152907917300EF2354 /* CouchbaseLiteTests.app */,
FCE4972F2907917400EF2354 /* CouchbaseLiteTests-iOS.xctest */,
);
name = Products;
sourceTree = "<group>";
};
271C2A2A21CAC93B0045856E /* include */ = {
isa = PBXGroup;
children = (
271C2A2B21CAC93B0045856E /* cbl */,
277FEE6321ED37D500B60E3C /* cbl++ */,
);
path = include;
sourceTree = "<group>";
};
271C2A2B21CAC93B0045856E /* cbl */ = {
isa = PBXGroup;
children = (
27B61DA321D6E40D0027CCDB /* CouchbaseLite.h */,
271C2A2D21CAC98F0045856E /* CBLBase.h */,
275BC4CC22012D8700DBE7D2 /* CBLBlob.h */,
FCD988AD2821B0F500512BBD /* CBLCollection.h */,
271C2A2F21CAC98F0045856E /* CBLDatabase.h */,
FCB96E7429007C81001C4DED /* CBLDefaults.h */,
271C2A2E21CAC98F0045856E /* CBLDocument.h */,
93C70CD226C4D3F20093E927 /* CBLEncryptable.h */,
277B77C6245B44BE00B222D3 /* CBLLog.h */,
400983502D0769630029F26E /* CBLLogSinks.h */,
9320630126BDB340006917A5 /* CBLPlatform.h */,
4083FCB62BA3F6930061509D /* CBLPrediction.h */,
271C2A3021CAC98F0045856E /* CBLQuery.h */,
40FE2DC22C08245E005E99E9 /* CBLQueryIndex.h */,
406F8D802C17E3B4000223FC /* CBLQueryIndexTypes.h */,
406F8D6F2C17E191000223FC /* CBLQueryTypes.h */,
271C2A2C21CAC98F0045856E /* CBLReplicator.h */,
FCD829B12835ECE0004AA814 /* CBLScope.h */,
1BC5D95F2D6E3BD10080153E /* CBLURLEndpointListener.h */,
271C2A7021CAD6440045856E /* CBL_Compat.h */,
);
path = cbl;
sourceTree = "<group>";
};
271C2A3621CAC9A50045856E /* src */ = {
isa = PBXGroup;
children = (
275BC4F52209080E00DBE7D2 /* CBLBlob_Internal.hh */,
FC5FBBA32821B3450066157F /* CBLCollection.cc */,
FC5FBBA42821B3450066157F /* CBLCollection_Internal.hh */,
271C2A7121CADB170045856E /* CBLDatabase.cc */,
27C9B5E021F655110040BC45 /* CBLDatabase_Internal.hh */,
27DBD097246C9DE7002FD7A7 /* CBLDatabase+Apple.mm */,
9320631426BDD059006917A5 /* CBLDatabase+Android.cc */,
271C2A7721CC750E0045856E /* CBLDocument.cc */,
277FEE7A21ED6C0000B60E3C /* CBLDocument_Internal.hh */,
93EC365D26C498AB00182B02 /* CBLEncryptable_Internal.hh */,
277FEE7621ED62AA00B60E3C /* CBLReplicatorConfig.hh */,
934AD381270E797D0038D62E /* CBLLog_Internal.hh */,
277B77D4245B44E900B222D3 /* CBLLog.cc */,
400983532D07B8500029F26E /* CBLLogSinks_Internal.hh */,
400983542D07B8500029F26E /* CBLLogSinks.cc */,
4083FCBF2BAA203A0061509D /* CBLPrediction_Internal.hh */,
4083FCC12BAA38F30061509D /* CBLPrediction.cc */,
932062DA26BC6B43006917A5 /* CBLQuery.cc */,
27DBCF2E246B4352002FD7A7 /* CBLQuery_Internal.hh */,
40FE2DD72C0926FF005E99E9 /* CBLQueryIndex.cc */,
40FE2DD82C0926FF005E99E9 /* CBLQueryIndex_Internal.hh */,
4083FC9F2BA3A4390061509D /* CBLVectorIndexConfig.hh */,
27D11BFF235140E300C58A70 /* CBLReplicator_Internal.hh */,
FCC063C828588DA6000C5BD7 /* CBLScope.cc */,
FCD8299C2835AC20004AA814 /* CBLScope_Internal.hh */,
1BC5D9672D6E50960080153E /* CBLURLEndpointListener_Internal.hh */,
AE591AB729473A4400E4BDE8 /* CBLUserAgent.hh */,
42D1B68F2978AD31003B9871 /* CBLUserAgent.mm */,
27D11BEE2351043B00C58A70 /* ConflictResolver.cc */,
27D11BED2351043B00C58A70 /* ConflictResolver.hh */,
40E7CA632BFE7336004BE7E1 /* ContextManager.cc */,
40E7CA722BFE7336004BE7E1 /* ContextManager.hh */,
271C2A7421CC4BD60045856E /* Internal.cc */,
271C2A7921CC756A0045856E /* Internal.hh */,
27886C8C21F64C1400069BEA /* Listener.cc */,
27886C8B21F64C1400069BEA /* Listener.hh */,
275FA3342236E54D001C392D /* CBLPrivate.h */,
27229262260BD3D600A3A41F /* C Glue */,
27B61D7E21D6B6900027CCDB /* dylib_main.cc */,
2716F8F5247D9D6700BE21D9 /* exports */,
);
path = src;
sourceTree = "<group>";
};
271C2A3721CAC9B50045856E /* vendor */ = {
isa = PBXGroup;
children = (
271C2A3821CAD5950045856E /* LiteCore.xcodeproj */,
);
path = vendor;
sourceTree = "<group>";
};
271C2A3921CAD5950045856E /* Products */ = {
isa = PBXGroup;
children = (
271C2A4F21CAD5950045856E /* libLiteCore-static.a */,
271C2A5121CAD5950045856E /* libLiteCore.dylib */,
271C2A5321CAD5950045856E /* LiteCore.framework */,
271C2A5521CAD5950045856E /* libLiteCoreREST-static.a */,
277CC9A622BC23DF00B245CB /* libLiteCoreWebSocket.a */,
271C2A5B21CAD5950045856E /* LiteCoreCppTests */,
271C2A5D21CAD5950045856E /* C4Tests */,
271C2A6721CAD5950045856E /* LiteCoreTests.xctest */,
271C2A6121CAD5950045856E /* libSQLite.a */,
271C2A6321CAD5950045856E /* libTokenizer.a */,
279157C724E1CAC8008B56FE /* iOS Perf Test.app */,
271C2A6921CAD5950045856E /* LiteCore-iOS.app */,
271C2A6D21CAD5950045856E /* LiteCore-iOS Tests.xctest */,
);
name = Products;
sourceTree = "<group>";
};
271C2A7C21CC86EB0045856E /* Frameworks */ = {
isa = PBXGroup;
children = (
271A98AF243FDF55008C032D /* SystemConfiguration.framework */,
275B3567234810C400FE9CF0 /* Foundation.framework */,
277CC9B122BC4E2E00B245CB /* Security.framework */,
27B61DBA21D6FF2D0027CCDB /* libfleeceBase.a */,
27B61D8121D6B8230027CCDB /* libz.tbd */,
);
name = Frameworks;
sourceTree = "<group>";
};
27229262260BD3D600A3A41F /* C Glue */ = {
isa = PBXGroup;
children = (
271C2A6E21CAD5B30045856E /* CBLBase_CAPI.cc */,
275BC4DD2201323700DBE7D2 /* CBLBlob_CAPI.cc */,
FC5FBBB42821CC2E0066157F /* CBLCollection_CAPI.cc */,
276633A52602815000B9BD36 /* CBLDatabase_CAPI.cc */,
FCB96E8229007D37001C4DED /* CBLDefaults_CAPI.cc */,
276634182605338300B9BD36 /* CBLDocument_CAPI.cc */,
93C70CE226C5B4BC0093E927 /* CBLEncryptable_CAPI.cc */,
4009839D2D0917BB0029F26E /* CBLLogSinks_CAPI.cc */,
40FE2DD52C092578005E99E9 /* CBLQueryIndex_CAPI.cc */,
9320631126BDB5CA006917A5 /* CBLPlatform_CAPI+Android.cc */,
4083FCBB2BA8DE200061509D /* CBLPrediction_CAPI.cc */,
27B61D5521D5ABA60027CCDB /* CBLQuery_CAPI.cc */,
277FEE7421ED3C4900B60E3C /* CBLReplicator_CAPI.cc */,
FCD829B22835EE39004AA814 /* CBLScope_CAPI.cc */,
1BC5D9652D6E4DA60080153E /* CBLURLEndpointListener_CAPI.cc */,
4083FCAE2BA3B8B00061509D /* CBLVectorIndexConfig_CAPI.cc */,
);
name = "C Glue";
sourceTree = "<group>";
};
277FEE6321ED37D500B60E3C /* cbl++ */ = {
isa = PBXGroup;
children = (
277FEE5021E6BC2100B60E3C /* CouchbaseLite.hh */,
277FEE3D21DEF0C700B60E3C /* Base.hh */,
275BC4E22204E6A800DBE7D2 /* Blob.hh */,
FCC064BD287CBD95000C5BD7 /* Collection.hh */,
27B61DD821DEEC540027CCDB /* Database.hh */,
277FEE4E21DEF54D00B60E3C /* Document.hh */,
40E32F3F2D2F3ED4000CED57 /* LogSinks.hh */,
40ACB2382C2F20DA00CBE8F2 /* Prediction.hh */,
277FEE4F21E6AB1100B60E3C /* Query.hh */,
400AB0522C2E66B500DB6223 /* QueryIndex.hh */,
27C9B5F121F7D74A0040BC45 /* Replicator.hh */,
400AB0542C2E7AC300DB6223 /* VectorIndex.hh */,
);
path = "cbl++";
sourceTree = "<group>";
};
27B61D6721D6B5DA0027CCDB /* test */ = {
isa = PBXGroup;
children = (
406F8D852C180611000223FC /* cmake */,
402254D929368C09000FBAC8 /* platforms */,
FC645E1F29085CE5007D5536 /* supports */,
27B61D6821D6B60D0027CCDB /* CBLTest.hh */,
27B61D6921D6B60D0027CCDB /* CBLTest.cc */,
27C9B5F221F7EE670040BC45 /* CBLTest.c */,
27A63F252633408000634F7B /* CBLTest_Cpp.hh */,
275B3593234BDB2700FE9CF0 /* CBLTestsMain.cpp */,
93C70D3326D01B5A0093E927 /* BlobTest.cc */,
275BC4F32204FB1400DBE7D2 /* BlobTest_Cpp.cc */,
FCD8298B283591D4004AA814 /* CollectionTest.cc */,
FC09077B28A5F3EF00201B07 /* CollectionTest_Cpp.cc */,
27B61DB821D6ECA70027CCDB /* DatabaseTest.cc */,
93E490C326BDE10F0091B587 /* DatabaseTest_Android.cc */,
277FEE5221E6BCA500B60E3C /* DatabaseTest_Cpp.cc */,
FCC063F2285BA641000C5BD7 /* DocumentTest.cc */,
FC0907E628AD763600201B07 /* DocumentTest_Cpp.cc */,
93965A6226A7CD50008728EE /* LogTest.cc */,
40E32F412D2F45A3000CED57 /* LogTest_Cpp.cc */,
275B359D234D064600FE9CF0 /* QueryTest.cc */,
AED22E6F291BE1AF005F065D /* QueryTest_Cpp.cc */,
2736A625242E5A07002B9D65 /* ReplicatorTest.hh */,
277CC99422BC23DE00B245CB /* ReplicatorTest.cc */,
FC8678E3289C69470023F34F /* ReplicatorCollectionTest.cc */,
FC82CE0428C6E2BD001FA083 /* ReplicatorCollectionTest_Cpp.cc */,
2736A633242E5A74002B9D65 /* ReplicatorEETest.cc */,
93C70D1626CB334D0093E927 /* ReplicatorPropEncTest.cc */,
1B21A7D82D711B29000CA0D5 /* URLEndpointListenerTest.cc */,
40FE2E0F2C12AF52005E99E9 /* VectorSearchTest.hh */,
406E46D22BACAEFF0088198C /* VectorSearchTest.cc */,
400AB0412C2E669500DB6223 /* VectorSearchTest_Cpp.cc */,
40FE2DFE2C12AEEB005E99E9 /* LazyVectorIndexTest.cc */,
27D30F9123A2D30500392107 /* PerfTest.cc */,
275B3597234C158400FE9CF0 /* CouchbaseLiteTests.mm */,
27DBCF41246B81EE002FD7A7 /* LibC++Debug.cc */,
27B61DD421DEE5DC0027CCDB /* CMakeLists.txt */,
406E46E72BAD3BB30088198C /* cmake */,
4022546D29355576000FBAC8 /* assets */,
);
path = test;
sourceTree = "<group>";
};
27B61D8321D6B9F60027CCDB /* Xcode */ = {
isa = PBXGroup;
children = (
27984DF422499ED4000FE777 /* CouchbaseLite.modulemap */,
27984E0D2249A127000FE777 /* Framework-Info.plist */,
40F902C82B9F7AF6002EA0A0 /* PrivacyInfo.xcprivacy */,
27B61D8421D6BA060027CCDB /* xcconfigs */,
27DBD096246C99AF002FD7A7 /* mergeIntoStaticLib.sh */,
93D0AFF1262619B800777AFC /* generate_edition_header.sh */,
);
path = Xcode;
sourceTree = "<group>";
};
27B61D8421D6BA060027CCDB /* xcconfigs */ = {
isa = PBXGroup;
children = (
27B61D8821D6BAB10027CCDB /* CBL_dylib.xcconfig */,
27984E482249AF44000FE777 /* CBL_Dylib_Release.xcconfig */,
27984E412249ACD2000FE777 /* CBL_Framework.xcconfig */,
27310FD7235F686D0046F8C8 /* CBL_Framework_Debug.xcconfig */,
27984E492249AF61000FE777 /* CBL_Framework_Release.xcconfig */,
27B61D8621D6BAB10027CCDB /* CBL_static.xcconfig */,
27B61DB021D6E53D0027CCDB /* CBL_Tests.xcconfig */,
275B358823481C5200FE9CF0 /* CouchbaseLiteTests.xcconfig */,
FCCE064E2908EF5900B420AF /* CouchbaseLiteTests-iOS.xcconfig */,
FCCE06402908EF5800B420AF /* CouchbaseLiteTests-iOS-App.xcconfig */,
27B61D8521D6BA2A0027CCDB /* Project.xcconfig */,
27B61D8921D6BAB10027CCDB /* Project_Debug.xcconfig */,
27D055892358FA40009BB0A1 /* Project_Debug_EE.xcconfig */,
27B61D8721D6BAB10027CCDB /* Project_Release.xcconfig */,
27D0558A2358FA67009BB0A1 /* Project_Release_EE.xcconfig */,
);
path = xcconfigs;
sourceTree = "<group>";
};
402254D929368C09000FBAC8 /* platforms */ = {
isa = PBXGroup;
children = (
FCE497162907917300EF2354 /* iOS */,
);
path = platforms;
sourceTree = "<group>";
};
FC645DFD290852D5007D5536 /* App */ = {
isa = PBXGroup;
children = (
FCE497172907917300EF2354 /* AppDelegate.h */,
FCE497182907917300EF2354 /* AppDelegate.m */,
FCE4971A2907917300EF2354 /* SceneDelegate.h */,
FCE4971B2907917300EF2354 /* SceneDelegate.m */,
FCE4971D2907917300EF2354 /* ViewController.h */,
FCE4971E2907917300EF2354 /* ViewController.m */,
FCE497292907917400EF2354 /* main.m */,
FCE497202907917300EF2354 /* Main.storyboard */,
FCE497232907917400EF2354 /* Assets.xcassets */,
FCE497252907917400EF2354 /* LaunchScreen.storyboard */,
FCE497282907917400EF2354 /* Info.plist */,
);
name = App;
sourceTree = "<group>";
};
FC645E0B2908535F007D5536 /* Test */ = {
isa = PBXGroup;
children = (
FCE497332907917500EF2354 /* CBLCatchTests.mm */,
);
name = Test;
sourceTree = "<group>";
};
FC645E1F29085CE5007D5536 /* supports */ = {
isa = PBXGroup;
children = (
FC645E282908756C007D5536 /* Platform_Apple.hh */,
FC645E292908756C007D5536 /* Platform_Apple.mm */,
);
name = supports;
sourceTree = "<group>";
};
FCE497162907917300EF2354 /* iOS */ = {
isa = PBXGroup;
children = (
FC645DFD290852D5007D5536 /* App */,
FC645E0B2908535F007D5536 /* Test */,
);
path = iOS;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
271C2A1F21CAC8920045856E /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
EA34BC4C2C369895000CEA70 /* CBLPrediction.h in Headers */,
277FEE7821ED62AA00B60E3C /* CBLReplicatorConfig.hh in Headers */,
1BC5D9602D6E3BD10080153E /* CBLURLEndpointListener.h in Headers */,
9320630F26BDB408006917A5 /* CBLPlatform.h in Headers */,
4083FCB02BA3B8C50061509D /* CBLVectorIndexConfig.hh in Headers */,
27DBCF2F246B4352002FD7A7 /* CBLQuery_Internal.hh in Headers */,
400983522D0769630029F26E /* CBLLogSinks.h in Headers */,