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
|
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 50;
objects = {
/* Begin PBXBuildFile section */
287F3C5C246F8F220040E76F /* InfoBarCommunicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C50246F8F220040E76F /* InfoBarCommunicator.h */; };
287F3C5D246F8F220040E76F /* QuartzTextStyleAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C51246F8F220040E76F /* QuartzTextStyleAttribute.h */; };
287F3C5E246F8F220040E76F /* QuartzTextLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C52246F8F220040E76F /* QuartzTextLayout.h */; };
287F3C5F246F8F220040E76F /* ScintillaCocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = 287F3C53246F8F220040E76F /* ScintillaCocoa.mm */; };
287F3C60246F8F220040E76F /* InfoBar.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C54246F8F220040E76F /* InfoBar.h */; };
287F3C61246F8F220040E76F /* PlatCocoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C55246F8F220040E76F /* PlatCocoa.h */; };
287F3C62246F8F220040E76F /* PlatCocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = 287F3C56246F8F220040E76F /* PlatCocoa.mm */; };
287F3C63246F8F220040E76F /* ScintillaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C57246F8F220040E76F /* ScintillaView.h */; };
287F3C64246F8F220040E76F /* ScintillaView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 287F3C58246F8F220040E76F /* ScintillaView.mm */; };
287F3C65246F8F220040E76F /* InfoBar.mm in Sources */ = {isa = PBXBuildFile; fileRef = 287F3C59246F8F220040E76F /* InfoBar.mm */; };
287F3C66246F8F220040E76F /* ScintillaCocoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C5A246F8F220040E76F /* ScintillaCocoa.h */; };
287F3C67246F8F220040E76F /* QuartzTextStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C5B246F8F220040E76F /* QuartzTextStyle.h */; };
287F3C6A246F90240040E76F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 287F3C69246F90240040E76F /* Cocoa.framework */; };
287F3C6C246F90300040E76F /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 287F3C6B246F90300040E76F /* QuartzCore.framework */; };
287F3CB0246F90930040E76F /* RunStyles.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3C6D246F908F0040E76F /* RunStyles.cxx */; };
287F3CB1246F90930040E76F /* CaseConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C6E246F908F0040E76F /* CaseConvert.h */; };
287F3CB2246F90930040E76F /* SparseVector.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C6F246F908F0040E76F /* SparseVector.h */; };
287F3CB3246F90930040E76F /* ElapsedPeriod.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C70246F908F0040E76F /* ElapsedPeriod.h */; };
287F3CB4246F90930040E76F /* Indicator.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3C71246F908F0040E76F /* Indicator.cxx */; };
287F3CB5246F90930040E76F /* RunStyles.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C72246F908F0040E76F /* RunStyles.h */; };
287F3CB6246F90930040E76F /* PerLine.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3C73246F908F0040E76F /* PerLine.cxx */; };
287F3CB7246F90930040E76F /* CaseConvert.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3C74246F908F0040E76F /* CaseConvert.cxx */; };
287F3CB8246F90930040E76F /* CharClassify.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3C75246F908F0040E76F /* CharClassify.cxx */; };
287F3CB9246F90930040E76F /* Style.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3C76246F908F0040E76F /* Style.cxx */; };
287F3CBA246F90930040E76F /* CaseFolder.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C77246F908F0040E76F /* CaseFolder.h */; };
287F3CBB246F90930040E76F /* Decoration.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C78246F90900040E76F /* Decoration.h */; };
287F3CBC246F90930040E76F /* SplitVector.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C79246F90900040E76F /* SplitVector.h */; };
287F3CBD246F90930040E76F /* DBCS.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C7A246F90900040E76F /* DBCS.h */; };
287F3CBE246F90930040E76F /* RESearch.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3C7B246F90900040E76F /* RESearch.cxx */; };
287F3CBF246F90930040E76F /* AutoComplete.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3C7C246F90900040E76F /* AutoComplete.cxx */; };
287F3CC0246F90930040E76F /* Decoration.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3C7D246F90900040E76F /* Decoration.cxx */; };
287F3CC1246F90930040E76F /* CallTip.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3C7E246F90900040E76F /* CallTip.cxx */; };
287F3CC2246F90930040E76F /* LineMarker.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3C7F246F90900040E76F /* LineMarker.cxx */; };
287F3CC3246F90930040E76F /* UniConversion.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3C80246F90900040E76F /* UniConversion.cxx */; };
287F3CC4246F90930040E76F /* Editor.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C81246F90900040E76F /* Editor.h */; };
287F3CC5246F90930040E76F /* UniConversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C82246F90900040E76F /* UniConversion.h */; };
287F3CC6246F90930040E76F /* Document.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3C83246F90900040E76F /* Document.cxx */; };
287F3CC7246F90930040E76F /* UniqueString.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3C84246F90900040E76F /* UniqueString.cxx */; };
287F3CC8246F90930040E76F /* CallTip.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C85246F90900040E76F /* CallTip.h */; };
287F3CC9246F90930040E76F /* CellBuffer.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3C86246F90900040E76F /* CellBuffer.cxx */; };
287F3CCA246F90930040E76F /* XPM.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C87246F90900040E76F /* XPM.h */; };
287F3CCB246F90930040E76F /* MarginView.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C88246F90900040E76F /* MarginView.h */; };
287F3CCC246F90930040E76F /* ContractionState.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3C89246F90900040E76F /* ContractionState.cxx */; };
287F3CCD246F90930040E76F /* CellBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C8A246F90900040E76F /* CellBuffer.h */; };
287F3CCE246F90930040E76F /* Position.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C8B246F90900040E76F /* Position.h */; };
287F3CCF246F90930040E76F /* Partitioning.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C8C246F90900040E76F /* Partitioning.h */; };
287F3CD0246F90930040E76F /* CaseFolder.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3C8D246F90910040E76F /* CaseFolder.cxx */; };
287F3CD1246F90930040E76F /* ContractionState.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C8E246F90910040E76F /* ContractionState.h */; };
287F3CD2246F90930040E76F /* KeyMap.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3C8F246F90910040E76F /* KeyMap.cxx */; };
287F3CD3246F90930040E76F /* EditView.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3C90246F90910040E76F /* EditView.cxx */; };
287F3CD4246F90930040E76F /* PerLine.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C91246F90910040E76F /* PerLine.h */; };
287F3CD5246F90930040E76F /* UniqueString.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C92246F90910040E76F /* UniqueString.h */; };
287F3CD6246F90930040E76F /* Catalogue.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3C93246F90910040E76F /* Catalogue.cxx */; };
287F3CD7246F90930040E76F /* PositionCache.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3C94246F90910040E76F /* PositionCache.cxx */; };
287F3CD8246F90930040E76F /* Style.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C95246F90910040E76F /* Style.h */; };
287F3CD9246F90930040E76F /* LineMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C96246F90910040E76F /* LineMarker.h */; };
287F3CDA246F90930040E76F /* DBCS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3C97246F90910040E76F /* DBCS.cxx */; };
287F3CDB246F90930040E76F /* EditModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C98246F90910040E76F /* EditModel.h */; };
287F3CDC246F90930040E76F /* ExternalLexer.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3C99246F90910040E76F /* ExternalLexer.cxx */; };
287F3CDD246F90930040E76F /* IntegerRectangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C9A246F90910040E76F /* IntegerRectangle.h */; };
287F3CDE246F90930040E76F /* Selection.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C9B246F90920040E76F /* Selection.h */; };
287F3CDF246F90930040E76F /* RESearch.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C9C246F90920040E76F /* RESearch.h */; };
287F3CE0246F90930040E76F /* Editor.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3C9D246F90920040E76F /* Editor.cxx */; };
287F3CE1246F90930040E76F /* AutoComplete.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3C9E246F90920040E76F /* AutoComplete.h */; };
287F3CE2246F90930040E76F /* EditModel.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3C9F246F90920040E76F /* EditModel.cxx */; };
287F3CE3246F90930040E76F /* ScintillaBase.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3CA0246F90920040E76F /* ScintillaBase.cxx */; };
287F3CE4246F90930040E76F /* ScintillaBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3CA1246F90920040E76F /* ScintillaBase.h */; };
287F3CE5246F90930040E76F /* KeyMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3CA2246F90920040E76F /* KeyMap.h */; };
287F3CE6246F90930040E76F /* ExternalLexer.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3CA3246F90920040E76F /* ExternalLexer.h */; };
287F3CE7246F90930040E76F /* ViewStyle.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3CA4246F90920040E76F /* ViewStyle.cxx */; };
287F3CE8246F90930040E76F /* XPM.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3CA5246F90920040E76F /* XPM.cxx */; };
287F3CE9246F90930040E76F /* Document.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3CA6246F90920040E76F /* Document.h */; };
287F3CEA246F90930040E76F /* Indicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3CA7246F90920040E76F /* Indicator.h */; };
287F3CEB246F90930040E76F /* Catalogue.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3CA8246F90920040E76F /* Catalogue.h */; };
287F3CEC246F90930040E76F /* MarginView.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3CA9246F90920040E76F /* MarginView.cxx */; };
287F3CED246F90930040E76F /* FontQuality.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3CAA246F90920040E76F /* FontQuality.h */; };
287F3CEE246F90930040E76F /* CharClassify.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3CAB246F90920040E76F /* CharClassify.h */; };
287F3CEF246F90930040E76F /* Selection.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3CAC246F90930040E76F /* Selection.cxx */; };
287F3CF0246F90930040E76F /* ViewStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3CAD246F90930040E76F /* ViewStyle.h */; };
287F3CF1246F90930040E76F /* EditView.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3CAE246F90930040E76F /* EditView.h */; };
287F3CF2246F90930040E76F /* PositionCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3CAF246F90930040E76F /* PositionCache.h */; };
287F3D0F246F9A040040E76F /* OptionSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3CF3246F9A010040E76F /* OptionSet.h */; };
287F3D10246F9A040040E76F /* LexerModule.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3CF4246F9A010040E76F /* LexerModule.cxx */; };
287F3D11246F9A040040E76F /* CharacterSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3CF5246F9A010040E76F /* CharacterSet.h */; };
287F3D12246F9A040040E76F /* LexerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3CF6246F9A010040E76F /* LexerModule.h */; };
287F3D13246F9A040040E76F /* Accessor.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3CF7246F9A020040E76F /* Accessor.cxx */; };
287F3D14246F9A040040E76F /* CatalogueModules.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3CF8246F9A020040E76F /* CatalogueModules.h */; };
287F3D15246F9A040040E76F /* WordList.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3CF9246F9A020040E76F /* WordList.h */; };
287F3D16246F9A040040E76F /* PropSetSimple.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3CFA246F9A020040E76F /* PropSetSimple.cxx */; };
287F3D17246F9A040040E76F /* LexerNoExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3CFB246F9A020040E76F /* LexerNoExceptions.h */; };
287F3D18246F9A040040E76F /* WordList.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3CFC246F9A020040E76F /* WordList.cxx */; };
287F3D19246F9A040040E76F /* CharacterCategory.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3CFD246F9A020040E76F /* CharacterCategory.cxx */; };
287F3D1A246F9A040040E76F /* Accessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3CFE246F9A020040E76F /* Accessor.h */; };
287F3D1B246F9A040040E76F /* LexerSimple.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3CFF246F9A020040E76F /* LexerSimple.cxx */; };
287F3D1C246F9A040040E76F /* LexerNoExceptions.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3D00246F9A020040E76F /* LexerNoExceptions.cxx */; };
287F3D1D246F9A040040E76F /* StringCopy.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3D01246F9A030040E76F /* StringCopy.h */; };
287F3D1E246F9A040040E76F /* LexerBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3D02246F9A030040E76F /* LexerBase.h */; };
287F3D1F246F9A040040E76F /* DefaultLexer.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3D03246F9A030040E76F /* DefaultLexer.cxx */; };
287F3D20246F9A040040E76F /* SubStyles.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3D04246F9A030040E76F /* SubStyles.h */; };
287F3D21246F9A040040E76F /* CharacterSet.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3D05246F9A030040E76F /* CharacterSet.cxx */; };
287F3D22246F9A040040E76F /* SparseState.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3D06246F9A030040E76F /* SparseState.h */; };
287F3D23246F9A040040E76F /* LexerBase.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3D07246F9A030040E76F /* LexerBase.cxx */; };
287F3D24246F9A040040E76F /* LexAccessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3D08246F9A030040E76F /* LexAccessor.h */; };
287F3D25246F9A040040E76F /* StyleContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3D09246F9A030040E76F /* StyleContext.h */; };
287F3D26246F9A040040E76F /* StyleContext.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 287F3D0A246F9A030040E76F /* StyleContext.cxx */; };
287F3D27246F9A040040E76F /* CharacterCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3D0B246F9A030040E76F /* CharacterCategory.h */; };
287F3D28246F9A040040E76F /* DefaultLexer.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3D0C246F9A040040E76F /* DefaultLexer.h */; };
287F3D29246F9A040040E76F /* LexerSimple.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3D0D246F9A040040E76F /* LexerSimple.h */; };
287F3D2A246F9A040040E76F /* PropSetSimple.h in Headers */ = {isa = PBXBuildFile; fileRef = 287F3D0E246F9A040040E76F /* PropSetSimple.h */; };
287F3E11246F9B150040E76F /* res in Resources */ = {isa = PBXBuildFile; fileRef = 287F3E10246F9B150040E76F /* res */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
287F3C41246F8DC70040E76F /* Scintilla.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Scintilla.framework; sourceTree = BUILT_PRODUCTS_DIR; };
287F3C45246F8DC70040E76F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
287F3C50246F8F220040E76F /* InfoBarCommunicator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = InfoBarCommunicator.h; path = ../../InfoBarCommunicator.h; sourceTree = "<group>"; };
287F3C51246F8F220040E76F /* QuartzTextStyleAttribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = QuartzTextStyleAttribute.h; path = ../../QuartzTextStyleAttribute.h; sourceTree = "<group>"; };
287F3C52246F8F220040E76F /* QuartzTextLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = QuartzTextLayout.h; path = ../../QuartzTextLayout.h; sourceTree = "<group>"; };
287F3C53246F8F220040E76F /* ScintillaCocoa.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = ScintillaCocoa.mm; path = ../../ScintillaCocoa.mm; sourceTree = "<group>"; };
287F3C54246F8F220040E76F /* InfoBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = InfoBar.h; path = ../../InfoBar.h; sourceTree = "<group>"; };
287F3C55246F8F220040E76F /* PlatCocoa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PlatCocoa.h; path = ../../PlatCocoa.h; sourceTree = "<group>"; };
287F3C56246F8F220040E76F /* PlatCocoa.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = PlatCocoa.mm; path = ../../PlatCocoa.mm; sourceTree = "<group>"; };
287F3C57246F8F220040E76F /* ScintillaView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScintillaView.h; path = ../../ScintillaView.h; sourceTree = "<group>"; };
287F3C58246F8F220040E76F /* ScintillaView.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = ScintillaView.mm; path = ../../ScintillaView.mm; sourceTree = "<group>"; };
287F3C59246F8F220040E76F /* InfoBar.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = InfoBar.mm; path = ../../InfoBar.mm; sourceTree = "<group>"; };
287F3C5A246F8F220040E76F /* ScintillaCocoa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScintillaCocoa.h; path = ../../ScintillaCocoa.h; sourceTree = "<group>"; };
287F3C5B246F8F220040E76F /* QuartzTextStyle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = QuartzTextStyle.h; path = ../../QuartzTextStyle.h; sourceTree = "<group>"; };
287F3C69246F90240040E76F /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
287F3C6B246F90300040E76F /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
287F3C6D246F908F0040E76F /* RunStyles.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RunStyles.cxx; path = ../../../src/RunStyles.cxx; sourceTree = "<group>"; };
287F3C6E246F908F0040E76F /* CaseConvert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CaseConvert.h; path = ../../../src/CaseConvert.h; sourceTree = "<group>"; };
287F3C6F246F908F0040E76F /* SparseVector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SparseVector.h; path = ../../../src/SparseVector.h; sourceTree = "<group>"; };
287F3C70246F908F0040E76F /* ElapsedPeriod.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ElapsedPeriod.h; path = ../../../src/ElapsedPeriod.h; sourceTree = "<group>"; };
287F3C71246F908F0040E76F /* Indicator.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Indicator.cxx; path = ../../../src/Indicator.cxx; sourceTree = "<group>"; };
287F3C72246F908F0040E76F /* RunStyles.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RunStyles.h; path = ../../../src/RunStyles.h; sourceTree = "<group>"; };
287F3C73246F908F0040E76F /* PerLine.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PerLine.cxx; path = ../../../src/PerLine.cxx; sourceTree = "<group>"; };
287F3C74246F908F0040E76F /* CaseConvert.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CaseConvert.cxx; path = ../../../src/CaseConvert.cxx; sourceTree = "<group>"; };
287F3C75246F908F0040E76F /* CharClassify.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CharClassify.cxx; path = ../../../src/CharClassify.cxx; sourceTree = "<group>"; };
287F3C76246F908F0040E76F /* Style.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Style.cxx; path = ../../../src/Style.cxx; sourceTree = "<group>"; };
287F3C77246F908F0040E76F /* CaseFolder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CaseFolder.h; path = ../../../src/CaseFolder.h; sourceTree = "<group>"; };
287F3C78246F90900040E76F /* Decoration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Decoration.h; path = ../../../src/Decoration.h; sourceTree = "<group>"; };
287F3C79246F90900040E76F /* SplitVector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SplitVector.h; path = ../../../src/SplitVector.h; sourceTree = "<group>"; };
287F3C7A246F90900040E76F /* DBCS.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DBCS.h; path = ../../../src/DBCS.h; sourceTree = "<group>"; };
287F3C7B246F90900040E76F /* RESearch.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RESearch.cxx; path = ../../../src/RESearch.cxx; sourceTree = "<group>"; };
287F3C7C246F90900040E76F /* AutoComplete.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = AutoComplete.cxx; path = ../../../src/AutoComplete.cxx; sourceTree = "<group>"; };
287F3C7D246F90900040E76F /* Decoration.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Decoration.cxx; path = ../../../src/Decoration.cxx; sourceTree = "<group>"; };
287F3C7E246F90900040E76F /* CallTip.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CallTip.cxx; path = ../../../src/CallTip.cxx; sourceTree = "<group>"; };
287F3C7F246F90900040E76F /* LineMarker.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LineMarker.cxx; path = ../../../src/LineMarker.cxx; sourceTree = "<group>"; };
287F3C80246F90900040E76F /* UniConversion.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = UniConversion.cxx; path = ../../../src/UniConversion.cxx; sourceTree = "<group>"; };
287F3C81246F90900040E76F /* Editor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Editor.h; path = ../../../src/Editor.h; sourceTree = "<group>"; };
287F3C82246F90900040E76F /* UniConversion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = UniConversion.h; path = ../../../src/UniConversion.h; sourceTree = "<group>"; };
287F3C83246F90900040E76F /* Document.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Document.cxx; path = ../../../src/Document.cxx; sourceTree = "<group>"; };
287F3C84246F90900040E76F /* UniqueString.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = UniqueString.cxx; path = ../../../src/UniqueString.cxx; sourceTree = "<group>"; };
287F3C85246F90900040E76F /* CallTip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CallTip.h; path = ../../../src/CallTip.h; sourceTree = "<group>"; };
287F3C86246F90900040E76F /* CellBuffer.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CellBuffer.cxx; path = ../../../src/CellBuffer.cxx; sourceTree = "<group>"; };
287F3C87246F90900040E76F /* XPM.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = XPM.h; path = ../../../src/XPM.h; sourceTree = "<group>"; };
287F3C88246F90900040E76F /* MarginView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MarginView.h; path = ../../../src/MarginView.h; sourceTree = "<group>"; };
287F3C89246F90900040E76F /* ContractionState.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ContractionState.cxx; path = ../../../src/ContractionState.cxx; sourceTree = "<group>"; };
287F3C8A246F90900040E76F /* CellBuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CellBuffer.h; path = ../../../src/CellBuffer.h; sourceTree = "<group>"; };
287F3C8B246F90900040E76F /* Position.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Position.h; path = ../../../src/Position.h; sourceTree = "<group>"; };
287F3C8C246F90900040E76F /* Partitioning.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Partitioning.h; path = ../../../src/Partitioning.h; sourceTree = "<group>"; };
287F3C8D246F90910040E76F /* CaseFolder.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CaseFolder.cxx; path = ../../../src/CaseFolder.cxx; sourceTree = "<group>"; };
287F3C8E246F90910040E76F /* ContractionState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ContractionState.h; path = ../../../src/ContractionState.h; sourceTree = "<group>"; };
287F3C8F246F90910040E76F /* KeyMap.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = KeyMap.cxx; path = ../../../src/KeyMap.cxx; sourceTree = "<group>"; };
287F3C90246F90910040E76F /* EditView.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = EditView.cxx; path = ../../../src/EditView.cxx; sourceTree = "<group>"; };
287F3C91246F90910040E76F /* PerLine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PerLine.h; path = ../../../src/PerLine.h; sourceTree = "<group>"; };
287F3C92246F90910040E76F /* UniqueString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = UniqueString.h; path = ../../../src/UniqueString.h; sourceTree = "<group>"; };
287F3C93246F90910040E76F /* Catalogue.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Catalogue.cxx; path = ../../../src/Catalogue.cxx; sourceTree = "<group>"; };
287F3C94246F90910040E76F /* PositionCache.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PositionCache.cxx; path = ../../../src/PositionCache.cxx; sourceTree = "<group>"; };
287F3C95246F90910040E76F /* Style.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Style.h; path = ../../../src/Style.h; sourceTree = "<group>"; };
287F3C96246F90910040E76F /* LineMarker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LineMarker.h; path = ../../../src/LineMarker.h; sourceTree = "<group>"; };
287F3C97246F90910040E76F /* DBCS.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = DBCS.cxx; path = ../../../src/DBCS.cxx; sourceTree = "<group>"; };
287F3C98246F90910040E76F /* EditModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EditModel.h; path = ../../../src/EditModel.h; sourceTree = "<group>"; };
287F3C99246F90910040E76F /* ExternalLexer.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ExternalLexer.cxx; path = ../../../src/ExternalLexer.cxx; sourceTree = "<group>"; };
287F3C9A246F90910040E76F /* IntegerRectangle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IntegerRectangle.h; path = ../../../src/IntegerRectangle.h; sourceTree = "<group>"; };
287F3C9B246F90920040E76F /* Selection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Selection.h; path = ../../../src/Selection.h; sourceTree = "<group>"; };
287F3C9C246F90920040E76F /* RESearch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RESearch.h; path = ../../../src/RESearch.h; sourceTree = "<group>"; };
287F3C9D246F90920040E76F /* Editor.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Editor.cxx; path = ../../../src/Editor.cxx; sourceTree = "<group>"; };
287F3C9E246F90920040E76F /* AutoComplete.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AutoComplete.h; path = ../../../src/AutoComplete.h; sourceTree = "<group>"; };
287F3C9F246F90920040E76F /* EditModel.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = EditModel.cxx; path = ../../../src/EditModel.cxx; sourceTree = "<group>"; };
287F3CA0246F90920040E76F /* ScintillaBase.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ScintillaBase.cxx; path = ../../../src/ScintillaBase.cxx; sourceTree = "<group>"; };
287F3CA1246F90920040E76F /* ScintillaBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScintillaBase.h; path = ../../../src/ScintillaBase.h; sourceTree = "<group>"; };
287F3CA2246F90920040E76F /* KeyMap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = KeyMap.h; path = ../../../src/KeyMap.h; sourceTree = "<group>"; };
287F3CA3246F90920040E76F /* ExternalLexer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ExternalLexer.h; path = ../../../src/ExternalLexer.h; sourceTree = "<group>"; };
287F3CA4246F90920040E76F /* ViewStyle.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ViewStyle.cxx; path = ../../../src/ViewStyle.cxx; sourceTree = "<group>"; };
287F3CA5246F90920040E76F /* XPM.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = XPM.cxx; path = ../../../src/XPM.cxx; sourceTree = "<group>"; };
287F3CA6246F90920040E76F /* Document.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Document.h; path = ../../../src/Document.h; sourceTree = "<group>"; };
287F3CA7246F90920040E76F /* Indicator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Indicator.h; path = ../../../src/Indicator.h; sourceTree = "<group>"; };
287F3CA8246F90920040E76F /* Catalogue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Catalogue.h; path = ../../../src/Catalogue.h; sourceTree = "<group>"; };
287F3CA9246F90920040E76F /* MarginView.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = MarginView.cxx; path = ../../../src/MarginView.cxx; sourceTree = "<group>"; };
287F3CAA246F90920040E76F /* FontQuality.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FontQuality.h; path = ../../../src/FontQuality.h; sourceTree = "<group>"; };
287F3CAB246F90920040E76F /* CharClassify.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CharClassify.h; path = ../../../src/CharClassify.h; sourceTree = "<group>"; };
287F3CAC246F90930040E76F /* Selection.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Selection.cxx; path = ../../../src/Selection.cxx; sourceTree = "<group>"; };
287F3CAD246F90930040E76F /* ViewStyle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ViewStyle.h; path = ../../../src/ViewStyle.h; sourceTree = "<group>"; };
287F3CAE246F90930040E76F /* EditView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EditView.h; path = ../../../src/EditView.h; sourceTree = "<group>"; };
287F3CAF246F90930040E76F /* PositionCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PositionCache.h; path = ../../../src/PositionCache.h; sourceTree = "<group>"; };
287F3CF3246F9A010040E76F /* OptionSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OptionSet.h; path = ../../../lexlib/OptionSet.h; sourceTree = "<group>"; };
287F3CF4246F9A010040E76F /* LexerModule.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexerModule.cxx; path = ../../../lexlib/LexerModule.cxx; sourceTree = "<group>"; };
287F3CF5246F9A010040E76F /* CharacterSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CharacterSet.h; path = ../../../lexlib/CharacterSet.h; sourceTree = "<group>"; };
287F3CF6246F9A010040E76F /* LexerModule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LexerModule.h; path = ../../../lexlib/LexerModule.h; sourceTree = "<group>"; };
287F3CF7246F9A020040E76F /* Accessor.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Accessor.cxx; path = ../../../lexlib/Accessor.cxx; sourceTree = "<group>"; };
287F3CF8246F9A020040E76F /* CatalogueModules.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CatalogueModules.h; path = ../../../lexlib/CatalogueModules.h; sourceTree = "<group>"; };
287F3CF9246F9A020040E76F /* WordList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WordList.h; path = ../../../lexlib/WordList.h; sourceTree = "<group>"; };
287F3CFA246F9A020040E76F /* PropSetSimple.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PropSetSimple.cxx; path = ../../../lexlib/PropSetSimple.cxx; sourceTree = "<group>"; };
287F3CFB246F9A020040E76F /* LexerNoExceptions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LexerNoExceptions.h; path = ../../../lexlib/LexerNoExceptions.h; sourceTree = "<group>"; };
287F3CFC246F9A020040E76F /* WordList.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = WordList.cxx; path = ../../../lexlib/WordList.cxx; sourceTree = "<group>"; };
287F3CFD246F9A020040E76F /* CharacterCategory.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CharacterCategory.cxx; path = ../../../lexlib/CharacterCategory.cxx; sourceTree = "<group>"; };
287F3CFE246F9A020040E76F /* Accessor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Accessor.h; path = ../../../lexlib/Accessor.h; sourceTree = "<group>"; };
287F3CFF246F9A020040E76F /* LexerSimple.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexerSimple.cxx; path = ../../../lexlib/LexerSimple.cxx; sourceTree = "<group>"; };
287F3D00246F9A020040E76F /* LexerNoExceptions.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexerNoExceptions.cxx; path = ../../../lexlib/LexerNoExceptions.cxx; sourceTree = "<group>"; };
287F3D01246F9A030040E76F /* StringCopy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = StringCopy.h; path = ../../../lexlib/StringCopy.h; sourceTree = "<group>"; };
287F3D02246F9A030040E76F /* LexerBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LexerBase.h; path = ../../../lexlib/LexerBase.h; sourceTree = "<group>"; };
287F3D03246F9A030040E76F /* DefaultLexer.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = DefaultLexer.cxx; path = ../../../lexlib/DefaultLexer.cxx; sourceTree = "<group>"; };
287F3D04246F9A030040E76F /* SubStyles.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SubStyles.h; path = ../../../lexlib/SubStyles.h; sourceTree = "<group>"; };
287F3D05246F9A030040E76F /* CharacterSet.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CharacterSet.cxx; path = ../../../lexlib/CharacterSet.cxx; sourceTree = "<group>"; };
287F3D06246F9A030040E76F /* SparseState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SparseState.h; path = ../../../lexlib/SparseState.h; sourceTree = "<group>"; };
287F3D07246F9A030040E76F /* LexerBase.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexerBase.cxx; path = ../../../lexlib/LexerBase.cxx; sourceTree = "<group>"; };
287F3D08246F9A030040E76F /* LexAccessor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LexAccessor.h; path = ../../../lexlib/LexAccessor.h; sourceTree = "<group>"; };
287F3D09246F9A030040E76F /* StyleContext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = StyleContext.h; path = ../../../lexlib/StyleContext.h; sourceTree = "<group>"; };
287F3D0A246F9A030040E76F /* StyleContext.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = StyleContext.cxx; path = ../../../lexlib/StyleContext.cxx; sourceTree = "<group>"; };
287F3D0B246F9A030040E76F /* CharacterCategory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CharacterCategory.h; path = ../../../lexlib/CharacterCategory.h; sourceTree = "<group>"; };
287F3D0C246F9A040040E76F /* DefaultLexer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DefaultLexer.h; path = ../../../lexlib/DefaultLexer.h; sourceTree = "<group>"; };
287F3D0D246F9A040040E76F /* LexerSimple.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LexerSimple.h; path = ../../../lexlib/LexerSimple.h; sourceTree = "<group>"; };
287F3D0E246F9A040040E76F /* PropSetSimple.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PropSetSimple.h; path = ../../../lexlib/PropSetSimple.h; sourceTree = "<group>"; };
287F3E0F246F9AE50040E76F /* module.modulemap */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.module-map"; path = module.modulemap; sourceTree = SOURCE_ROOT; };
287F3E10246F9B150040E76F /* res */ = {isa = PBXFileReference; lastKnownFileType = folder; name = res; path = ../../res; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
287F3C3E246F8DC70040E76F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
287F3C6C246F90300040E76F /* QuartzCore.framework in Frameworks */,
287F3C6A246F90240040E76F /* Cocoa.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
287F3C37246F8DC70040E76F = {
isa = PBXGroup;
children = (
287F3C4D246F8E4A0040E76F /* Backend */,
287F3C4E246F8E560040E76F /* Classes */,
287F3C43246F8DC70040E76F /* Scintilla */,
287F3C4F246F8E6E0040E76F /* Resources */,
287F3C42246F8DC70040E76F /* Products */,
287F3C68246F90240040E76F /* Frameworks */,
);
sourceTree = "<group>";
};
287F3C42246F8DC70040E76F /* Products */ = {
isa = PBXGroup;
children = (
287F3C41246F8DC70040E76F /* Scintilla.framework */,
);
name = Products;
sourceTree = "<group>";
};
287F3C43246F8DC70040E76F /* Scintilla */ = {
isa = PBXGroup;
children = (
);
path = Scintilla;
sourceTree = "<group>";
};
287F3C4D246F8E4A0040E76F /* Backend */ = {
isa = PBXGroup;
children = (
287F3CF7246F9A020040E76F /* Accessor.cxx */,
287F3C7C246F90900040E76F /* AutoComplete.cxx */,
287F3C7E246F90900040E76F /* CallTip.cxx */,
287F3C74246F908F0040E76F /* CaseConvert.cxx */,
287F3C8D246F90910040E76F /* CaseFolder.cxx */,
287F3C93246F90910040E76F /* Catalogue.cxx */,
287F3C86246F90900040E76F /* CellBuffer.cxx */,
287F3CFD246F9A020040E76F /* CharacterCategory.cxx */,
287F3D05246F9A030040E76F /* CharacterSet.cxx */,
287F3C75246F908F0040E76F /* CharClassify.cxx */,
287F3C89246F90900040E76F /* ContractionState.cxx */,
287F3C97246F90910040E76F /* DBCS.cxx */,
287F3C7D246F90900040E76F /* Decoration.cxx */,
287F3D03246F9A030040E76F /* DefaultLexer.cxx */,
287F3C83246F90900040E76F /* Document.cxx */,
287F3C9F246F90920040E76F /* EditModel.cxx */,
287F3C9D246F90920040E76F /* Editor.cxx */,
287F3C90246F90910040E76F /* EditView.cxx */,
287F3C99246F90910040E76F /* ExternalLexer.cxx */,
287F3C71246F908F0040E76F /* Indicator.cxx */,
287F3C8F246F90910040E76F /* KeyMap.cxx */,
287F3D07246F9A030040E76F /* LexerBase.cxx */,
287F3CF4246F9A010040E76F /* LexerModule.cxx */,
287F3D00246F9A020040E76F /* LexerNoExceptions.cxx */,
287F3CFF246F9A020040E76F /* LexerSimple.cxx */,
287F3C7F246F90900040E76F /* LineMarker.cxx */,
287F3CA9246F90920040E76F /* MarginView.cxx */,
287F3C73246F908F0040E76F /* PerLine.cxx */,
287F3C94246F90910040E76F /* PositionCache.cxx */,
287F3CFA246F9A020040E76F /* PropSetSimple.cxx */,
287F3C7B246F90900040E76F /* RESearch.cxx */,
287F3C6D246F908F0040E76F /* RunStyles.cxx */,
287F3CA0246F90920040E76F /* ScintillaBase.cxx */,
287F3CAC246F90930040E76F /* Selection.cxx */,
287F3C76246F908F0040E76F /* Style.cxx */,
287F3D0A246F9A030040E76F /* StyleContext.cxx */,
287F3C80246F90900040E76F /* UniConversion.cxx */,
287F3C84246F90900040E76F /* UniqueString.cxx */,
287F3CA4246F90920040E76F /* ViewStyle.cxx */,
287F3CFC246F9A020040E76F /* WordList.cxx */,
287F3CA5246F90920040E76F /* XPM.cxx */,
287F3CFE246F9A020040E76F /* Accessor.h */,
287F3C9E246F90920040E76F /* AutoComplete.h */,
287F3C85246F90900040E76F /* CallTip.h */,
287F3C6E246F908F0040E76F /* CaseConvert.h */,
287F3C77246F908F0040E76F /* CaseFolder.h */,
287F3CA8246F90920040E76F /* Catalogue.h */,
287F3CF8246F9A020040E76F /* CatalogueModules.h */,
287F3C8A246F90900040E76F /* CellBuffer.h */,
287F3D0B246F9A030040E76F /* CharacterCategory.h */,
287F3CF5246F9A010040E76F /* CharacterSet.h */,
287F3CAB246F90920040E76F /* CharClassify.h */,
287F3C8E246F90910040E76F /* ContractionState.h */,
287F3C7A246F90900040E76F /* DBCS.h */,
287F3C78246F90900040E76F /* Decoration.h */,
287F3D0C246F9A040040E76F /* DefaultLexer.h */,
287F3CA6246F90920040E76F /* Document.h */,
287F3C98246F90910040E76F /* EditModel.h */,
287F3C81246F90900040E76F /* Editor.h */,
287F3CAE246F90930040E76F /* EditView.h */,
287F3C70246F908F0040E76F /* ElapsedPeriod.h */,
287F3CA3246F90920040E76F /* ExternalLexer.h */,
287F3CAA246F90920040E76F /* FontQuality.h */,
287F3CA7246F90920040E76F /* Indicator.h */,
287F3C9A246F90910040E76F /* IntegerRectangle.h */,
287F3CA2246F90920040E76F /* KeyMap.h */,
287F3D08246F9A030040E76F /* LexAccessor.h */,
287F3D02246F9A030040E76F /* LexerBase.h */,
287F3CF6246F9A010040E76F /* LexerModule.h */,
287F3CFB246F9A020040E76F /* LexerNoExceptions.h */,
287F3D0D246F9A040040E76F /* LexerSimple.h */,
287F3C96246F90910040E76F /* LineMarker.h */,
287F3C88246F90900040E76F /* MarginView.h */,
287F3CF3246F9A010040E76F /* OptionSet.h */,
287F3C8C246F90900040E76F /* Partitioning.h */,
287F3C91246F90910040E76F /* PerLine.h */,
287F3C8B246F90900040E76F /* Position.h */,
287F3CAF246F90930040E76F /* PositionCache.h */,
287F3D0E246F9A040040E76F /* PropSetSimple.h */,
287F3C9C246F90920040E76F /* RESearch.h */,
287F3C72246F908F0040E76F /* RunStyles.h */,
287F3CA1246F90920040E76F /* ScintillaBase.h */,
287F3C9B246F90920040E76F /* Selection.h */,
287F3D06246F9A030040E76F /* SparseState.h */,
287F3C6F246F908F0040E76F /* SparseVector.h */,
287F3C79246F90900040E76F /* SplitVector.h */,
287F3D01246F9A030040E76F /* StringCopy.h */,
287F3C95246F90910040E76F /* Style.h */,
287F3D09246F9A030040E76F /* StyleContext.h */,
287F3D04246F9A030040E76F /* SubStyles.h */,
287F3C82246F90900040E76F /* UniConversion.h */,
287F3C92246F90910040E76F /* UniqueString.h */,
287F3CAD246F90930040E76F /* ViewStyle.h */,
287F3CF9246F9A020040E76F /* WordList.h */,
287F3C87246F90900040E76F /* XPM.h */,
);
path = Backend;
sourceTree = "<group>";
};
287F3C4E246F8E560040E76F /* Classes */ = {
isa = PBXGroup;
children = (
287F3E0F246F9AE50040E76F /* module.modulemap */,
287F3C54246F8F220040E76F /* InfoBar.h */,
287F3C59246F8F220040E76F /* InfoBar.mm */,
287F3C50246F8F220040E76F /* InfoBarCommunicator.h */,
287F3C55246F8F220040E76F /* PlatCocoa.h */,
287F3C56246F8F220040E76F /* PlatCocoa.mm */,
287F3C52246F8F220040E76F /* QuartzTextLayout.h */,
287F3C5B246F8F220040E76F /* QuartzTextStyle.h */,
287F3C51246F8F220040E76F /* QuartzTextStyleAttribute.h */,
287F3C5A246F8F220040E76F /* ScintillaCocoa.h */,
287F3C53246F8F220040E76F /* ScintillaCocoa.mm */,
287F3C57246F8F220040E76F /* ScintillaView.h */,
287F3C58246F8F220040E76F /* ScintillaView.mm */,
);
path = Classes;
sourceTree = "<group>";
};
287F3C4F246F8E6E0040E76F /* Resources */ = {
isa = PBXGroup;
children = (
287F3E10246F9B150040E76F /* res */,
287F3C45246F8DC70040E76F /* Info.plist */,
);
path = Resources;
sourceTree = "<group>";
};
287F3C68246F90240040E76F /* Frameworks */ = {
isa = PBXGroup;
children = (
287F3C6B246F90300040E76F /* QuartzCore.framework */,
287F3C69246F90240040E76F /* Cocoa.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
287F3C3C246F8DC70040E76F /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
287F3C61246F8F220040E76F /* PlatCocoa.h in Headers */,
287F3C63246F8F220040E76F /* ScintillaView.h in Headers */,
287F3CEE246F90930040E76F /* CharClassify.h in Headers */,
287F3CDB246F90930040E76F /* EditModel.h in Headers */,
287F3CCE246F90930040E76F /* Position.h in Headers */,
287F3CDD246F90930040E76F /* IntegerRectangle.h in Headers */,
287F3CB5246F90930040E76F /* RunStyles.h in Headers */,
287F3CEB246F90930040E76F /* Catalogue.h in Headers */,
287F3D2A246F9A040040E76F /* PropSetSimple.h in Headers */,
287F3CC4246F90930040E76F /* Editor.h in Headers */,
287F3D12246F9A040040E76F /* LexerModule.h in Headers */,
287F3D25246F9A040040E76F /* StyleContext.h in Headers */,
287F3CDE246F90930040E76F /* Selection.h in Headers */,
287F3D1A246F9A040040E76F /* Accessor.h in Headers */,
287F3CD9246F90930040E76F /* LineMarker.h in Headers */,
287F3C66246F8F220040E76F /* ScintillaCocoa.h in Headers */,
287F3CB1246F90930040E76F /* CaseConvert.h in Headers */,
287F3D14246F9A040040E76F /* CatalogueModules.h in Headers */,
287F3C60246F8F220040E76F /* InfoBar.h in Headers */,
287F3D11246F9A040040E76F /* CharacterSet.h in Headers */,
287F3CD4246F90930040E76F /* PerLine.h in Headers */,
287F3CE6246F90930040E76F /* ExternalLexer.h in Headers */,
287F3CE5246F90930040E76F /* KeyMap.h in Headers */,
287F3CBA246F90930040E76F /* CaseFolder.h in Headers */,
287F3CDF246F90930040E76F /* RESearch.h in Headers */,
287F3CEA246F90930040E76F /* Indicator.h in Headers */,
287F3D17246F9A040040E76F /* LexerNoExceptions.h in Headers */,
287F3CD8246F90930040E76F /* Style.h in Headers */,
287F3D22246F9A040040E76F /* SparseState.h in Headers */,
287F3CBC246F90930040E76F /* SplitVector.h in Headers */,
287F3D27246F9A040040E76F /* CharacterCategory.h in Headers */,
287F3CD1246F90930040E76F /* ContractionState.h in Headers */,
287F3CBD246F90930040E76F /* DBCS.h in Headers */,
287F3C67246F8F220040E76F /* QuartzTextStyle.h in Headers */,
287F3CF1246F90930040E76F /* EditView.h in Headers */,
287F3CCF246F90930040E76F /* Partitioning.h in Headers */,
287F3CE9246F90930040E76F /* Document.h in Headers */,
287F3CF2246F90930040E76F /* PositionCache.h in Headers */,
287F3CBB246F90930040E76F /* Decoration.h in Headers */,
287F3C5C246F8F220040E76F /* InfoBarCommunicator.h in Headers */,
287F3CB2246F90930040E76F /* SparseVector.h in Headers */,
287F3C5E246F8F220040E76F /* QuartzTextLayout.h in Headers */,
287F3CC5246F90930040E76F /* UniConversion.h in Headers */,
287F3CD5246F90930040E76F /* UniqueString.h in Headers */,
287F3CF0246F90930040E76F /* ViewStyle.h in Headers */,
287F3D0F246F9A040040E76F /* OptionSet.h in Headers */,
287F3D20246F9A040040E76F /* SubStyles.h in Headers */,
287F3D1D246F9A040040E76F /* StringCopy.h in Headers */,
287F3CCA246F90930040E76F /* XPM.h in Headers */,
287F3CE1246F90930040E76F /* AutoComplete.h in Headers */,
287F3D15246F9A040040E76F /* WordList.h in Headers */,
287F3CE4246F90930040E76F /* ScintillaBase.h in Headers */,
287F3CC8246F90930040E76F /* CallTip.h in Headers */,
287F3CED246F90930040E76F /* FontQuality.h in Headers */,
287F3D29246F9A040040E76F /* LexerSimple.h in Headers */,
287F3CB3246F90930040E76F /* ElapsedPeriod.h in Headers */,
287F3CCB246F90930040E76F /* MarginView.h in Headers */,
287F3CCD246F90930040E76F /* CellBuffer.h in Headers */,
287F3D1E246F9A040040E76F /* LexerBase.h in Headers */,
287F3D28246F9A040040E76F /* DefaultLexer.h in Headers */,
287F3C5D246F8F220040E76F /* QuartzTextStyleAttribute.h in Headers */,
287F3D24246F9A040040E76F /* LexAccessor.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
287F3C40246F8DC70040E76F /* Scintilla */ = {
isa = PBXNativeTarget;
buildConfigurationList = 287F3C49246F8DC70040E76F /* Build configuration list for PBXNativeTarget "Scintilla" */;
buildPhases = (
287F3C3C246F8DC70040E76F /* Headers */,
287F3C3D246F8DC70040E76F /* Sources */,
287F3C3E246F8DC70040E76F /* Frameworks */,
287F3C3F246F8DC70040E76F /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = Scintilla;
productName = Scintilla;
productReference = 287F3C41246F8DC70040E76F /* Scintilla.framework */;
productType = "com.apple.product-type.framework";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
287F3C38246F8DC70040E76F /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 1140;
ORGANIZATIONNAME = "Neil Hodgson";
TargetAttributes = {
287F3C40246F8DC70040E76F = {
CreatedOnToolsVersion = 11.4.1;
};
};
};
buildConfigurationList = 287F3C3B246F8DC70040E76F /* Build configuration list for PBXProject "Scintilla" */;
compatibilityVersion = "Xcode 9.3";
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = 287F3C37246F8DC70040E76F;
productRefGroup = 287F3C42246F8DC70040E76F /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
287F3C40246F8DC70040E76F /* Scintilla */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
287F3C3F246F8DC70040E76F /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
287F3E11246F9B150040E76F /* res in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
287F3C3D246F8DC70040E76F /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
287F3CD3246F90930040E76F /* EditView.cxx in Sources */,
287F3CB6246F90930040E76F /* PerLine.cxx in Sources */,
287F3D1B246F9A040040E76F /* LexerSimple.cxx in Sources */,
287F3CC7246F90930040E76F /* UniqueString.cxx in Sources */,
287F3CD6246F90930040E76F /* Catalogue.cxx in Sources */,
287F3CC1246F90930040E76F /* CallTip.cxx in Sources */,
287F3C62246F8F220040E76F /* PlatCocoa.mm in Sources */,
287F3D26246F9A040040E76F /* StyleContext.cxx in Sources */,
287F3CD7246F90930040E76F /* PositionCache.cxx in Sources */,
287F3CEC246F90930040E76F /* MarginView.cxx in Sources */,
287F3CDC246F90930040E76F /* ExternalLexer.cxx in Sources */,
287F3D18246F9A040040E76F /* WordList.cxx in Sources */,
287F3CC0246F90930040E76F /* Decoration.cxx in Sources */,
287F3CC6246F90930040E76F /* Document.cxx in Sources */,
287F3CCC246F90930040E76F /* ContractionState.cxx in Sources */,
287F3CC3246F90930040E76F /* UniConversion.cxx in Sources */,
287F3C5F246F8F220040E76F /* ScintillaCocoa.mm in Sources */,
287F3CBF246F90930040E76F /* AutoComplete.cxx in Sources */,
287F3D23246F9A040040E76F /* LexerBase.cxx in Sources */,
287F3CC9246F90930040E76F /* CellBuffer.cxx in Sources */,
287F3CD0246F90930040E76F /* CaseFolder.cxx in Sources */,
287F3CE7246F90930040E76F /* ViewStyle.cxx in Sources */,
287F3D1F246F9A040040E76F /* DefaultLexer.cxx in Sources */,
287F3D1C246F9A040040E76F /* LexerNoExceptions.cxx in Sources */,
287F3CEF246F90930040E76F /* Selection.cxx in Sources */,
287F3D19246F9A040040E76F /* CharacterCategory.cxx in Sources */,
287F3D16246F9A040040E76F /* PropSetSimple.cxx in Sources */,
287F3C64246F8F220040E76F /* ScintillaView.mm in Sources */,
287F3CB4246F90930040E76F /* Indicator.cxx in Sources */,
287F3CE0246F90930040E76F /* Editor.cxx in Sources */,
287F3CB8246F90930040E76F /* CharClassify.cxx in Sources */,
287F3CE3246F90930040E76F /* ScintillaBase.cxx in Sources */,
287F3CE2246F90930040E76F /* EditModel.cxx in Sources */,
287F3CB7246F90930040E76F /* CaseConvert.cxx in Sources */,
287F3CD2246F90930040E76F /* KeyMap.cxx in Sources */,
287F3D10246F9A040040E76F /* LexerModule.cxx in Sources */,
287F3C65246F8F220040E76F /* InfoBar.mm in Sources */,
287F3CDA246F90930040E76F /* DBCS.cxx in Sources */,
287F3CB0246F90930040E76F /* RunStyles.cxx in Sources */,
287F3CC2246F90930040E76F /* LineMarker.cxx in Sources */,
287F3D21246F9A040040E76F /* CharacterSet.cxx in Sources */,
287F3D13246F9A040040E76F /* Accessor.cxx in Sources */,
287F3CE8246F90930040E76F /* XPM.cxx in Sources */,
287F3CB9246F90930040E76F /* Style.cxx in Sources */,
287F3CBE246F90930040E76F /* RESearch.cxx in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin XCBuildConfiguration section */
287F3C47246F8DC70040E76F /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
CLANG_CXX_LANGUAGE_STANDARD = "c++17";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_ENABLE_OBJC_WEAK = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = 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_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 4.4.2;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu11;
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;
MACOSX_DEPLOYMENT_TARGET = 10.7;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = macosx;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
287F3C48246F8DC70040E76F /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
CLANG_CXX_LANGUAGE_STANDARD = "c++17";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_ENABLE_OBJC_WEAK = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = 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_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 4.4.2;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu11;
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;
MACOSX_DEPLOYMENT_TARGET = 10.7;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
SDKROOT = macosx;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
287F3C4A246F8DC70040E76F /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CLANG_CXX_LANGUAGE_STANDARD = "c++17";
CLANG_WARN_UNGUARDED_AVAILABILITY = YES;
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Manual;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 4.4.2;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = "";
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_PREPROCESSOR_DEFINITIONS = SCI_EMPTYCATALOGUE;
HEADER_SEARCH_PATHS = (
../../include,
../../src,
../../lexlib,
);
INFOPLIST_FILE = Scintilla/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/../Frameworks",
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.7;
PRODUCT_BUNDLE_IDENTIFIER = org.scintilla.Scintilla;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
PROVISIONING_PROFILE_SPECIFIER = "";
SKIP_INSTALL = YES;
};
name = Debug;
};
287F3C4B246F8DC70040E76F /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CLANG_CXX_LANGUAGE_STANDARD = "c++17";
CLANG_WARN_UNGUARDED_AVAILABILITY = YES;
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Manual;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 4.4.2;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = "";
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_PREPROCESSOR_DEFINITIONS = SCI_EMPTYCATALOGUE;
HEADER_SEARCH_PATHS = (
../../include,
../../src,
../../lexlib,
);
INFOPLIST_FILE = Scintilla/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/../Frameworks",
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.7;
PRODUCT_BUNDLE_IDENTIFIER = org.scintilla.Scintilla;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
PROVISIONING_PROFILE_SPECIFIER = "";
SKIP_INSTALL = YES;
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
287F3C3B246F8DC70040E76F /* Build configuration list for PBXProject "Scintilla" */ = {
isa = XCConfigurationList;
buildConfigurations = (
287F3C47246F8DC70040E76F /* Debug */,
287F3C48246F8DC70040E76F /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
287F3C49246F8DC70040E76F /* Build configuration list for PBXNativeTarget "Scintilla" */ = {
isa = XCConfigurationList;
buildConfigurations = (
287F3C4A246F8DC70040E76F /* Debug */,
287F3C4B246F8DC70040E76F /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 287F3C38246F8DC70040E76F /* Project object */;
}
|