File: project.pbxproj

package info (click to toggle)
ippsample 0.0~git20220607.72f89b3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 36,580 kB
  • sloc: ansic: 108,192; sh: 3,417; makefile: 1,163
file content (1280 lines) | stat: -rw-r--r-- 78,719 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 50;
	objects = {

/* Begin PBXAggregateTarget section */
		72E0060D1C5C0C48006CF057 /* All */ = {
			isa = PBXAggregateTarget;
			buildConfigurationList = 72E0060E1C5C0C48006CF057 /* Build configuration list for PBXAggregateTarget "All" */;
			buildPhases = (
			);
			dependencies = (
				27006809284E80D000AFBD2F /* PBXTargetDependency */,
				270185B22283B59C00271095 /* PBXTargetDependency */,
				72E006161C5C0C52006CF057 /* PBXTargetDependency */,
				72E006181C5C0C52006CF057 /* PBXTargetDependency */,
				725C87C21C7664EF00FB3AD5 /* PBXTargetDependency */,
				2778EBB21D2FF67B00DE72EC /* PBXTargetDependency */,
			);
			name = All;
			productName = All;
		};
/* End PBXAggregateTarget section */

/* Begin PBXBuildFile section */
		270067F9284E80BD00AFBD2F /* libcups_static.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 279B74E9282C3B370026ECAF /* libcups_static.a */; };
		270067FA284E80BD00AFBD2F /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 279B74EE282C4FF90026ECAF /* libssl.a */; };
		270067FB284E80BD00AFBD2F /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 279B74ED282C4FF80026ECAF /* libcrypto.a */; };
		270067FC284E80BD00AFBD2F /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B402EB1C0CE81900139783 /* SystemConfiguration.framework */; };
		270067FD284E80BD00AFBD2F /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B403061C0DE7FC00139783 /* Security.framework */; };
		270067FE284E80BD00AFBD2F /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B402EA1C0CE81900139783 /* CoreFoundation.framework */; };
		270067FF284E80BD00AFBD2F /* libiconv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B402FB1C0CE8CE00139783 /* libiconv.dylib */; };
		27006800284E80BD00AFBD2F /* libresolv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B402FC1C0CE8CE00139783 /* libresolv.dylib */; };
		27006801284E80BD00AFBD2F /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B402F91C0CE87800139783 /* libz.dylib */; };
		27006803284E80BD00AFBD2F /* ippproxy.8 in CopyFiles */ = {isa = PBXBuildFile; fileRef = 72E0060C1C5C0BE3006CF057 /* ippproxy.8 */; };
		2700680B284E80E600AFBD2F /* ipp3dprinter.c in Sources */ = {isa = PBXBuildFile; fileRef = 2700680A284E80E600AFBD2F /* ipp3dprinter.c */; };
		275C6BA41C878A74000D2DE7 /* ippproxy.8 in CopyFiles */ = {isa = PBXBuildFile; fileRef = 72E0060C1C5C0BE3006CF057 /* ippproxy.8 */; };
		275C6BA51C878A83000D2DE7 /* ippserver.8 in CopyFiles */ = {isa = PBXBuildFile; fileRef = 72B402A81C0CE43D00139783 /* ippserver.8 */; };
		275C6BA91C878AF5000D2DE7 /* ipptransform.1 in CopyFiles */ = {isa = PBXBuildFile; fileRef = 275C6BA31C878A65000D2DE7 /* ipptransform.1 */; };
		2778EBA21D2FF60E00DE72EC /* libiconv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B402FB1C0CE8CE00139783 /* libiconv.dylib */; };
		2778EBA31D2FF60E00DE72EC /* libresolv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B402FC1C0CE8CE00139783 /* libresolv.dylib */; };
		2778EBA41D2FF60E00DE72EC /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B402F91C0CE87800139783 /* libz.dylib */; };
		2778EBA71D2FF60E00DE72EC /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B402EA1C0CE81900139783 /* CoreFoundation.framework */; };
		2778EBA91D2FF60E00DE72EC /* ipptransform.1 in CopyFiles */ = {isa = PBXBuildFile; fileRef = 275C6BA31C878A65000D2DE7 /* ipptransform.1 */; };
		2778EBB01D2FF64300DE72EC /* ipptransform3d.c in Sources */ = {isa = PBXBuildFile; fileRef = 2778EBAE1D2FF62B00DE72EC /* ipptransform3d.c */; };
		2794FF9A20E2F068000A7214 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2794FF9920E2F068000A7214 /* CoreGraphics.framework */; };
		2794FF9C20E2F070000A7214 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2794FF9B20E2F06F000A7214 /* ImageIO.framework */; };
		2794FF9D20E2F086000A7214 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B403061C0DE7FC00139783 /* Security.framework */; };
		2794FFA320E2F17F000A7214 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2794FF9920E2F068000A7214 /* CoreGraphics.framework */; };
		2794FFA420E2F187000A7214 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2794FF9B20E2F06F000A7214 /* ImageIO.framework */; };
		279B74EA282C3B370026ECAF /* libcups_static.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 279B74E9282C3B370026ECAF /* libcups_static.a */; };
		279B74EC282C3B370026ECAF /* libpdfio.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 279B74EB282C3B370026ECAF /* libpdfio.a */; };
		279B74EF282C4FF90026ECAF /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 279B74ED282C4FF80026ECAF /* libcrypto.a */; };
		279B74F0282C4FF90026ECAF /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 279B74EE282C4FF90026ECAF /* libssl.a */; };
		279B74F1282C51080026ECAF /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 279B74ED282C4FF80026ECAF /* libcrypto.a */; };
		279B74F2282C51080026ECAF /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 279B74EE282C4FF90026ECAF /* libssl.a */; };
		279B74F3282C51160026ECAF /* libcups_static.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 279B74E9282C3B370026ECAF /* libcups_static.a */; };
		279B74F4282C51390026ECAF /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 279B74ED282C4FF80026ECAF /* libcrypto.a */; };
		279B74F5282C51390026ECAF /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 279B74EE282C4FF90026ECAF /* libssl.a */; };
		279B74F8282C516B0026ECAF /* libpng16.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 279B74F6282C516B0026ECAF /* libpng16.a */; };
		279B74F9282C516B0026ECAF /* libjpeg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 279B74F7282C516B0026ECAF /* libjpeg.a */; };
		279B74FA282C51890026ECAF /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 279B74ED282C4FF80026ECAF /* libcrypto.a */; };
		279B74FB282C51890026ECAF /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 279B74EE282C4FF90026ECAF /* libssl.a */; };
		279B74FC282C518D0026ECAF /* libcups_static.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 279B74E9282C3B370026ECAF /* libcups_static.a */; };
		279B74FD282C51930026ECAF /* libcups_static.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 279B74E9282C3B370026ECAF /* libcups_static.a */; };
		279B74FE282C519F0026ECAF /* libpdfio.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 279B74EB282C3B370026ECAF /* libpdfio.a */; };
		279B74FF282C51A50026ECAF /* libpdfio.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 279B74EB282C3B370026ECAF /* libpdfio.a */; };
		279B7500282C51BD0026ECAF /* libjpeg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 279B74F7282C516B0026ECAF /* libjpeg.a */; };
		279B7501282C51BD0026ECAF /* libpng16.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 279B74F6282C516B0026ECAF /* libpng16.a */; };
		279B7502282C55650026ECAF /* libcups_static.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 279B74E9282C3B370026ECAF /* libcups_static.a */; };
		279B7503282C55780026ECAF /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 279B74ED282C4FF80026ECAF /* libcrypto.a */; };
		279B7504282C55780026ECAF /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 279B74EE282C4FF90026ECAF /* libssl.a */; };
		27E2CC681C99C69400D203EC /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B403061C0DE7FC00139783 /* Security.framework */; };
		27E2CC691C99C6A000D203EC /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B402EB1C0CE81900139783 /* SystemConfiguration.framework */; };
		27EB2B8F20463E4B0088BC2C /* auth.c in Sources */ = {isa = PBXBuildFile; fileRef = 27EB2B8E20463E4B0088BC2C /* auth.c */; };
		27EB2B9120470BAF0088BC2C /* libpam.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 27EB2B9020470BAE0088BC2C /* libpam.tbd */; };
		27EB2B9320470BBA0088BC2C /* libdl.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 27EB2B9220470BBA0088BC2C /* libdl.tbd */; };
		27EB2B9A204F81470088BC2C /* libiconv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B402FB1C0CE8CE00139783 /* libiconv.dylib */; };
		27EB2B9B204F81470088BC2C /* libresolv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B402FC1C0CE8CE00139783 /* libresolv.dylib */; };
		27EB2B9C204F81470088BC2C /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B402F91C0CE87800139783 /* libz.dylib */; };
		27EB2B9F204F81470088BC2C /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B402EA1C0CE81900139783 /* CoreFoundation.framework */; };
		27EB2BA7204F81730088BC2C /* ippdoclint.c in Sources */ = {isa = PBXBuildFile; fileRef = 27EB2BA6204F81710088BC2C /* ippdoclint.c */; };
		27EB2BAA204F81BA0088BC2C /* ippdoclint.1 in CopyFiles */ = {isa = PBXBuildFile; fileRef = 27EB2BA8204F81A20088BC2C /* ippdoclint.1 */; };
		725C87B61C7664DE00FB3AD5 /* libiconv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B402FB1C0CE8CE00139783 /* libiconv.dylib */; };
		725C87B71C7664DE00FB3AD5 /* libresolv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B402FC1C0CE8CE00139783 /* libresolv.dylib */; };
		725C87B81C7664DE00FB3AD5 /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B402F91C0CE87800139783 /* libz.dylib */; };
		725C87BB1C7664DE00FB3AD5 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B402EA1C0CE81900139783 /* CoreFoundation.framework */; };
		725C87C41C767CF800FB3AD5 /* ipptransform.c in Sources */ = {isa = PBXBuildFile; fileRef = 725C87C31C767CF800FB3AD5 /* ipptransform.c */; };
		7263CE032086A83F00919E96 /* resource.c in Sources */ = {isa = PBXBuildFile; fileRef = 7263CE022086A83C00919E96 /* resource.c */; };
		72B402BB1C0CE45A00139783 /* client.c in Sources */ = {isa = PBXBuildFile; fileRef = 72B402A31C0CE43D00139783 /* client.c */; };
		72B402BC1C0CE45F00139783 /* conf.c in Sources */ = {isa = PBXBuildFile; fileRef = 72B402A41C0CE43D00139783 /* conf.c */; };
		72B402BD1C0CE45F00139783 /* device.c in Sources */ = {isa = PBXBuildFile; fileRef = 72B402A51C0CE43D00139783 /* device.c */; };
		72B402BE1C0CE45F00139783 /* ipp.c in Sources */ = {isa = PBXBuildFile; fileRef = 72B402A61C0CE43D00139783 /* ipp.c */; };
		72B402BF1C0CE46800139783 /* job.c in Sources */ = {isa = PBXBuildFile; fileRef = 72B402A91C0CE43D00139783 /* job.c */; };
		72B402C01C0CE46800139783 /* log.c in Sources */ = {isa = PBXBuildFile; fileRef = 72B402AA1C0CE43D00139783 /* log.c */; };
		72B402C11C0CE46800139783 /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = 72B402AB1C0CE43D00139783 /* main.c */; };
		72B402C21C0CE46800139783 /* printer.c in Sources */ = {isa = PBXBuildFile; fileRef = 72B402AC1C0CE43D00139783 /* printer.c */; };
		72B402C31C0CE46800139783 /* subscription.c in Sources */ = {isa = PBXBuildFile; fileRef = 72B402AE1C0CE43D00139783 /* subscription.c */; };
		72B402C41C0CE46800139783 /* transform.c in Sources */ = {isa = PBXBuildFile; fileRef = 72B402AF1C0CE43D00139783 /* transform.c */; };
		72B402ED1C0CE81900139783 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B402EA1C0CE81900139783 /* CoreFoundation.framework */; };
		72B402EE1C0CE81900139783 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B402EB1C0CE81900139783 /* SystemConfiguration.framework */; };
		72B403021C0CE92400139783 /* libiconv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B402FB1C0CE8CE00139783 /* libiconv.dylib */; };
		72B403031C0CE92400139783 /* libresolv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B402FC1C0CE8CE00139783 /* libresolv.dylib */; };
		72B403041C0CE92400139783 /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B402F91C0CE87800139783 /* libz.dylib */; };
		72B403071C0DE7FC00139783 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B403061C0DE7FC00139783 /* Security.framework */; };
		72E005F81C5C0B10006CF057 /* libiconv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B402FB1C0CE8CE00139783 /* libiconv.dylib */; };
		72E005F91C5C0B10006CF057 /* libresolv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B402FC1C0CE8CE00139783 /* libresolv.dylib */; };
		72E005FA1C5C0B10006CF057 /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B402F91C0CE87800139783 /* libz.dylib */; };
		72E005FD1C5C0B10006CF057 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 72B402EA1C0CE81900139783 /* CoreFoundation.framework */; };
		72E006071C5C0B65006CF057 /* ippproxy.c in Sources */ = {isa = PBXBuildFile; fileRef = 72E006031C5C0B49006CF057 /* ippproxy.c */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		27006808284E80D000AFBD2F /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 72B402101C0CDFB400139783 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 270067F5284E80BD00AFBD2F;
			remoteInfo = ipp3dprinter;
		};
		270185B12283B59C00271095 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 72B402101C0CDFB400139783 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 27EB2B94204F81470088BC2C;
			remoteInfo = ippdoclint;
		};
		2778EBB11D2FF67B00DE72EC /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 72B402101C0CDFB400139783 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 2778EB9C1D2FF60E00DE72EC;
			remoteInfo = ipptransform3d;
		};
		725C87C11C7664EF00FB3AD5 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 72B402101C0CDFB400139783 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 725C87B01C7664DE00FB3AD5;
			remoteInfo = ipptransform;
		};
		72E006151C5C0C52006CF057 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 72B402101C0CDFB400139783 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 72E005F21C5C0B10006CF057;
			remoteInfo = ippproxy;
		};
		72E006171C5C0C52006CF057 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 72B402101C0CDFB400139783 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 72B402171C0CDFB400139783;
			remoteInfo = ippserver;
		};
/* End PBXContainerItemProxy section */

/* Begin PBXCopyFilesBuildPhase section */
		27006802284E80BD00AFBD2F /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = /usr/local/share/man/man1;
			dstSubfolderSpec = 0;
			files = (
				27006803284E80BD00AFBD2F /* ippproxy.8 in CopyFiles */,
			);
			runOnlyForDeploymentPostprocessing = 1;
		};
		2778EBA81D2FF60E00DE72EC /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = /usr/local/share/man/man1;
			dstSubfolderSpec = 0;
			files = (
				2778EBA91D2FF60E00DE72EC /* ipptransform.1 in CopyFiles */,
			);
			runOnlyForDeploymentPostprocessing = 1;
		};
		27EB2BA0204F81470088BC2C /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = /usr/local/share/man/man1;
			dstSubfolderSpec = 0;
			files = (
				27EB2BAA204F81BA0088BC2C /* ippdoclint.1 in CopyFiles */,
			);
			runOnlyForDeploymentPostprocessing = 1;
		};
		725C87BC1C7664DE00FB3AD5 /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = /usr/local/share/man/man1;
			dstSubfolderSpec = 0;
			files = (
				275C6BA91C878AF5000D2DE7 /* ipptransform.1 in CopyFiles */,
			);
			runOnlyForDeploymentPostprocessing = 1;
		};
		72B402161C0CDFB400139783 /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = /usr/local/share/man/man1;
			dstSubfolderSpec = 0;
			files = (
				275C6BA51C878A83000D2DE7 /* ippserver.8 in CopyFiles */,
			);
			runOnlyForDeploymentPostprocessing = 1;
		};
		72E005FE1C5C0B10006CF057 /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = /usr/local/share/man/man1;
			dstSubfolderSpec = 0;
			files = (
				275C6BA41C878A74000D2DE7 /* ippproxy.8 in CopyFiles */,
			);
			runOnlyForDeploymentPostprocessing = 1;
		};
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
		27006807284E80BD00AFBD2F /* ipp3dprinter */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = ipp3dprinter; sourceTree = BUILT_PRODUCTS_DIR; };
		2700680A284E80E600AFBD2F /* ipp3dprinter.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ipp3dprinter.c; path = ../tools/ipp3dprinter.c; sourceTree = "<group>"; };
		2701858D2283B53900271095 /* ippeveprinter.1 */ = {isa = PBXFileReference; lastKnownFileType = text.man; name = ippeveprinter.1; path = ../man/ippeveprinter.1; sourceTree = "<group>"; };
		2701858E2283B53900271095 /* ippeveprinter.html */ = {isa = PBXFileReference; lastKnownFileType = text.html; name = ippeveprinter.html; path = ../man/ippeveprinter.html; sourceTree = "<group>"; };
		275C6BA21C878A65000D2DE7 /* ipptransform.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = ipptransform.html; path = ../man/ipptransform.html; sourceTree = "<group>"; };
		275C6BA31C878A65000D2DE7 /* ipptransform.1 */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.man; name = ipptransform.1; path = ../man/ipptransform.1; sourceTree = "<group>"; };
		275C6BAA1C87D907000D2DE7 /* dither.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = dither.h; path = ../tools/dither.h; sourceTree = "<group>"; };
		2778EBAD1D2FF60E00DE72EC /* ipptransform3d */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = ipptransform3d; sourceTree = BUILT_PRODUCTS_DIR; };
		2778EBAE1D2FF62B00DE72EC /* ipptransform3d.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ipptransform3d.c; path = ../tools/ipptransform3d.c; sourceTree = "<group>"; };
		2794FF9920E2F068000A7214 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
		2794FF9B20E2F06F000A7214 /* ImageIO.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ImageIO.framework; path = System/Library/Frameworks/ImageIO.framework; sourceTree = SDKROOT; };
		2798310B21761F3200BA8393 /* raster-stubs.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = "raster-stubs.c"; path = "../cups/raster-stubs.c"; sourceTree = "<group>"; };
		2798310C21761F3300BA8393 /* raster-stream.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = "raster-stream.c"; path = "../cups/raster-stream.c"; sourceTree = "<group>"; };
		2798310D21761F3300BA8393 /* raster-error.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = "raster-error.c"; path = "../cups/raster-error.c"; sourceTree = "<group>"; };
		279B74E9282C3B370026ECAF /* libcups_static.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; path = libcups_static.a; sourceTree = BUILT_PRODUCTS_DIR; };
		279B74EB282C3B370026ECAF /* libpdfio.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libpdfio.a; sourceTree = BUILT_PRODUCTS_DIR; };
		279B74ED282C4FF80026ECAF /* libcrypto.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libcrypto.a; path = ../../../../../usr/local/lib/libcrypto.a; sourceTree = "<group>"; };
		279B74EE282C4FF90026ECAF /* libssl.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libssl.a; path = ../../../../../usr/local/lib/libssl.a; sourceTree = "<group>"; };
		279B74F6282C516B0026ECAF /* libpng16.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libpng16.a; path = ../../../../../usr/local/lib/libpng16.a; sourceTree = "<group>"; };
		279B74F7282C516B0026ECAF /* libjpeg.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libjpeg.a; path = ../../../../../usr/local/lib/libjpeg.a; sourceTree = "<group>"; };
		279C01D61D1B0F9700F06A84 /* LICENSE */ = {isa = PBXFileReference; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = "<group>"; };
		279C01D71D1B0F9700F06A84 /* PI.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; name = PI.md; path = ../PI.md; sourceTree = "<group>"; };
		27EB2B8E20463E4B0088BC2C /* auth.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = auth.c; path = ../server/auth.c; sourceTree = "<group>"; };
		27EB2B9020470BAE0088BC2C /* libpam.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libpam.tbd; path = usr/lib/libpam.tbd; sourceTree = SDKROOT; };
		27EB2B9220470BBA0088BC2C /* libdl.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libdl.tbd; path = usr/lib/libdl.tbd; sourceTree = SDKROOT; };
		27EB2BA5204F81470088BC2C /* ippdoclint */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = ippdoclint; sourceTree = BUILT_PRODUCTS_DIR; };
		27EB2BA6204F81710088BC2C /* ippdoclint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ippdoclint.c; path = ../tools/ippdoclint.c; sourceTree = "<group>"; };
		27EB2BA8204F81A20088BC2C /* ippdoclint.1 */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.man; name = ippdoclint.1; path = ../man/ippdoclint.1; sourceTree = "<group>"; };
		27EB2BA9204F81A20088BC2C /* ippdoclint.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = ippdoclint.html; path = ../man/ippdoclint.html; sourceTree = "<group>"; };
		27FDC5F61D7F497500246F95 /* ipptransform3d.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = ipptransform3d.html; path = ../man/ipptransform3d.html; sourceTree = "<group>"; };
		27FDC5F71D7F497500246F95 /* ipptransform3d.1 */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.man; name = ipptransform3d.1; path = ../man/ipptransform3d.1; sourceTree = "<group>"; };
		72368665202B652600973022 /* testi18n.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = testi18n.c; path = ../cups/testi18n.c; sourceTree = "<group>"; };
		72368666202B652700973022 /* testclient.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = testclient.c; path = ../cups/testclient.c; sourceTree = "<group>"; };
		72368667202B652700973022 /* testarray.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = testarray.c; path = ../cups/testarray.c; sourceTree = "<group>"; };
		72368668202B652700973022 /* testipp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = testipp.c; path = ../cups/testipp.c; sourceTree = "<group>"; };
		72368669202B652700973022 /* testoptions.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = testoptions.c; path = ../cups/testoptions.c; sourceTree = "<group>"; };
		7236866A202B652700973022 /* testfile.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = testfile.c; path = ../cups/testfile.c; sourceTree = "<group>"; };
		7236866B202B652700973022 /* testhttp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = testhttp.c; path = ../cups/testhttp.c; sourceTree = "<group>"; };
		7236866C202B652700973022 /* testraster.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = testraster.c; path = ../cups/testraster.c; sourceTree = "<group>"; };
		7236866D202B652700973022 /* testdest.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = testdest.c; path = ../cups/testdest.c; sourceTree = "<group>"; };
		723D66D41C723CB70078B537 /* CONTRIBUTING.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; name = CONTRIBUTING.md; path = ../CONTRIBUTING.md; sourceTree = "<group>"; };
		723D66D51C723CB70078B537 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = "<group>"; };
		723D66D81C723CC20078B537 /* DESIGN.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; name = DESIGN.md; path = ../server/DESIGN.md; sourceTree = "<group>"; };
		72530E332028BCF20035FF65 /* ipp-file.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = "ipp-file.c"; path = "../cups/ipp-file.c"; sourceTree = "<group>"; };
		72530E342028BCF30035FF65 /* ipp-vars.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = "ipp-vars.c"; path = "../cups/ipp-vars.c"; sourceTree = "<group>"; };
		725C87C01C7664DE00FB3AD5 /* ipptransform */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = ipptransform; sourceTree = BUILT_PRODUCTS_DIR; };
		725C87C31C767CF800FB3AD5 /* ipptransform.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ipptransform.c; path = ../tools/ipptransform.c; sourceTree = "<group>"; };
		7263CE022086A83C00919E96 /* resource.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = resource.c; path = ../server/resource.c; sourceTree = "<group>"; };
		72737CEF1C24BA4F007CBEF6 /* dest-job.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = "dest-job.c"; path = "../cups/dest-job.c"; sourceTree = "<group>"; };
		72737CF01C24BA4F007CBEF6 /* dest-localization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = "dest-localization.c"; path = "../cups/dest-localization.c"; sourceTree = "<group>"; };
		72737CF11C24BA4F007CBEF6 /* dest-options.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = "dest-options.c"; path = "../cups/dest-options.c"; sourceTree = "<group>"; };
		72737CF21C24BA4F007CBEF6 /* dest.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = dest.c; path = ../cups/dest.c; sourceTree = "<group>"; };
		72737CF41C24BA4F007CBEF6 /* notify.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = notify.c; path = ../cups/notify.c; sourceTree = "<group>"; };
		72737CF51C24BA4F007CBEF6 /* util.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = util.c; path = ../cups/util.c; sourceTree = "<group>"; };
		729181C42011828E005E7560 /* NOTICE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = NOTICE; path = ../NOTICE; sourceTree = "<group>"; };
		72A0D4521E6864EB0092958D /* printer3d-png.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "printer3d-png.h"; path = "../server/printer3d-png.h"; sourceTree = "<group>"; };
		72B402181C0CDFB400139783 /* ippserver */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = ippserver; sourceTree = BUILT_PRODUCTS_DIR; };
		72B4022F1C0CE27800139783 /* array-private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "array-private.h"; path = "../cups/array-private.h"; sourceTree = "<group>"; };
		72B402301C0CE27800139783 /* array.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = array.c; path = ../cups/array.c; sourceTree = "<group>"; };
		72B402311C0CE27800139783 /* array.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = array.h; path = ../cups/array.h; sourceTree = "<group>"; };
		72B402321C0CE27800139783 /* auth.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = auth.c; path = ../cups/auth.c; sourceTree = "<group>"; };
		72B402331C0CE27800139783 /* cups-private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "cups-private.h"; path = "../cups/cups-private.h"; sourceTree = "<group>"; };
		72B402341C0CE27800139783 /* cups.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cups.h; path = ../cups/cups.h; sourceTree = "<group>"; };
		72B402351C0CE27800139783 /* debug-private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "debug-private.h"; path = "../cups/debug-private.h"; sourceTree = "<group>"; };
		72B402361C0CE27800139783 /* debug.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = debug.c; path = ../cups/debug.c; sourceTree = "<group>"; };
		72B402371C0CE27800139783 /* dir.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = dir.c; path = ../cups/dir.c; sourceTree = "<group>"; };
		72B402381C0CE27800139783 /* dir.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = dir.h; path = ../cups/dir.h; sourceTree = "<group>"; };
		72B402391C0CE27800139783 /* encode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = encode.c; path = ../cups/encode.c; sourceTree = "<group>"; };
		72B4023B1C0CE27800139783 /* file-private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "file-private.h"; path = "../cups/file-private.h"; sourceTree = "<group>"; };
		72B4023C1C0CE27800139783 /* file.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = file.c; path = ../cups/file.c; sourceTree = "<group>"; };
		72B4023D1C0CE27800139783 /* file.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = file.h; path = ../cups/file.h; sourceTree = "<group>"; };
		72B4023E1C0CE27800139783 /* getputfile.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = getputfile.c; path = ../cups/getputfile.c; sourceTree = "<group>"; };
		72B4023F1C0CE27800139783 /* globals.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = globals.c; path = ../cups/globals.c; sourceTree = "<group>"; };
		72B402401C0CE27800139783 /* hash.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = hash.c; path = ../cups/hash.c; sourceTree = "<group>"; };
		72B402411C0CE27800139783 /* http-addr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = "http-addr.c"; path = "../cups/http-addr.c"; sourceTree = "<group>"; };
		72B402421C0CE27800139783 /* http-addrlist.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = "http-addrlist.c"; path = "../cups/http-addrlist.c"; sourceTree = "<group>"; };
		72B402431C0CE27800139783 /* http-private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "http-private.h"; path = "../cups/http-private.h"; sourceTree = "<group>"; };
		72B402441C0CE27800139783 /* http-support.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = "http-support.c"; path = "../cups/http-support.c"; sourceTree = "<group>"; };
		72B402451C0CE27800139783 /* http.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = http.c; path = ../cups/http.c; sourceTree = "<group>"; };
		72B402461C0CE27800139783 /* http.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = http.h; path = ../cups/http.h; sourceTree = "<group>"; };
		72B402471C0CE27800139783 /* ipp-private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "ipp-private.h"; path = "../cups/ipp-private.h"; sourceTree = "<group>"; };
		72B402481C0CE27800139783 /* ipp-support.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = "ipp-support.c"; path = "../cups/ipp-support.c"; sourceTree = "<group>"; };
		72B402491C0CE27800139783 /* ipp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ipp.c; path = ../cups/ipp.c; sourceTree = "<group>"; };
		72B4024A1C0CE27800139783 /* ipp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ipp.h; path = ../cups/ipp.h; sourceTree = "<group>"; };
		72B4024B1C0CE27800139783 /* langprintf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = langprintf.c; path = ../cups/langprintf.c; sourceTree = "<group>"; };
		72B4024C1C0CE27800139783 /* language-private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "language-private.h"; path = "../cups/language-private.h"; sourceTree = "<group>"; };
		72B4024D1C0CE27800139783 /* language.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = language.c; path = ../cups/language.c; sourceTree = "<group>"; };
		72B4024E1C0CE27800139783 /* language.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = language.h; path = ../cups/language.h; sourceTree = "<group>"; };
		72B402501C0CE27800139783 /* md5.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = md5.c; path = ../cups/md5.c; sourceTree = "<group>"; };
		72B402511C0CE27800139783 /* md5passwd.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = md5passwd.c; path = ../cups/md5passwd.c; sourceTree = "<group>"; };
		72B402521C0CE27800139783 /* options.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = options.c; path = ../cups/options.c; sourceTree = "<group>"; };
		72B402531C0CE27800139783 /* pwg-media.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = "pwg-media.c"; path = "../cups/pwg-media.c"; sourceTree = "<group>"; };
		72B402541C0CE27800139783 /* pwg-private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "pwg-private.h"; path = "../cups/pwg-private.h"; sourceTree = "<group>"; };
		72B402551C0CE27800139783 /* pwg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pwg.h; path = ../cups/pwg.h; sourceTree = "<group>"; };
		72B402561C0CE27800139783 /* raster-private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "raster-private.h"; path = "../cups/raster-private.h"; sourceTree = "<group>"; };
		72B402581C0CE27800139783 /* raster.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = raster.h; path = ../cups/raster.h; sourceTree = "<group>"; };
		72B402591C0CE27800139783 /* request.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = request.c; path = ../cups/request.c; sourceTree = "<group>"; };
		72B4025A1C0CE27800139783 /* snprintf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = snprintf.c; path = ../cups/snprintf.c; sourceTree = "<group>"; };
		72B4025B1C0CE27800139783 /* string-private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "string-private.h"; path = "../cups/string-private.h"; sourceTree = "<group>"; };
		72B4025C1C0CE27800139783 /* string.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = string.c; path = ../cups/string.c; sourceTree = "<group>"; };
		72B4025D1C0CE27800139783 /* tempfile.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tempfile.c; path = ../cups/tempfile.c; sourceTree = "<group>"; };
		72B4025E1C0CE27800139783 /* thread-private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "thread-private.h"; path = "../cups/thread-private.h"; sourceTree = "<group>"; };
		72B4025F1C0CE27800139783 /* thread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = thread.c; path = ../cups/thread.c; sourceTree = "<group>"; };
		72B402601C0CE27800139783 /* tls-darwin.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = "tls-darwin.c"; path = "../cups/tls-darwin.c"; sourceTree = "<group>"; };
		72B402611C0CE27800139783 /* tls-gnutls.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = "tls-gnutls.c"; path = "../cups/tls-gnutls.c"; sourceTree = "<group>"; };
		72B402621C0CE27900139783 /* tls-sspi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = "tls-sspi.c"; path = "../cups/tls-sspi.c"; sourceTree = "<group>"; };
		72B402631C0CE27900139783 /* tls.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tls.c; path = ../cups/tls.c; sourceTree = "<group>"; };
		72B402641C0CE27900139783 /* transcode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = transcode.c; path = ../cups/transcode.c; sourceTree = "<group>"; };
		72B402651C0CE27900139783 /* transcode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = transcode.h; path = ../cups/transcode.h; sourceTree = "<group>"; };
		72B402661C0CE27900139783 /* usersys.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = usersys.c; path = ../cups/usersys.c; sourceTree = "<group>"; };
		72B402671C0CE27900139783 /* versioning.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = versioning.h; path = ../cups/versioning.h; sourceTree = "<group>"; };
		72B402A11C0CE3AC00139783 /* config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = config.h; sourceTree = "<group>"; };
		72B402A31C0CE43D00139783 /* client.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = client.c; path = ../server/client.c; sourceTree = "<group>"; };
		72B402A41C0CE43D00139783 /* conf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = conf.c; path = ../server/conf.c; sourceTree = "<group>"; };
		72B402A51C0CE43D00139783 /* device.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = device.c; path = ../server/device.c; sourceTree = "<group>"; };
		72B402A61C0CE43D00139783 /* ipp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ipp.c; path = ../server/ipp.c; sourceTree = "<group>"; };
		72B402A71C0CE43D00139783 /* ippserver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ippserver.h; path = ../server/ippserver.h; sourceTree = "<group>"; };
		72B402A81C0CE43D00139783 /* ippserver.8 */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = ippserver.8; path = ../man/ippserver.8; sourceTree = "<group>"; };
		72B402A91C0CE43D00139783 /* job.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = job.c; path = ../server/job.c; sourceTree = "<group>"; };
		72B402AA1C0CE43D00139783 /* log.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = log.c; path = ../server/log.c; sourceTree = "<group>"; };
		72B402AB1C0CE43D00139783 /* main.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = main.c; path = ../server/main.c; sourceTree = "<group>"; };
		72B402AC1C0CE43D00139783 /* printer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = printer.c; path = ../server/printer.c; sourceTree = "<group>"; };
		72B402AE1C0CE43D00139783 /* subscription.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = subscription.c; path = ../server/subscription.c; sourceTree = "<group>"; };
		72B402AF1C0CE43D00139783 /* transform.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = transform.c; path = ../server/transform.c; sourceTree = "<group>"; };
		72B402E21C0CE66200139783 /* ippfind.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = ippfind.html; path = ../man/ippfind.html; sourceTree = "<group>"; };
		72B402E31C0CE66200139783 /* ippserver.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = ippserver.html; path = ../man/ippserver.html; sourceTree = "<group>"; };
		72B402E41C0CE66200139783 /* ipptool.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = ipptool.html; path = ../man/ipptool.html; sourceTree = "<group>"; };
		72B402E51C0CE66200139783 /* ipptoolfile.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = ipptoolfile.html; path = ../man/ipptoolfile.html; sourceTree = "<group>"; };
		72B402E91C0CE81900139783 /* ApplicationServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ApplicationServices.framework; path = System/Library/Frameworks/ApplicationServices.framework; sourceTree = SDKROOT; };
		72B402EA1C0CE81900139783 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; };
		72B402EB1C0CE81900139783 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
		72B402F91C0CE87800139783 /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; };
		72B402FB1C0CE8CE00139783 /* libiconv.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libiconv.dylib; path = usr/lib/libiconv.dylib; sourceTree = SDKROOT; };
		72B402FC1C0CE8CE00139783 /* libresolv.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libresolv.dylib; path = usr/lib/libresolv.dylib; sourceTree = SDKROOT; };
		72B403061C0DE7FC00139783 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
		72B589F51D1C6628007117DA /* printer-png.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "printer-png.h"; path = "../server/printer-png.h"; sourceTree = "<group>"; };
		72C30E2F21BEF69F00BD6C2B /* debug-internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "debug-internal.h"; path = "../cups/debug-internal.h"; sourceTree = "<group>"; };
		72C30E3021BEF69F00BD6C2B /* md5-internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "md5-internal.h"; path = "../cups/md5-internal.h"; sourceTree = "<group>"; };
		72E006021C5C0B10006CF057 /* ippproxy */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = ippproxy; sourceTree = BUILT_PRODUCTS_DIR; };
		72E006031C5C0B49006CF057 /* ippproxy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ippproxy.c; path = ../tools/ippproxy.c; sourceTree = "<group>"; };
		72E006081C5C0BA8006CF057 /* ippfind.1 */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.man; name = ippfind.1; path = ../man/ippfind.1; sourceTree = "<group>"; };
		72E006091C5C0BA8006CF057 /* ipptool.1 */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.man; name = ipptool.1; path = ../man/ipptool.1; sourceTree = "<group>"; };
		72E0060A1C5C0BA8006CF057 /* ipptoolfile.5 */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = ipptoolfile.5; path = ../man/ipptoolfile.5; sourceTree = "<group>"; };
		72E0060B1C5C0BE3006CF057 /* ippproxy.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = ippproxy.html; path = ../man/ippproxy.html; sourceTree = "<group>"; };
		72E0060C1C5C0BE3006CF057 /* ippproxy.8 */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = ippproxy.8; path = ../man/ippproxy.8; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		270067F8284E80BD00AFBD2F /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				270067F9284E80BD00AFBD2F /* libcups_static.a in Frameworks */,
				270067FA284E80BD00AFBD2F /* libssl.a in Frameworks */,
				270067FB284E80BD00AFBD2F /* libcrypto.a in Frameworks */,
				270067FC284E80BD00AFBD2F /* SystemConfiguration.framework in Frameworks */,
				270067FD284E80BD00AFBD2F /* Security.framework in Frameworks */,
				270067FE284E80BD00AFBD2F /* CoreFoundation.framework in Frameworks */,
				270067FF284E80BD00AFBD2F /* libiconv.dylib in Frameworks */,
				27006800284E80BD00AFBD2F /* libresolv.dylib in Frameworks */,
				27006801284E80BD00AFBD2F /* libz.dylib in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		2778EBA11D2FF60E00DE72EC /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				279B74FC282C518D0026ECAF /* libcups_static.a in Frameworks */,
				279B74FA282C51890026ECAF /* libcrypto.a in Frameworks */,
				279B74FB282C51890026ECAF /* libssl.a in Frameworks */,
				2778EBA71D2FF60E00DE72EC /* CoreFoundation.framework in Frameworks */,
				2778EBA21D2FF60E00DE72EC /* libiconv.dylib in Frameworks */,
				2778EBA31D2FF60E00DE72EC /* libresolv.dylib in Frameworks */,
				2778EBA41D2FF60E00DE72EC /* libz.dylib in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		27EB2B99204F81470088BC2C /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				279B7502282C55650026ECAF /* libcups_static.a in Frameworks */,
				279B7503282C55780026ECAF /* libcrypto.a in Frameworks */,
				279B7504282C55780026ECAF /* libssl.a in Frameworks */,
				279B7500282C51BD0026ECAF /* libjpeg.a in Frameworks */,
				279B7501282C51BD0026ECAF /* libpng16.a in Frameworks */,
				279B74FE282C519F0026ECAF /* libpdfio.a in Frameworks */,
				2794FFA320E2F17F000A7214 /* CoreGraphics.framework in Frameworks */,
				2794FFA420E2F187000A7214 /* ImageIO.framework in Frameworks */,
				27EB2B9F204F81470088BC2C /* CoreFoundation.framework in Frameworks */,
				27EB2B9A204F81470088BC2C /* libiconv.dylib in Frameworks */,
				27EB2B9B204F81470088BC2C /* libresolv.dylib in Frameworks */,
				27EB2B9C204F81470088BC2C /* libz.dylib in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		725C87B51C7664DE00FB3AD5 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				279B74FF282C51A50026ECAF /* libpdfio.a in Frameworks */,
				279B74FD282C51930026ECAF /* libcups_static.a in Frameworks */,
				279B74F8282C516B0026ECAF /* libpng16.a in Frameworks */,
				279B74F9282C516B0026ECAF /* libjpeg.a in Frameworks */,
				279B74F4282C51390026ECAF /* libcrypto.a in Frameworks */,
				279B74F5282C51390026ECAF /* libssl.a in Frameworks */,
				2794FF9D20E2F086000A7214 /* Security.framework in Frameworks */,
				2794FF9A20E2F068000A7214 /* CoreGraphics.framework in Frameworks */,
				2794FF9C20E2F070000A7214 /* ImageIO.framework in Frameworks */,
				725C87BB1C7664DE00FB3AD5 /* CoreFoundation.framework in Frameworks */,
				725C87B61C7664DE00FB3AD5 /* libiconv.dylib in Frameworks */,
				725C87B71C7664DE00FB3AD5 /* libresolv.dylib in Frameworks */,
				725C87B81C7664DE00FB3AD5 /* libz.dylib in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		72B402151C0CDFB400139783 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				279B74EC282C3B370026ECAF /* libpdfio.a in Frameworks */,
				279B74EA282C3B370026ECAF /* libcups_static.a in Frameworks */,
				279B74F0282C4FF90026ECAF /* libssl.a in Frameworks */,
				279B74EF282C4FF90026ECAF /* libcrypto.a in Frameworks */,
				72B402EE1C0CE81900139783 /* SystemConfiguration.framework in Frameworks */,
				72B403071C0DE7FC00139783 /* Security.framework in Frameworks */,
				72B402ED1C0CE81900139783 /* CoreFoundation.framework in Frameworks */,
				27EB2B9320470BBA0088BC2C /* libdl.tbd in Frameworks */,
				27EB2B9120470BAF0088BC2C /* libpam.tbd in Frameworks */,
				72B403021C0CE92400139783 /* libiconv.dylib in Frameworks */,
				72B403031C0CE92400139783 /* libresolv.dylib in Frameworks */,
				72B403041C0CE92400139783 /* libz.dylib in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		72E005F71C5C0B10006CF057 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				279B74F3282C51160026ECAF /* libcups_static.a in Frameworks */,
				279B74F2282C51080026ECAF /* libssl.a in Frameworks */,
				279B74F1282C51080026ECAF /* libcrypto.a in Frameworks */,
				27E2CC691C99C6A000D203EC /* SystemConfiguration.framework in Frameworks */,
				27E2CC681C99C69400D203EC /* Security.framework in Frameworks */,
				72E005FD1C5C0B10006CF057 /* CoreFoundation.framework in Frameworks */,
				72E005F81C5C0B10006CF057 /* libiconv.dylib in Frameworks */,
				72E005F91C5C0B10006CF057 /* libresolv.dylib in Frameworks */,
				72E005FA1C5C0B10006CF057 /* libz.dylib in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		72368664202B64DE00973022 /* tests */ = {
			isa = PBXGroup;
			children = (
				72368667202B652700973022 /* testarray.c */,
				72368666202B652700973022 /* testclient.c */,
				7236866D202B652700973022 /* testdest.c */,
				7236866A202B652700973022 /* testfile.c */,
				7236866B202B652700973022 /* testhttp.c */,
				72368665202B652600973022 /* testi18n.c */,
				72368668202B652700973022 /* testipp.c */,
				72368669202B652700973022 /* testoptions.c */,
				7236866C202B652700973022 /* testraster.c */,
			);
			name = tests;
			sourceTree = "<group>";
		};
		72B4020F1C0CDFB400139783 = {
			isa = PBXGroup;
			children = (
				72B402A11C0CE3AC00139783 /* config.h */,
				72B4022A1C0CE16200139783 /* libcups */,
				72B4022D1C0CE21C00139783 /* ippserver */,
				72368664202B64DE00973022 /* tests */,
				72B4022E1C0CE22300139783 /* tools */,
				72B402E11C0CE64000139783 /* Documentation */,
				72B403051C0DE49600139783 /* Frameworks */,
				72B402191C0CDFB400139783 /* Products */,
			);
			sourceTree = "<group>";
		};
		72B402191C0CDFB400139783 /* Products */ = {
			isa = PBXGroup;
			children = (
				72B402181C0CDFB400139783 /* ippserver */,
				72E006021C5C0B10006CF057 /* ippproxy */,
				725C87C01C7664DE00FB3AD5 /* ipptransform */,
				2778EBAD1D2FF60E00DE72EC /* ipptransform3d */,
				27EB2BA5204F81470088BC2C /* ippdoclint */,
				27006807284E80BD00AFBD2F /* ipp3dprinter */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		72B4022A1C0CE16200139783 /* libcups */ = {
			isa = PBXGroup;
			children = (
				72B4022F1C0CE27800139783 /* array-private.h */,
				72B402301C0CE27800139783 /* array.c */,
				72B402311C0CE27800139783 /* array.h */,
				72B402321C0CE27800139783 /* auth.c */,
				72B402331C0CE27800139783 /* cups-private.h */,
				72B402341C0CE27800139783 /* cups.h */,
				72C30E2F21BEF69F00BD6C2B /* debug-internal.h */,
				72B402351C0CE27800139783 /* debug-private.h */,
				72B402361C0CE27800139783 /* debug.c */,
				72737CEF1C24BA4F007CBEF6 /* dest-job.c */,
				72737CF01C24BA4F007CBEF6 /* dest-localization.c */,
				72737CF11C24BA4F007CBEF6 /* dest-options.c */,
				72737CF21C24BA4F007CBEF6 /* dest.c */,
				72B402371C0CE27800139783 /* dir.c */,
				72B402381C0CE27800139783 /* dir.h */,
				72B402391C0CE27800139783 /* encode.c */,
				72B4023B1C0CE27800139783 /* file-private.h */,
				72B4023C1C0CE27800139783 /* file.c */,
				72B4023D1C0CE27800139783 /* file.h */,
				72B4023E1C0CE27800139783 /* getputfile.c */,
				72B4023F1C0CE27800139783 /* globals.c */,
				72B402401C0CE27800139783 /* hash.c */,
				72B402411C0CE27800139783 /* http-addr.c */,
				72B402421C0CE27800139783 /* http-addrlist.c */,
				72B402431C0CE27800139783 /* http-private.h */,
				72B402441C0CE27800139783 /* http-support.c */,
				72B402451C0CE27800139783 /* http.c */,
				72B402461C0CE27800139783 /* http.h */,
				72530E332028BCF20035FF65 /* ipp-file.c */,
				72B402471C0CE27800139783 /* ipp-private.h */,
				72B402481C0CE27800139783 /* ipp-support.c */,
				72530E342028BCF30035FF65 /* ipp-vars.c */,
				72B402491C0CE27800139783 /* ipp.c */,
				72B4024A1C0CE27800139783 /* ipp.h */,
				72B4024B1C0CE27800139783 /* langprintf.c */,
				72B4024C1C0CE27800139783 /* language-private.h */,
				72B4024D1C0CE27800139783 /* language.c */,
				72B4024E1C0CE27800139783 /* language.h */,
				72C30E3021BEF69F00BD6C2B /* md5-internal.h */,
				72B402501C0CE27800139783 /* md5.c */,
				72B402511C0CE27800139783 /* md5passwd.c */,
				72737CF41C24BA4F007CBEF6 /* notify.c */,
				72B402521C0CE27800139783 /* options.c */,
				72B402531C0CE27800139783 /* pwg-media.c */,
				72B402541C0CE27800139783 /* pwg-private.h */,
				72B402551C0CE27800139783 /* pwg.h */,
				2798310D21761F3300BA8393 /* raster-error.c */,
				72B402561C0CE27800139783 /* raster-private.h */,
				2798310C21761F3300BA8393 /* raster-stream.c */,
				2798310B21761F3200BA8393 /* raster-stubs.c */,
				72B402581C0CE27800139783 /* raster.h */,
				72B402591C0CE27800139783 /* request.c */,
				72B4025A1C0CE27800139783 /* snprintf.c */,
				72B4025B1C0CE27800139783 /* string-private.h */,
				72B4025C1C0CE27800139783 /* string.c */,
				72B4025D1C0CE27800139783 /* tempfile.c */,
				72B4025E1C0CE27800139783 /* thread-private.h */,
				72B4025F1C0CE27800139783 /* thread.c */,
				72B402601C0CE27800139783 /* tls-darwin.c */,
				72B402611C0CE27800139783 /* tls-gnutls.c */,
				72B402621C0CE27900139783 /* tls-sspi.c */,
				72B402631C0CE27900139783 /* tls.c */,
				72B402641C0CE27900139783 /* transcode.c */,
				72B402651C0CE27900139783 /* transcode.h */,
				72B402661C0CE27900139783 /* usersys.c */,
				72737CF51C24BA4F007CBEF6 /* util.c */,
				72B402671C0CE27900139783 /* versioning.h */,
			);
			name = libcups;
			sourceTree = "<group>";
		};
		72B4022D1C0CE21C00139783 /* ippserver */ = {
			isa = PBXGroup;
			children = (
				27EB2B8E20463E4B0088BC2C /* auth.c */,
				72B402A31C0CE43D00139783 /* client.c */,
				72B402A41C0CE43D00139783 /* conf.c */,
				72B402A51C0CE43D00139783 /* device.c */,
				72B402A61C0CE43D00139783 /* ipp.c */,
				72B402A71C0CE43D00139783 /* ippserver.h */,
				72B402A91C0CE43D00139783 /* job.c */,
				72B402AA1C0CE43D00139783 /* log.c */,
				72B402AB1C0CE43D00139783 /* main.c */,
				72B589F51D1C6628007117DA /* printer-png.h */,
				72B402AC1C0CE43D00139783 /* printer.c */,
				72A0D4521E6864EB0092958D /* printer3d-png.h */,
				7263CE022086A83C00919E96 /* resource.c */,
				72B402AE1C0CE43D00139783 /* subscription.c */,
				72B402AF1C0CE43D00139783 /* transform.c */,
			);
			name = ippserver;
			sourceTree = "<group>";
		};
		72B4022E1C0CE22300139783 /* tools */ = {
			isa = PBXGroup;
			children = (
				2700680A284E80E600AFBD2F /* ipp3dprinter.c */,
				27EB2BA6204F81710088BC2C /* ippdoclint.c */,
				72E006031C5C0B49006CF057 /* ippproxy.c */,
				725C87C31C767CF800FB3AD5 /* ipptransform.c */,
				2778EBAE1D2FF62B00DE72EC /* ipptransform3d.c */,
				275C6BAA1C87D907000D2DE7 /* dither.h */,
			);
			name = tools;
			sourceTree = "<group>";
		};
		72B402E11C0CE64000139783 /* Documentation */ = {
			isa = PBXGroup;
			children = (
				723D66D41C723CB70078B537 /* CONTRIBUTING.md */,
				723D66D81C723CC20078B537 /* DESIGN.md */,
				27EB2BA8204F81A20088BC2C /* ippdoclint.1 */,
				27EB2BA9204F81A20088BC2C /* ippdoclint.html */,
				2701858D2283B53900271095 /* ippeveprinter.1 */,
				2701858E2283B53900271095 /* ippeveprinter.html */,
				72E006081C5C0BA8006CF057 /* ippfind.1 */,
				72B402E21C0CE66200139783 /* ippfind.html */,
				72E0060C1C5C0BE3006CF057 /* ippproxy.8 */,
				72E0060B1C5C0BE3006CF057 /* ippproxy.html */,
				72B402A81C0CE43D00139783 /* ippserver.8 */,
				72B402E31C0CE66200139783 /* ippserver.html */,
				72E006091C5C0BA8006CF057 /* ipptool.1 */,
				72B402E41C0CE66200139783 /* ipptool.html */,
				72E0060A1C5C0BA8006CF057 /* ipptoolfile.5 */,
				72B402E51C0CE66200139783 /* ipptoolfile.html */,
				275C6BA31C878A65000D2DE7 /* ipptransform.1 */,
				275C6BA21C878A65000D2DE7 /* ipptransform.html */,
				27FDC5F71D7F497500246F95 /* ipptransform3d.1 */,
				27FDC5F61D7F497500246F95 /* ipptransform3d.html */,
				279C01D61D1B0F9700F06A84 /* LICENSE */,
				729181C42011828E005E7560 /* NOTICE */,
				279C01D71D1B0F9700F06A84 /* PI.md */,
				723D66D51C723CB70078B537 /* README.md */,
			);
			name = Documentation;
			sourceTree = "<group>";
		};
		72B403051C0DE49600139783 /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				279B74F7282C516B0026ECAF /* libjpeg.a */,
				279B74F6282C516B0026ECAF /* libpng16.a */,
				279B74ED282C4FF80026ECAF /* libcrypto.a */,
				279B74EE282C4FF90026ECAF /* libssl.a */,
				279B74E9282C3B370026ECAF /* libcups_static.a */,
				279B74EB282C3B370026ECAF /* libpdfio.a */,
				2794FF9B20E2F06F000A7214 /* ImageIO.framework */,
				2794FF9920E2F068000A7214 /* CoreGraphics.framework */,
				27EB2B9220470BBA0088BC2C /* libdl.tbd */,
				27EB2B9020470BAE0088BC2C /* libpam.tbd */,
				72B403061C0DE7FC00139783 /* Security.framework */,
				72B402FB1C0CE8CE00139783 /* libiconv.dylib */,
				72B402FC1C0CE8CE00139783 /* libresolv.dylib */,
				72B402F91C0CE87800139783 /* libz.dylib */,
				72B402E91C0CE81900139783 /* ApplicationServices.framework */,
				72B402EA1C0CE81900139783 /* CoreFoundation.framework */,
				72B402EB1C0CE81900139783 /* SystemConfiguration.framework */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
		270067F5284E80BD00AFBD2F /* ipp3dprinter */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 27006804284E80BD00AFBD2F /* Build configuration list for PBXNativeTarget "ipp3dprinter" */;
			buildPhases = (
				270067F6284E80BD00AFBD2F /* Sources */,
				270067F8284E80BD00AFBD2F /* Frameworks */,
				27006802284E80BD00AFBD2F /* CopyFiles */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = ipp3dprinter;
			productName = ipptool;
			productReference = 27006807284E80BD00AFBD2F /* ipp3dprinter */;
			productType = "com.apple.product-type.tool";
		};
		2778EB9C1D2FF60E00DE72EC /* ipptransform3d */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 2778EBAA1D2FF60E00DE72EC /* Build configuration list for PBXNativeTarget "ipptransform3d" */;
			buildPhases = (
				2778EB9F1D2FF60E00DE72EC /* Sources */,
				2778EBA11D2FF60E00DE72EC /* Frameworks */,
				2778EBA81D2FF60E00DE72EC /* CopyFiles */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = ipptransform3d;
			productName = ipptool;
			productReference = 2778EBAD1D2FF60E00DE72EC /* ipptransform3d */;
			productType = "com.apple.product-type.tool";
		};
		27EB2B94204F81470088BC2C /* ippdoclint */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 27EB2BA2204F81470088BC2C /* Build configuration list for PBXNativeTarget "ippdoclint" */;
			buildPhases = (
				27EB2B97204F81470088BC2C /* Sources */,
				27EB2B99204F81470088BC2C /* Frameworks */,
				27EB2BA0204F81470088BC2C /* CopyFiles */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = ippdoclint;
			productName = ipptool;
			productReference = 27EB2BA5204F81470088BC2C /* ippdoclint */;
			productType = "com.apple.product-type.tool";
		};
		725C87B01C7664DE00FB3AD5 /* ipptransform */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 725C87BD1C7664DE00FB3AD5 /* Build configuration list for PBXNativeTarget "ipptransform" */;
			buildPhases = (
				725C87B31C7664DE00FB3AD5 /* Sources */,
				725C87B51C7664DE00FB3AD5 /* Frameworks */,
				725C87BC1C7664DE00FB3AD5 /* CopyFiles */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = ipptransform;
			productName = ipptool;
			productReference = 725C87C01C7664DE00FB3AD5 /* ipptransform */;
			productType = "com.apple.product-type.tool";
		};
		72B402171C0CDFB400139783 /* ippserver */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 72B4021F1C0CDFB400139783 /* Build configuration list for PBXNativeTarget "ippserver" */;
			buildPhases = (
				72B402141C0CDFB400139783 /* Sources */,
				72B402151C0CDFB400139783 /* Frameworks */,
				72B402161C0CDFB400139783 /* CopyFiles */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = ippserver;
			productName = ippsample;
			productReference = 72B402181C0CDFB400139783 /* ippserver */;
			productType = "com.apple.product-type.tool";
		};
		72E005F21C5C0B10006CF057 /* ippproxy */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 72E005FF1C5C0B10006CF057 /* Build configuration list for PBXNativeTarget "ippproxy" */;
			buildPhases = (
				72E005F51C5C0B10006CF057 /* Sources */,
				72E005F71C5C0B10006CF057 /* Frameworks */,
				72E005FE1C5C0B10006CF057 /* CopyFiles */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = ippproxy;
			productName = ipptool;
			productReference = 72E006021C5C0B10006CF057 /* ippproxy */;
			productType = "com.apple.product-type.tool";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		72B402101C0CDFB400139783 /* Project object */ = {
			isa = PBXProject;
			attributes = {
				DefaultBuildSystemTypeForWorkspace = Latest;
				LastUpgradeCheck = 1200;
				ORGANIZATIONNAME = "IEEE-ISTO Printer Working Group";
				TargetAttributes = {
					72B402171C0CDFB400139783 = {
						CreatedOnToolsVersion = 7.1;
					};
					72E0060D1C5C0C48006CF057 = {
						CreatedOnToolsVersion = 7.3;
					};
				};
			};
			buildConfigurationList = 72B402131C0CDFB400139783 /* Build configuration list for PBXProject "ippsample" */;
			compatibilityVersion = "Xcode 9.3";
			developmentRegion = en;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
				Base,
			);
			mainGroup = 72B4020F1C0CDFB400139783;
			productRefGroup = 72B402191C0CDFB400139783 /* Products */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				72E0060D1C5C0C48006CF057 /* All */,
				270067F5284E80BD00AFBD2F /* ipp3dprinter */,
				27EB2B94204F81470088BC2C /* ippdoclint */,
				72E005F21C5C0B10006CF057 /* ippproxy */,
				72B402171C0CDFB400139783 /* ippserver */,
				725C87B01C7664DE00FB3AD5 /* ipptransform */,
				2778EB9C1D2FF60E00DE72EC /* ipptransform3d */,
			);
		};
/* End PBXProject section */

/* Begin PBXSourcesBuildPhase section */
		270067F6284E80BD00AFBD2F /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				2700680B284E80E600AFBD2F /* ipp3dprinter.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		2778EB9F1D2FF60E00DE72EC /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				2778EBB01D2FF64300DE72EC /* ipptransform3d.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		27EB2B97204F81470088BC2C /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				27EB2BA7204F81730088BC2C /* ippdoclint.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		725C87B31C7664DE00FB3AD5 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				725C87C41C767CF800FB3AD5 /* ipptransform.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		72B402141C0CDFB400139783 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				72B402C01C0CE46800139783 /* log.c in Sources */,
				27EB2B8F20463E4B0088BC2C /* auth.c in Sources */,
				72B402C31C0CE46800139783 /* subscription.c in Sources */,
				72B402C41C0CE46800139783 /* transform.c in Sources */,
				72B402BD1C0CE45F00139783 /* device.c in Sources */,
				72B402BF1C0CE46800139783 /* job.c in Sources */,
				72B402BB1C0CE45A00139783 /* client.c in Sources */,
				72B402BC1C0CE45F00139783 /* conf.c in Sources */,
				72B402BE1C0CE45F00139783 /* ipp.c in Sources */,
				72B402C21C0CE46800139783 /* printer.c in Sources */,
				72B402C11C0CE46800139783 /* main.c in Sources */,
				7263CE032086A83F00919E96 /* resource.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		72E005F51C5C0B10006CF057 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				72E006071C5C0B65006CF057 /* ippproxy.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXTargetDependency section */
		27006809284E80D000AFBD2F /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 270067F5284E80BD00AFBD2F /* ipp3dprinter */;
			targetProxy = 27006808284E80D000AFBD2F /* PBXContainerItemProxy */;
		};
		270185B22283B59C00271095 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 27EB2B94204F81470088BC2C /* ippdoclint */;
			targetProxy = 270185B12283B59C00271095 /* PBXContainerItemProxy */;
		};
		2778EBB21D2FF67B00DE72EC /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 2778EB9C1D2FF60E00DE72EC /* ipptransform3d */;
			targetProxy = 2778EBB11D2FF67B00DE72EC /* PBXContainerItemProxy */;
		};
		725C87C21C7664EF00FB3AD5 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 725C87B01C7664DE00FB3AD5 /* ipptransform */;
			targetProxy = 725C87C11C7664EF00FB3AD5 /* PBXContainerItemProxy */;
		};
		72E006161C5C0C52006CF057 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 72E005F21C5C0B10006CF057 /* ippproxy */;
			targetProxy = 72E006151C5C0C52006CF057 /* PBXContainerItemProxy */;
		};
		72E006181C5C0C52006CF057 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 72B402171C0CDFB400139783 /* ippserver */;
			targetProxy = 72E006171C5C0C52006CF057 /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin XCBuildConfiguration section */
		27006805284E80BD00AFBD2F /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_ENABLE_OBJC_WEAK = YES;
				CODE_SIGN_IDENTITY = "-";
				GCC_C_LANGUAGE_STANDARD = gnu99;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Debug;
		};
		27006806284E80BD00AFBD2F /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_ENABLE_OBJC_WEAK = YES;
				CODE_SIGN_IDENTITY = "-";
				GCC_C_LANGUAGE_STANDARD = gnu99;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Release;
		};
		2778EBAB1D2FF60E00DE72EC /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_ENABLE_OBJC_WEAK = YES;
				CODE_SIGN_IDENTITY = "-";
				GCC_C_LANGUAGE_STANDARD = gnu99;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Debug;
		};
		2778EBAC1D2FF60E00DE72EC /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_ENABLE_OBJC_WEAK = YES;
				CODE_SIGN_IDENTITY = "-";
				GCC_C_LANGUAGE_STANDARD = gnu99;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Release;
		};
		27EB2BA3204F81470088BC2C /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_ENABLE_OBJC_WEAK = YES;
				CODE_SIGN_IDENTITY = "-";
				GCC_C_LANGUAGE_STANDARD = gnu99;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Debug;
		};
		27EB2BA4204F81470088BC2C /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_ENABLE_OBJC_WEAK = YES;
				CODE_SIGN_IDENTITY = "-";
				GCC_C_LANGUAGE_STANDARD = gnu99;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Release;
		};
		725C87BE1C7664DE00FB3AD5 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_ENABLE_OBJC_WEAK = YES;
				CODE_SIGN_IDENTITY = "-";
				GCC_C_LANGUAGE_STANDARD = gnu99;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Debug;
		};
		725C87BF1C7664DE00FB3AD5 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_ENABLE_OBJC_WEAK = YES;
				CODE_SIGN_IDENTITY = "-";
				GCC_C_LANGUAGE_STANDARD = gnu99;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Release;
		};
		72B4021D1C0CDFB400139783 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
				CLANG_ANALYZER_SECURITY_FLOATLOOPCOUNTER = YES;
				CLANG_ANALYZER_SECURITY_INSECUREAPI_RAND = YES;
				CLANG_ANALYZER_SECURITY_INSECUREAPI_STRCPY = YES;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = 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_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_IMPLICIT_SIGN_CONVERSION = YES;
				CLANG_WARN_INFINITE_RECURSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
				CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
				CLANG_WARN_STRICT_PROTOTYPES = YES;
				CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION = YES;
				CLANG_WARN_SUSPICIOUS_MOVE = YES;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				CODE_SIGN_IDENTITY = "-";
				COPY_PHASE_STRIP = NO;
				CURRENT_PROJECT_VERSION = 1.0;
				DEBUG_INFORMATION_FORMAT = dwarf;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				ENABLE_TESTABILITY = YES;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				GCC_TREAT_WARNINGS_AS_ERRORS = YES;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_PEDANTIC = YES;
				GCC_WARN_SHADOW = YES;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_LABEL = YES;
				GCC_WARN_UNUSED_PARAMETER = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				HEADER_SEARCH_PATHS = (
					.,
					..,
					../libcups,
					../pdfio,
					/usr/local/include,
				);
				LIBRARY_SEARCH_PATHS = /usr/local/lib;
				MACOSX_DEPLOYMENT_TARGET = 10.14;
				ONLY_ACTIVE_ARCH = YES;
				RUN_CLANG_STATIC_ANALYZER = YES;
				SDKROOT = macosx;
				VERSIONING_SYSTEM = "apple-generic";
			};
			name = Debug;
		};
		72B4021E1C0CDFB400139783 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
				CLANG_ANALYZER_SECURITY_FLOATLOOPCOUNTER = YES;
				CLANG_ANALYZER_SECURITY_INSECUREAPI_RAND = YES;
				CLANG_ANALYZER_SECURITY_INSECUREAPI_STRCPY = YES;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = 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_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_IMPLICIT_SIGN_CONVERSION = YES;
				CLANG_WARN_INFINITE_RECURSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
				CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
				CLANG_WARN_STRICT_PROTOTYPES = YES;
				CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION = YES;
				CLANG_WARN_SUSPICIOUS_MOVE = YES;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				CODE_SIGN_IDENTITY = "Mac Developer";
				COPY_PHASE_STRIP = NO;
				CURRENT_PROJECT_VERSION = 1.0;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				ENABLE_NS_ASSERTIONS = NO;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_PREPROCESSOR_DEFINITIONS = "";
				GCC_TREAT_WARNINGS_AS_ERRORS = YES;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_PEDANTIC = YES;
				GCC_WARN_SHADOW = YES;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_LABEL = YES;
				GCC_WARN_UNUSED_PARAMETER = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				HEADER_SEARCH_PATHS = (
					.,
					..,
					../libcups,
					../pdfio,
					/usr/local/include,
				);
				LIBRARY_SEARCH_PATHS = /usr/local/lib;
				MACOSX_DEPLOYMENT_TARGET = 10.14;
				RUN_CLANG_STATIC_ANALYZER = YES;
				SDKROOT = macosx;
				VERSIONING_SYSTEM = "apple-generic";
			};
			name = Release;
		};
		72B402201C0CDFB400139783 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_ENABLE_OBJC_WEAK = YES;
				CODE_SIGN_IDENTITY = "-";
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Debug;
		};
		72B402211C0CDFB400139783 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_ENABLE_OBJC_WEAK = YES;
				CODE_SIGN_IDENTITY = "-";
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Release;
		};
		72E006001C5C0B10006CF057 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_ENABLE_OBJC_WEAK = YES;
				CODE_SIGN_IDENTITY = "-";
				GCC_C_LANGUAGE_STANDARD = gnu99;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Debug;
		};
		72E006011C5C0B10006CF057 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_ENABLE_OBJC_WEAK = YES;
				CODE_SIGN_IDENTITY = "-";
				GCC_C_LANGUAGE_STANDARD = gnu99;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Release;
		};
		72E0060F1C5C0C48006CF057 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_ENABLE_OBJC_WEAK = YES;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Debug;
		};
		72E006101C5C0C48006CF057 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_ENABLE_OBJC_WEAK = YES;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		27006804284E80BD00AFBD2F /* Build configuration list for PBXNativeTarget "ipp3dprinter" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				27006805284E80BD00AFBD2F /* Debug */,
				27006806284E80BD00AFBD2F /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		2778EBAA1D2FF60E00DE72EC /* Build configuration list for PBXNativeTarget "ipptransform3d" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				2778EBAB1D2FF60E00DE72EC /* Debug */,
				2778EBAC1D2FF60E00DE72EC /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		27EB2BA2204F81470088BC2C /* Build configuration list for PBXNativeTarget "ippdoclint" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				27EB2BA3204F81470088BC2C /* Debug */,
				27EB2BA4204F81470088BC2C /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		725C87BD1C7664DE00FB3AD5 /* Build configuration list for PBXNativeTarget "ipptransform" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				725C87BE1C7664DE00FB3AD5 /* Debug */,
				725C87BF1C7664DE00FB3AD5 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		72B402131C0CDFB400139783 /* Build configuration list for PBXProject "ippsample" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				72B4021D1C0CDFB400139783 /* Debug */,
				72B4021E1C0CDFB400139783 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		72B4021F1C0CDFB400139783 /* Build configuration list for PBXNativeTarget "ippserver" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				72B402201C0CDFB400139783 /* Debug */,
				72B402211C0CDFB400139783 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		72E005FF1C5C0B10006CF057 /* Build configuration list for PBXNativeTarget "ippproxy" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				72E006001C5C0B10006CF057 /* Debug */,
				72E006011C5C0B10006CF057 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		72E0060E1C5C0C48006CF057 /* Build configuration list for PBXAggregateTarget "All" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				72E0060F1C5C0C48006CF057 /* Debug */,
				72E006101C5C0C48006CF057 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = 72B402101C0CDFB400139783 /* Project object */;
}