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

/* Begin PBXBuildFile section */
		22A02E7C166A2B4B00085452 /* Animal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A02DF1166A2B4B00085452 /* Animal.cpp */; };
		22A02E7D166A2B4B00085452 /* Asterisk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A02DF3166A2B4B00085452 /* Asterisk.cpp */; };
		22A02E7E166A2B4B00085452 /* music.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A02DF5166A2B4B00085452 /* music.cpp */; };
		22A02E7F166A2B4B00085452 /* Puppet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A02DF7166A2B4B00085452 /* Puppet.cpp */; };
		22A02E80166A2B4B00085452 /* Tag.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A02DF9166A2B4B00085452 /* Tag.cpp */; };
		22A02E81166A2B4B00085452 /* ofxAssets.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A02DFB166A2B4B00085452 /* ofxAssets.cpp */; };
		22A02E82166A2B4B00085452 /* ofxDisplay.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A02DFF166A2B4B00085452 /* ofxDisplay.cpp */; };
		22A02E83166A2B4B00085452 /* ofxDisplayManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A02E02166A2B4B00085452 /* ofxDisplayManager.cpp */; };
		22A02E84166A2B4B00085452 /* ofxDisplayManagerMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = 22A02E04166A2B4B00085452 /* ofxDisplayManagerMac.mm */; };
		22A02E85166A2B4B00085452 /* ofxFenster.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A02E05166A2B4B00085452 /* ofxFenster.cpp */; };
		22A02E86166A2B4B00085452 /* ofxFensterCanvas.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A02E07166A2B4B00085452 /* ofxFensterCanvas.cpp */; };
		22A02E87166A2B4B00085452 /* ofxFensterManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A02E09166A2B4B00085452 /* ofxFensterManager.cpp */; };
		22A02E88166A2B4B00085452 /* ofxBaseGui.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A02E4B166A2B4B00085452 /* ofxBaseGui.cpp */; };
		22A02E89166A2B4B00085452 /* ofxButton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A02E4D166A2B4B00085452 /* ofxButton.cpp */; };
		22A02E8A166A2B4B00085452 /* ofxLabel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A02E50166A2B4B00085452 /* ofxLabel.cpp */; };
		22A02E8B166A2B4B00085452 /* ofxPanel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A02E52166A2B4B00085452 /* ofxPanel.cpp */; };
		22A02E8C166A2B4B00085452 /* ofxSlider.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A02E54166A2B4B00085452 /* ofxSlider.cpp */; };
		22A02E8D166A2B4B00085452 /* ofxToggle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A02E56166A2B4B00085452 /* ofxToggle.cpp */; };
		22A02E8E166A2B4B00085452 /* ofxTCPClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A02E5C166A2B4B00085452 /* ofxTCPClient.cpp */; };
		22A02E8F166A2B4B00085452 /* ofxTCPManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A02E5E166A2B4B00085452 /* ofxTCPManager.cpp */; };
		22A02E90166A2B4B00085452 /* ofxTCPServer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A02E60166A2B4B00085452 /* ofxTCPServer.cpp */; };
		22A02E91166A2B4B00085452 /* ofxUDPManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A02E62166A2B4B00085452 /* ofxUDPManager.cpp */; };
		22A02E92166A2B4B00085452 /* ofxSprite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A02E66166A2B4B00085452 /* ofxSprite.cpp */; };
		22A02E93166A2B4B00085452 /* ofxSpriteManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A02E68166A2B4B00085452 /* ofxSpriteManager.cpp */; };
		22A02E94166A2B4B00085452 /* ofxXmlSettings.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A02E6C166A2B4B00085452 /* ofxXmlSettings.cpp */; };
		22A02E95166A2B4B00085452 /* tinyxml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A02E6F166A2B4B00085452 /* tinyxml.cpp */; };
		22A02E96166A2B4B00085452 /* tinyxmlerror.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A02E71166A2B4B00085452 /* tinyxmlerror.cpp */; };
		22A02E97166A2B4B00085452 /* tinyxmlparser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A02E72166A2B4B00085452 /* tinyxmlparser.cpp */; };
		BBAB23CB13894F3D00AA2426 /* GLUT.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = BBAB23BE13894E4700AA2426 /* GLUT.framework */; };
		E4328149138ABC9F0047C5CB /* openFrameworksDebug.a in Frameworks */ = {isa = PBXBuildFile; fileRef = E4328148138ABC890047C5CB /* openFrameworksDebug.a */; };
		E45BE97B0E8CC7DD009D7055 /* AGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E45BE9710E8CC7DD009D7055 /* AGL.framework */; };
		E45BE97C0E8CC7DD009D7055 /* ApplicationServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E45BE9720E8CC7DD009D7055 /* ApplicationServices.framework */; };
		E45BE97D0E8CC7DD009D7055 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E45BE9730E8CC7DD009D7055 /* AudioToolbox.framework */; };
		E45BE97E0E8CC7DD009D7055 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E45BE9740E8CC7DD009D7055 /* Carbon.framework */; };
		E45BE97F0E8CC7DD009D7055 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E45BE9750E8CC7DD009D7055 /* CoreAudio.framework */; };
		E45BE9800E8CC7DD009D7055 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E45BE9760E8CC7DD009D7055 /* CoreFoundation.framework */; };
		E45BE9810E8CC7DD009D7055 /* CoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E45BE9770E8CC7DD009D7055 /* CoreServices.framework */; };
		E45BE9830E8CC7DD009D7055 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E45BE9790E8CC7DD009D7055 /* OpenGL.framework */; };
		E45BE9840E8CC7DD009D7055 /* QuickTime.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E45BE97A0E8CC7DD009D7055 /* QuickTime.framework */; };
		E4B69E200A3A1BDC003C02F2 /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E4B69E1D0A3A1BDC003C02F2 /* main.cpp */; };
		E4B69E210A3A1BDC003C02F2 /* testApp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E4B69E1E0A3A1BDC003C02F2 /* testApp.cpp */; };
		E4C2424710CC5A17004149E2 /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E4C2424410CC5A17004149E2 /* AppKit.framework */; };
		E4C2424810CC5A17004149E2 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E4C2424510CC5A17004149E2 /* Cocoa.framework */; };
		E4C2424910CC5A17004149E2 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E4C2424610CC5A17004149E2 /* IOKit.framework */; };
		E4EB6799138ADC1D00A09F29 /* GLUT.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BBAB23BE13894E4700AA2426 /* GLUT.framework */; };
		E7E077E515D3B63C0020DFD4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E7E077E415D3B63C0020DFD4 /* CoreVideo.framework */; };
		E7E077E815D3B6510020DFD4 /* QTKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E7E077E715D3B6510020DFD4 /* QTKit.framework */; };
		E7F985F815E0DEA3003869B5 /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E7F985F515E0DE99003869B5 /* Accelerate.framework */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		E4328147138ABC890047C5CB /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = E4328143138ABC890047C5CB /* openFrameworksLib.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = E4B27C1510CBEB8E00536013;
			remoteInfo = openFrameworks;
		};
		E4EEB9AB138B136A00A80321 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = E4328143138ABC890047C5CB /* openFrameworksLib.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = E4B27C1410CBEB8E00536013;
			remoteInfo = openFrameworks;
		};
/* End PBXContainerItemProxy section */

/* Begin PBXCopyFilesBuildPhase section */
		E4C2427710CC5ABF004149E2 /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = "";
			dstSubfolderSpec = 10;
			files = (
				BBAB23CB13894F3D00AA2426 /* GLUT.framework in CopyFiles */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
		22A02DF1166A2B4B00085452 /* Animal.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = Animal.cpp; path = src/Animal.cpp; sourceTree = SOURCE_ROOT; };
		22A02DF2166A2B4B00085452 /* Animal.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = Animal.h; path = src/Animal.h; sourceTree = SOURCE_ROOT; };
		22A02DF3166A2B4B00085452 /* Asterisk.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = Asterisk.cpp; path = src/Asterisk.cpp; sourceTree = SOURCE_ROOT; };
		22A02DF4166A2B4B00085452 /* Asterisk.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = Asterisk.h; path = src/Asterisk.h; sourceTree = SOURCE_ROOT; };
		22A02DF5166A2B4B00085452 /* music.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = music.cpp; path = src/music.cpp; sourceTree = SOURCE_ROOT; };
		22A02DF6166A2B4B00085452 /* music.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = music.h; path = src/music.h; sourceTree = SOURCE_ROOT; };
		22A02DF7166A2B4B00085452 /* Puppet.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = Puppet.cpp; path = src/Puppet.cpp; sourceTree = SOURCE_ROOT; };
		22A02DF8166A2B4B00085452 /* Puppet.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = Puppet.h; path = src/Puppet.h; sourceTree = SOURCE_ROOT; };
		22A02DF9166A2B4B00085452 /* Tag.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = Tag.cpp; path = src/Tag.cpp; sourceTree = SOURCE_ROOT; };
		22A02DFA166A2B4B00085452 /* Tag.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = Tag.h; path = src/Tag.h; sourceTree = SOURCE_ROOT; };
		22A02DFB166A2B4B00085452 /* ofxAssets.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = ofxAssets.cpp; path = ../../../../../Developer/Library/openFrameworks/addons/ofxAssets/src/ofxAssets.cpp; sourceTree = SOURCE_ROOT; };
		22A02DFC166A2B4B00085452 /* ofxAssets.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxAssets.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxAssets/src/ofxAssets.h; sourceTree = SOURCE_ROOT; };
		22A02DFF166A2B4B00085452 /* ofxDisplay.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = ofxDisplay.cpp; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/src/ofxDisplay.cpp; sourceTree = SOURCE_ROOT; };
		22A02E00166A2B4B00085452 /* ofxDisplay.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxDisplay.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/src/ofxDisplay.h; sourceTree = SOURCE_ROOT; };
		22A02E01166A2B4B00085452 /* ofxDisplayMac.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxDisplayMac.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/src/ofxDisplayMac.h; sourceTree = SOURCE_ROOT; };
		22A02E02166A2B4B00085452 /* ofxDisplayManager.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = ofxDisplayManager.cpp; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/src/ofxDisplayManager.cpp; sourceTree = SOURCE_ROOT; };
		22A02E03166A2B4B00085452 /* ofxDisplayManager.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxDisplayManager.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/src/ofxDisplayManager.h; sourceTree = SOURCE_ROOT; };
		22A02E04166A2B4B00085452 /* ofxDisplayManagerMac.mm */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.objcpp; fileEncoding = 30; name = ofxDisplayManagerMac.mm; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/src/ofxDisplayManagerMac.mm; sourceTree = SOURCE_ROOT; };
		22A02E05166A2B4B00085452 /* ofxFenster.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = ofxFenster.cpp; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/src/ofxFenster.cpp; sourceTree = SOURCE_ROOT; };
		22A02E06166A2B4B00085452 /* ofxFenster.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxFenster.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/src/ofxFenster.h; sourceTree = SOURCE_ROOT; };
		22A02E07166A2B4B00085452 /* ofxFensterCanvas.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = ofxFensterCanvas.cpp; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/src/ofxFensterCanvas.cpp; sourceTree = SOURCE_ROOT; };
		22A02E08166A2B4B00085452 /* ofxFensterCanvas.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxFensterCanvas.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/src/ofxFensterCanvas.h; sourceTree = SOURCE_ROOT; };
		22A02E09166A2B4B00085452 /* ofxFensterManager.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = ofxFensterManager.cpp; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/src/ofxFensterManager.cpp; sourceTree = SOURCE_ROOT; };
		22A02E0A166A2B4B00085452 /* ofxFensterManager.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxFensterManager.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/src/ofxFensterManager.h; sourceTree = SOURCE_ROOT; };
		22A02E0C166A2B4B00085452 /* GHOST_DisplayManagerCocoa.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_DisplayManagerCocoa.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/Cocoa/GHOST_DisplayManagerCocoa.h; sourceTree = SOURCE_ROOT; };
		22A02E0D166A2B4B00085452 /* GHOST_SystemCocoa.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_SystemCocoa.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/Cocoa/GHOST_SystemCocoa.h; sourceTree = SOURCE_ROOT; };
		22A02E0E166A2B4B00085452 /* GHOST_SystemPathsCocoa.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_SystemPathsCocoa.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/Cocoa/GHOST_SystemPathsCocoa.h; sourceTree = SOURCE_ROOT; };
		22A02E0F166A2B4B00085452 /* GHOST_WindowCocoa.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_WindowCocoa.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/Cocoa/GHOST_WindowCocoa.h; sourceTree = SOURCE_ROOT; };
		22A02E11166A2B4B00085452 /* GHOST_Buttons.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_Buttons.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_Buttons.h; sourceTree = SOURCE_ROOT; };
		22A02E12166A2B4B00085452 /* GHOST_C-api.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = "GHOST_C-api.h"; path = "../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_C-api.h"; sourceTree = SOURCE_ROOT; };
		22A02E13166A2B4B00085452 /* GHOST_CallbackEventConsumer.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_CallbackEventConsumer.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_CallbackEventConsumer.h; sourceTree = SOURCE_ROOT; };
		22A02E14166A2B4B00085452 /* GHOST_Debug.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_Debug.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_Debug.h; sourceTree = SOURCE_ROOT; };
		22A02E15166A2B4B00085452 /* GHOST_DisplayManager.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_DisplayManager.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_DisplayManager.h; sourceTree = SOURCE_ROOT; };
		22A02E16166A2B4B00085452 /* GHOST_DisplayManagerNULL.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_DisplayManagerNULL.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_DisplayManagerNULL.h; sourceTree = SOURCE_ROOT; };
		22A02E17166A2B4B00085452 /* GHOST_Event.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_Event.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_Event.h; sourceTree = SOURCE_ROOT; };
		22A02E18166A2B4B00085452 /* GHOST_EventButton.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_EventButton.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_EventButton.h; sourceTree = SOURCE_ROOT; };
		22A02E19166A2B4B00085452 /* GHOST_EventCursor.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_EventCursor.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_EventCursor.h; sourceTree = SOURCE_ROOT; };
		22A02E1A166A2B4B00085452 /* GHOST_EventDragnDrop.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_EventDragnDrop.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_EventDragnDrop.h; sourceTree = SOURCE_ROOT; };
		22A02E1B166A2B4B00085452 /* GHOST_EventKey.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_EventKey.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_EventKey.h; sourceTree = SOURCE_ROOT; };
		22A02E1C166A2B4B00085452 /* GHOST_EventManager.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_EventManager.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_EventManager.h; sourceTree = SOURCE_ROOT; };
		22A02E1D166A2B4B00085452 /* GHOST_EventNDOF.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_EventNDOF.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_EventNDOF.h; sourceTree = SOURCE_ROOT; };
		22A02E1E166A2B4B00085452 /* GHOST_EventPrinter.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_EventPrinter.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_EventPrinter.h; sourceTree = SOURCE_ROOT; };
		22A02E1F166A2B4B00085452 /* GHOST_EventString.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_EventString.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_EventString.h; sourceTree = SOURCE_ROOT; };
		22A02E20166A2B4B00085452 /* GHOST_EventTrackpad.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_EventTrackpad.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_EventTrackpad.h; sourceTree = SOURCE_ROOT; };
		22A02E21166A2B4B00085452 /* GHOST_EventWheel.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_EventWheel.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_EventWheel.h; sourceTree = SOURCE_ROOT; };
		22A02E22166A2B4B00085452 /* GHOST_IEvent.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_IEvent.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_IEvent.h; sourceTree = SOURCE_ROOT; };
		22A02E23166A2B4B00085452 /* GHOST_IEventConsumer.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_IEventConsumer.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_IEventConsumer.h; sourceTree = SOURCE_ROOT; };
		22A02E24166A2B4B00085452 /* GHOST_ISystem.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_ISystem.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_ISystem.h; sourceTree = SOURCE_ROOT; };
		22A02E25166A2B4B00085452 /* GHOST_ISystemPaths.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_ISystemPaths.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_ISystemPaths.h; sourceTree = SOURCE_ROOT; };
		22A02E26166A2B4B00085452 /* GHOST_ITimerTask.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_ITimerTask.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_ITimerTask.h; sourceTree = SOURCE_ROOT; };
		22A02E27166A2B4B00085452 /* GHOST_IWindow.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_IWindow.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_IWindow.h; sourceTree = SOURCE_ROOT; };
		22A02E28166A2B4B00085452 /* GHOST_ModifierKeys.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_ModifierKeys.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_ModifierKeys.h; sourceTree = SOURCE_ROOT; };
		22A02E29166A2B4B00085452 /* GHOST_Path-api.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = "GHOST_Path-api.h"; path = "../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_Path-api.h"; sourceTree = SOURCE_ROOT; };
		22A02E2A166A2B4B00085452 /* GHOST_Rect.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_Rect.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_Rect.h; sourceTree = SOURCE_ROOT; };
		22A02E2B166A2B4B00085452 /* GHOST_System.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_System.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_System.h; sourceTree = SOURCE_ROOT; };
		22A02E2C166A2B4B00085452 /* GHOST_SystemNULL.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_SystemNULL.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_SystemNULL.h; sourceTree = SOURCE_ROOT; };
		22A02E2D166A2B4B00085452 /* GHOST_SystemPaths.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_SystemPaths.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_SystemPaths.h; sourceTree = SOURCE_ROOT; };
		22A02E2E166A2B4B00085452 /* GHOST_TimerManager.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_TimerManager.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_TimerManager.h; sourceTree = SOURCE_ROOT; };
		22A02E2F166A2B4B00085452 /* GHOST_TimerTask.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_TimerTask.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_TimerTask.h; sourceTree = SOURCE_ROOT; };
		22A02E30166A2B4B00085452 /* GHOST_Types.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_Types.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_Types.h; sourceTree = SOURCE_ROOT; };
		22A02E31166A2B4B00085452 /* GHOST_Window.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_Window.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_Window.h; sourceTree = SOURCE_ROOT; };
		22A02E32166A2B4B00085452 /* GHOST_WindowManager.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_WindowManager.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_WindowManager.h; sourceTree = SOURCE_ROOT; };
		22A02E33166A2B4B00085452 /* GHOST_WindowNULL.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_WindowNULL.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/GHOST_WindowNULL.h; sourceTree = SOURCE_ROOT; };
		22A02E34166A2B4B00085452 /* GHOST_DisplayManagerWin32.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_DisplayManagerWin32.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/WIN32/GHOST_DisplayManagerWin32.h; sourceTree = SOURCE_ROOT; };
		22A02E35166A2B4B00085452 /* GHOST_DropTargetWin32.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_DropTargetWin32.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/WIN32/GHOST_DropTargetWin32.h; sourceTree = SOURCE_ROOT; };
		22A02E36166A2B4B00085452 /* GHOST_SystemPathsWin32.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_SystemPathsWin32.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/WIN32/GHOST_SystemPathsWin32.h; sourceTree = SOURCE_ROOT; };
		22A02E37166A2B4B00085452 /* GHOST_SystemWin32.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_SystemWin32.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/WIN32/GHOST_SystemWin32.h; sourceTree = SOURCE_ROOT; };
		22A02E38166A2B4B00085452 /* GHOST_TaskbarWin32.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_TaskbarWin32.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/WIN32/GHOST_TaskbarWin32.h; sourceTree = SOURCE_ROOT; };
		22A02E39166A2B4B00085452 /* GHOST_WindowWin32.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_WindowWin32.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/WIN32/GHOST_WindowWin32.h; sourceTree = SOURCE_ROOT; };
		22A02E3A166A2B4B00085452 /* pktdef.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = pktdef.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/WIN32/pktdef.h; sourceTree = SOURCE_ROOT; };
		22A02E3B166A2B4B00085452 /* wintab.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = wintab.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/WIN32/wintab.h; sourceTree = SOURCE_ROOT; };
		22A02E3D166A2B4B00085452 /* GHOST_DisplayManagerX11.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_DisplayManagerX11.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/X11/GHOST_DisplayManagerX11.h; sourceTree = SOURCE_ROOT; };
		22A02E3E166A2B4B00085452 /* GHOST_SystemPathsX11.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_SystemPathsX11.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/X11/GHOST_SystemPathsX11.h; sourceTree = SOURCE_ROOT; };
		22A02E3F166A2B4B00085452 /* GHOST_SystemX11.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_SystemX11.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/X11/GHOST_SystemX11.h; sourceTree = SOURCE_ROOT; };
		22A02E40166A2B4B00085452 /* GHOST_WindowX11.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = GHOST_WindowX11.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/X11/GHOST_WindowX11.h; sourceTree = SOURCE_ROOT; };
		22A02E44166A2B4B00085452 /* STR_String.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = STR_String.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/string/include/STR_String.h; sourceTree = SOURCE_ROOT; };
		22A02E49166A2B4B00085452 /* ofOscParameter.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofOscParameter.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxGui/src/ofOscParameter.h; sourceTree = SOURCE_ROOT; };
		22A02E4A166A2B4B00085452 /* ofParameter.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofParameter.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxGui/src/ofParameter.h; sourceTree = SOURCE_ROOT; };
		22A02E4B166A2B4B00085452 /* ofxBaseGui.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = ofxBaseGui.cpp; path = ../../../../../Developer/Library/openFrameworks/addons/ofxGui/src/ofxBaseGui.cpp; sourceTree = SOURCE_ROOT; };
		22A02E4C166A2B4B00085452 /* ofxBaseGui.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxBaseGui.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxGui/src/ofxBaseGui.h; sourceTree = SOURCE_ROOT; };
		22A02E4D166A2B4B00085452 /* ofxButton.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = ofxButton.cpp; path = ../../../../../Developer/Library/openFrameworks/addons/ofxGui/src/ofxButton.cpp; sourceTree = SOURCE_ROOT; };
		22A02E4E166A2B4B00085452 /* ofxButton.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxButton.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxGui/src/ofxButton.h; sourceTree = SOURCE_ROOT; };
		22A02E4F166A2B4B00085452 /* ofxGui.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxGui.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxGui/src/ofxGui.h; sourceTree = SOURCE_ROOT; };
		22A02E50166A2B4B00085452 /* ofxLabel.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = ofxLabel.cpp; path = ../../../../../Developer/Library/openFrameworks/addons/ofxGui/src/ofxLabel.cpp; sourceTree = SOURCE_ROOT; };
		22A02E51166A2B4B00085452 /* ofxLabel.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxLabel.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxGui/src/ofxLabel.h; sourceTree = SOURCE_ROOT; };
		22A02E52166A2B4B00085452 /* ofxPanel.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = ofxPanel.cpp; path = ../../../../../Developer/Library/openFrameworks/addons/ofxGui/src/ofxPanel.cpp; sourceTree = SOURCE_ROOT; };
		22A02E53166A2B4B00085452 /* ofxPanel.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxPanel.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxGui/src/ofxPanel.h; sourceTree = SOURCE_ROOT; };
		22A02E54166A2B4B00085452 /* ofxSlider.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = ofxSlider.cpp; path = ../../../../../Developer/Library/openFrameworks/addons/ofxGui/src/ofxSlider.cpp; sourceTree = SOURCE_ROOT; };
		22A02E55166A2B4B00085452 /* ofxSlider.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxSlider.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxGui/src/ofxSlider.h; sourceTree = SOURCE_ROOT; };
		22A02E56166A2B4B00085452 /* ofxToggle.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = ofxToggle.cpp; path = ../../../../../Developer/Library/openFrameworks/addons/ofxGui/src/ofxToggle.cpp; sourceTree = SOURCE_ROOT; };
		22A02E57166A2B4B00085452 /* ofxToggle.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxToggle.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxGui/src/ofxToggle.h; sourceTree = SOURCE_ROOT; };
		22A02E5A166A2B4B00085452 /* ofxNetwork.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxNetwork.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxNetwork/src/ofxNetwork.h; sourceTree = SOURCE_ROOT; };
		22A02E5B166A2B4B00085452 /* ofxNetworkUtils.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxNetworkUtils.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxNetwork/src/ofxNetworkUtils.h; sourceTree = SOURCE_ROOT; };
		22A02E5C166A2B4B00085452 /* ofxTCPClient.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = ofxTCPClient.cpp; path = ../../../../../Developer/Library/openFrameworks/addons/ofxNetwork/src/ofxTCPClient.cpp; sourceTree = SOURCE_ROOT; };
		22A02E5D166A2B4B00085452 /* ofxTCPClient.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxTCPClient.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxNetwork/src/ofxTCPClient.h; sourceTree = SOURCE_ROOT; };
		22A02E5E166A2B4B00085452 /* ofxTCPManager.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = ofxTCPManager.cpp; path = ../../../../../Developer/Library/openFrameworks/addons/ofxNetwork/src/ofxTCPManager.cpp; sourceTree = SOURCE_ROOT; };
		22A02E5F166A2B4B00085452 /* ofxTCPManager.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxTCPManager.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxNetwork/src/ofxTCPManager.h; sourceTree = SOURCE_ROOT; };
		22A02E60166A2B4B00085452 /* ofxTCPServer.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = ofxTCPServer.cpp; path = ../../../../../Developer/Library/openFrameworks/addons/ofxNetwork/src/ofxTCPServer.cpp; sourceTree = SOURCE_ROOT; };
		22A02E61166A2B4B00085452 /* ofxTCPServer.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxTCPServer.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxNetwork/src/ofxTCPServer.h; sourceTree = SOURCE_ROOT; };
		22A02E62166A2B4B00085452 /* ofxUDPManager.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = ofxUDPManager.cpp; path = ../../../../../Developer/Library/openFrameworks/addons/ofxNetwork/src/ofxUDPManager.cpp; sourceTree = SOURCE_ROOT; };
		22A02E63166A2B4B00085452 /* ofxUDPManager.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxUDPManager.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxNetwork/src/ofxUDPManager.h; sourceTree = SOURCE_ROOT; };
		22A02E66166A2B4B00085452 /* ofxSprite.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = ofxSprite.cpp; path = ../../../../../Developer/Library/openFrameworks/addons/ofxSpriteManager/src/ofxSprite.cpp; sourceTree = SOURCE_ROOT; };
		22A02E67166A2B4B00085452 /* ofxSprite.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxSprite.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxSpriteManager/src/ofxSprite.h; sourceTree = SOURCE_ROOT; };
		22A02E68166A2B4B00085452 /* ofxSpriteManager.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = ofxSpriteManager.cpp; path = ../../../../../Developer/Library/openFrameworks/addons/ofxSpriteManager/src/ofxSpriteManager.cpp; sourceTree = SOURCE_ROOT; };
		22A02E69166A2B4B00085452 /* ofxSpriteManager.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxSpriteManager.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxSpriteManager/src/ofxSpriteManager.h; sourceTree = SOURCE_ROOT; };
		22A02E6C166A2B4B00085452 /* ofxXmlSettings.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = ofxXmlSettings.cpp; path = ../../../../../Developer/Library/openFrameworks/addons/ofxXmlSettings/src/ofxXmlSettings.cpp; sourceTree = SOURCE_ROOT; };
		22A02E6D166A2B4B00085452 /* ofxXmlSettings.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = ofxXmlSettings.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxXmlSettings/src/ofxXmlSettings.h; sourceTree = SOURCE_ROOT; };
		22A02E6F166A2B4B00085452 /* tinyxml.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = tinyxml.cpp; path = ../../../../../Developer/Library/openFrameworks/addons/ofxXmlSettings/libs/tinyxml.cpp; sourceTree = SOURCE_ROOT; };
		22A02E70166A2B4B00085452 /* tinyxml.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 30; name = tinyxml.h; path = ../../../../../Developer/Library/openFrameworks/addons/ofxXmlSettings/libs/tinyxml.h; sourceTree = SOURCE_ROOT; };
		22A02E71166A2B4B00085452 /* tinyxmlerror.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = tinyxmlerror.cpp; path = ../../../../../Developer/Library/openFrameworks/addons/ofxXmlSettings/libs/tinyxmlerror.cpp; sourceTree = SOURCE_ROOT; };
		22A02E72166A2B4B00085452 /* tinyxmlparser.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = tinyxmlparser.cpp; path = ../../../../../Developer/Library/openFrameworks/addons/ofxXmlSettings/libs/tinyxmlparser.cpp; sourceTree = SOURCE_ROOT; };
		BBAB23BE13894E4700AA2426 /* GLUT.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLUT.framework; path = ../../../../../Developer/Library/openFrameworks/libs/glut/lib/osx/GLUT.framework; sourceTree = "<group>"; };
		E4328143138ABC890047C5CB /* openFrameworksLib.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = openFrameworksLib.xcodeproj; path = ../../../../../Developer/Library/openFrameworks/libs/openFrameworksCompiled/project/osx/openFrameworksLib.xcodeproj; sourceTree = SOURCE_ROOT; };
		E45BE9710E8CC7DD009D7055 /* AGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AGL.framework; path = /System/Library/Frameworks/AGL.framework; sourceTree = "<absolute>"; };
		E45BE9720E8CC7DD009D7055 /* ApplicationServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ApplicationServices.framework; path = /System/Library/Frameworks/ApplicationServices.framework; sourceTree = "<absolute>"; };
		E45BE9730E8CC7DD009D7055 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = /System/Library/Frameworks/AudioToolbox.framework; sourceTree = "<absolute>"; };
		E45BE9740E8CC7DD009D7055 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = /System/Library/Frameworks/Carbon.framework; sourceTree = "<absolute>"; };
		E45BE9750E8CC7DD009D7055 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = /System/Library/Frameworks/CoreAudio.framework; sourceTree = "<absolute>"; };
		E45BE9760E8CC7DD009D7055 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = /System/Library/Frameworks/CoreFoundation.framework; sourceTree = "<absolute>"; };
		E45BE9770E8CC7DD009D7055 /* CoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreServices.framework; path = /System/Library/Frameworks/CoreServices.framework; sourceTree = "<absolute>"; };
		E45BE9790E8CC7DD009D7055 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = /System/Library/Frameworks/OpenGL.framework; sourceTree = "<absolute>"; };
		E45BE97A0E8CC7DD009D7055 /* QuickTime.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuickTime.framework; path = /System/Library/Frameworks/QuickTime.framework; sourceTree = "<absolute>"; };
		E4B69B5B0A3A1756003C02F2 /* vfgDebug.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = vfgDebug.app; sourceTree = BUILT_PRODUCTS_DIR; };
		E4B69E1D0A3A1BDC003C02F2 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = main.cpp; path = src/main.cpp; sourceTree = SOURCE_ROOT; };
		E4B69E1E0A3A1BDC003C02F2 /* testApp.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 30; name = testApp.cpp; path = src/testApp.cpp; sourceTree = SOURCE_ROOT; };
		E4B69E1F0A3A1BDC003C02F2 /* testApp.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = testApp.h; path = src/testApp.h; sourceTree = SOURCE_ROOT; };
		E4B6FCAD0C3E899E008CF71C /* openFrameworks-Info.plist */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.plist.xml; path = "openFrameworks-Info.plist"; sourceTree = "<group>"; };
		E4C2424410CC5A17004149E2 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; };
		E4C2424510CC5A17004149E2 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = "<absolute>"; };
		E4C2424610CC5A17004149E2 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = /System/Library/Frameworks/IOKit.framework; sourceTree = "<absolute>"; };
		E4EB691F138AFCF100A09F29 /* CoreOF.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = CoreOF.xcconfig; path = ../../../../../Developer/Library/openFrameworks/libs/openFrameworksCompiled/project/osx/CoreOF.xcconfig; sourceTree = SOURCE_ROOT; };
		E4EB6923138AFD0F00A09F29 /* Project.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Project.xcconfig; sourceTree = "<group>"; };
		E7E077E415D3B63C0020DFD4 /* CoreVideo.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreVideo.framework; path = /System/Library/Frameworks/CoreVideo.framework; sourceTree = "<absolute>"; };
		E7E077E715D3B6510020DFD4 /* QTKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QTKit.framework; path = /System/Library/Frameworks/QTKit.framework; sourceTree = "<absolute>"; };
		E7F985F515E0DE99003869B5 /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = /System/Library/Frameworks/Accelerate.framework; sourceTree = "<absolute>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		E4B69B590A3A1756003C02F2 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				E7F985F815E0DEA3003869B5 /* Accelerate.framework in Frameworks */,
				E7E077E815D3B6510020DFD4 /* QTKit.framework in Frameworks */,
				E4EB6799138ADC1D00A09F29 /* GLUT.framework in Frameworks */,
				E4328149138ABC9F0047C5CB /* openFrameworksDebug.a in Frameworks */,
				E45BE97B0E8CC7DD009D7055 /* AGL.framework in Frameworks */,
				E45BE97C0E8CC7DD009D7055 /* ApplicationServices.framework in Frameworks */,
				E45BE97D0E8CC7DD009D7055 /* AudioToolbox.framework in Frameworks */,
				E45BE97E0E8CC7DD009D7055 /* Carbon.framework in Frameworks */,
				E45BE97F0E8CC7DD009D7055 /* CoreAudio.framework in Frameworks */,
				E45BE9800E8CC7DD009D7055 /* CoreFoundation.framework in Frameworks */,
				E45BE9810E8CC7DD009D7055 /* CoreServices.framework in Frameworks */,
				E45BE9830E8CC7DD009D7055 /* OpenGL.framework in Frameworks */,
				E45BE9840E8CC7DD009D7055 /* QuickTime.framework in Frameworks */,
				E4C2424710CC5A17004149E2 /* AppKit.framework in Frameworks */,
				E4C2424810CC5A17004149E2 /* Cocoa.framework in Frameworks */,
				E4C2424910CC5A17004149E2 /* IOKit.framework in Frameworks */,
				E7E077E515D3B63C0020DFD4 /* CoreVideo.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		22A02DFD166A2B4B00085452 /* src */ = {
			isa = PBXGroup;
			children = (
				22A02DFB166A2B4B00085452 /* ofxAssets.cpp */,
				22A02DFC166A2B4B00085452 /* ofxAssets.h */,
			);
			name = src;
			sourceTree = "<group>";
		};
		22A02DFE166A2B4B00085452 /* ofxAssets */ = {
			isa = PBXGroup;
			children = (
				22A02DFD166A2B4B00085452 /* src */,
			);
			name = ofxAssets;
			sourceTree = "<group>";
		};
		22A02E0B166A2B4B00085452 /* src */ = {
			isa = PBXGroup;
			children = (
				22A02DFF166A2B4B00085452 /* ofxDisplay.cpp */,
				22A02E00166A2B4B00085452 /* ofxDisplay.h */,
				22A02E01166A2B4B00085452 /* ofxDisplayMac.h */,
				22A02E02166A2B4B00085452 /* ofxDisplayManager.cpp */,
				22A02E03166A2B4B00085452 /* ofxDisplayManager.h */,
				22A02E04166A2B4B00085452 /* ofxDisplayManagerMac.mm */,
				22A02E05166A2B4B00085452 /* ofxFenster.cpp */,
				22A02E06166A2B4B00085452 /* ofxFenster.h */,
				22A02E07166A2B4B00085452 /* ofxFensterCanvas.cpp */,
				22A02E08166A2B4B00085452 /* ofxFensterCanvas.h */,
				22A02E09166A2B4B00085452 /* ofxFensterManager.cpp */,
				22A02E0A166A2B4B00085452 /* ofxFensterManager.h */,
			);
			name = src;
			sourceTree = "<group>";
		};
		22A02E10166A2B4B00085452 /* Cocoa */ = {
			isa = PBXGroup;
			children = (
				22A02E0C166A2B4B00085452 /* GHOST_DisplayManagerCocoa.h */,
				22A02E0D166A2B4B00085452 /* GHOST_SystemCocoa.h */,
				22A02E0E166A2B4B00085452 /* GHOST_SystemPathsCocoa.h */,
				22A02E0F166A2B4B00085452 /* GHOST_WindowCocoa.h */,
			);
			name = Cocoa;
			sourceTree = "<group>";
		};
		22A02E3C166A2B4B00085452 /* WIN32 */ = {
			isa = PBXGroup;
			children = (
				22A02E34166A2B4B00085452 /* GHOST_DisplayManagerWin32.h */,
				22A02E35166A2B4B00085452 /* GHOST_DropTargetWin32.h */,
				22A02E36166A2B4B00085452 /* GHOST_SystemPathsWin32.h */,
				22A02E37166A2B4B00085452 /* GHOST_SystemWin32.h */,
				22A02E38166A2B4B00085452 /* GHOST_TaskbarWin32.h */,
				22A02E39166A2B4B00085452 /* GHOST_WindowWin32.h */,
				22A02E3A166A2B4B00085452 /* pktdef.h */,
				22A02E3B166A2B4B00085452 /* wintab.h */,
			);
			name = WIN32;
			sourceTree = "<group>";
		};
		22A02E41166A2B4B00085452 /* X11 */ = {
			isa = PBXGroup;
			children = (
				22A02E3D166A2B4B00085452 /* GHOST_DisplayManagerX11.h */,
				22A02E3E166A2B4B00085452 /* GHOST_SystemPathsX11.h */,
				22A02E3F166A2B4B00085452 /* GHOST_SystemX11.h */,
				22A02E40166A2B4B00085452 /* GHOST_WindowX11.h */,
			);
			name = X11;
			sourceTree = "<group>";
		};
		22A02E42166A2B4B00085452 /* include */ = {
			isa = PBXGroup;
			children = (
				22A02E10166A2B4B00085452 /* Cocoa */,
				22A02E11166A2B4B00085452 /* GHOST_Buttons.h */,
				22A02E12166A2B4B00085452 /* GHOST_C-api.h */,
				22A02E13166A2B4B00085452 /* GHOST_CallbackEventConsumer.h */,
				22A02E14166A2B4B00085452 /* GHOST_Debug.h */,
				22A02E15166A2B4B00085452 /* GHOST_DisplayManager.h */,
				22A02E16166A2B4B00085452 /* GHOST_DisplayManagerNULL.h */,
				22A02E17166A2B4B00085452 /* GHOST_Event.h */,
				22A02E18166A2B4B00085452 /* GHOST_EventButton.h */,
				22A02E19166A2B4B00085452 /* GHOST_EventCursor.h */,
				22A02E1A166A2B4B00085452 /* GHOST_EventDragnDrop.h */,
				22A02E1B166A2B4B00085452 /* GHOST_EventKey.h */,
				22A02E1C166A2B4B00085452 /* GHOST_EventManager.h */,
				22A02E1D166A2B4B00085452 /* GHOST_EventNDOF.h */,
				22A02E1E166A2B4B00085452 /* GHOST_EventPrinter.h */,
				22A02E1F166A2B4B00085452 /* GHOST_EventString.h */,
				22A02E20166A2B4B00085452 /* GHOST_EventTrackpad.h */,
				22A02E21166A2B4B00085452 /* GHOST_EventWheel.h */,
				22A02E22166A2B4B00085452 /* GHOST_IEvent.h */,
				22A02E23166A2B4B00085452 /* GHOST_IEventConsumer.h */,
				22A02E24166A2B4B00085452 /* GHOST_ISystem.h */,
				22A02E25166A2B4B00085452 /* GHOST_ISystemPaths.h */,
				22A02E26166A2B4B00085452 /* GHOST_ITimerTask.h */,
				22A02E27166A2B4B00085452 /* GHOST_IWindow.h */,
				22A02E28166A2B4B00085452 /* GHOST_ModifierKeys.h */,
				22A02E29166A2B4B00085452 /* GHOST_Path-api.h */,
				22A02E2A166A2B4B00085452 /* GHOST_Rect.h */,
				22A02E2B166A2B4B00085452 /* GHOST_System.h */,
				22A02E2C166A2B4B00085452 /* GHOST_SystemNULL.h */,
				22A02E2D166A2B4B00085452 /* GHOST_SystemPaths.h */,
				22A02E2E166A2B4B00085452 /* GHOST_TimerManager.h */,
				22A02E2F166A2B4B00085452 /* GHOST_TimerTask.h */,
				22A02E30166A2B4B00085452 /* GHOST_Types.h */,
				22A02E31166A2B4B00085452 /* GHOST_Window.h */,
				22A02E32166A2B4B00085452 /* GHOST_WindowManager.h */,
				22A02E33166A2B4B00085452 /* GHOST_WindowNULL.h */,
				22A02E3C166A2B4B00085452 /* WIN32 */,
				22A02E41166A2B4B00085452 /* X11 */,
			);
			name = include;
			sourceTree = "<group>";
		};
		22A02E43166A2B4B00085452 /* ghost */ = {
			isa = PBXGroup;
			children = (
				22A02E42166A2B4B00085452 /* include */,
			);
			name = ghost;
			sourceTree = "<group>";
		};
		22A02E45166A2B4B00085452 /* include */ = {
			isa = PBXGroup;
			children = (
				22A02E44166A2B4B00085452 /* STR_String.h */,
			);
			name = include;
			sourceTree = "<group>";
		};
		22A02E46166A2B4B00085452 /* string */ = {
			isa = PBXGroup;
			children = (
				22A02E45166A2B4B00085452 /* include */,
			);
			name = string;
			sourceTree = "<group>";
		};
		22A02E47166A2B4B00085452 /* libs */ = {
			isa = PBXGroup;
			children = (
				22A02E43166A2B4B00085452 /* ghost */,
				22A02E46166A2B4B00085452 /* string */,
			);
			name = libs;
			sourceTree = "<group>";
		};
		22A02E48166A2B4B00085452 /* ofxFenster */ = {
			isa = PBXGroup;
			children = (
				22A02E0B166A2B4B00085452 /* src */,
				22A02E47166A2B4B00085452 /* libs */,
			);
			name = ofxFenster;
			sourceTree = "<group>";
		};
		22A02E58166A2B4B00085452 /* src */ = {
			isa = PBXGroup;
			children = (
				22A02E49166A2B4B00085452 /* ofOscParameter.h */,
				22A02E4A166A2B4B00085452 /* ofParameter.h */,
				22A02E4B166A2B4B00085452 /* ofxBaseGui.cpp */,
				22A02E4C166A2B4B00085452 /* ofxBaseGui.h */,
				22A02E4D166A2B4B00085452 /* ofxButton.cpp */,
				22A02E4E166A2B4B00085452 /* ofxButton.h */,
				22A02E4F166A2B4B00085452 /* ofxGui.h */,
				22A02E50166A2B4B00085452 /* ofxLabel.cpp */,
				22A02E51166A2B4B00085452 /* ofxLabel.h */,
				22A02E52166A2B4B00085452 /* ofxPanel.cpp */,
				22A02E53166A2B4B00085452 /* ofxPanel.h */,
				22A02E54166A2B4B00085452 /* ofxSlider.cpp */,
				22A02E55166A2B4B00085452 /* ofxSlider.h */,
				22A02E56166A2B4B00085452 /* ofxToggle.cpp */,
				22A02E57166A2B4B00085452 /* ofxToggle.h */,
			);
			name = src;
			sourceTree = "<group>";
		};
		22A02E59166A2B4B00085452 /* ofxGui */ = {
			isa = PBXGroup;
			children = (
				22A02E58166A2B4B00085452 /* src */,
			);
			name = ofxGui;
			sourceTree = "<group>";
		};
		22A02E64166A2B4B00085452 /* src */ = {
			isa = PBXGroup;
			children = (
				22A02E5A166A2B4B00085452 /* ofxNetwork.h */,
				22A02E5B166A2B4B00085452 /* ofxNetworkUtils.h */,
				22A02E5C166A2B4B00085452 /* ofxTCPClient.cpp */,
				22A02E5D166A2B4B00085452 /* ofxTCPClient.h */,
				22A02E5E166A2B4B00085452 /* ofxTCPManager.cpp */,
				22A02E5F166A2B4B00085452 /* ofxTCPManager.h */,
				22A02E60166A2B4B00085452 /* ofxTCPServer.cpp */,
				22A02E61166A2B4B00085452 /* ofxTCPServer.h */,
				22A02E62166A2B4B00085452 /* ofxUDPManager.cpp */,
				22A02E63166A2B4B00085452 /* ofxUDPManager.h */,
			);
			name = src;
			sourceTree = "<group>";
		};
		22A02E65166A2B4B00085452 /* ofxNetwork */ = {
			isa = PBXGroup;
			children = (
				22A02E64166A2B4B00085452 /* src */,
			);
			name = ofxNetwork;
			sourceTree = "<group>";
		};
		22A02E6A166A2B4B00085452 /* src */ = {
			isa = PBXGroup;
			children = (
				22A02E66166A2B4B00085452 /* ofxSprite.cpp */,
				22A02E67166A2B4B00085452 /* ofxSprite.h */,
				22A02E68166A2B4B00085452 /* ofxSpriteManager.cpp */,
				22A02E69166A2B4B00085452 /* ofxSpriteManager.h */,
			);
			name = src;
			sourceTree = "<group>";
		};
		22A02E6B166A2B4B00085452 /* ofxSpriteManager */ = {
			isa = PBXGroup;
			children = (
				22A02E6A166A2B4B00085452 /* src */,
			);
			name = ofxSpriteManager;
			sourceTree = "<group>";
		};
		22A02E6E166A2B4B00085452 /* src */ = {
			isa = PBXGroup;
			children = (
				22A02E6C166A2B4B00085452 /* ofxXmlSettings.cpp */,
				22A02E6D166A2B4B00085452 /* ofxXmlSettings.h */,
			);
			name = src;
			sourceTree = "<group>";
		};
		22A02E73166A2B4B00085452 /* libs */ = {
			isa = PBXGroup;
			children = (
				22A02E6F166A2B4B00085452 /* tinyxml.cpp */,
				22A02E70166A2B4B00085452 /* tinyxml.h */,
				22A02E71166A2B4B00085452 /* tinyxmlerror.cpp */,
				22A02E72166A2B4B00085452 /* tinyxmlparser.cpp */,
			);
			name = libs;
			sourceTree = "<group>";
		};
		22A02E74166A2B4B00085452 /* ofxXmlSettings */ = {
			isa = PBXGroup;
			children = (
				22A02E6E166A2B4B00085452 /* src */,
				22A02E73166A2B4B00085452 /* libs */,
			);
			name = ofxXmlSettings;
			sourceTree = "<group>";
		};
		BB4B014C10F69532006C3DED /* addons */ = {
			isa = PBXGroup;
			children = (
				22A02DFE166A2B4B00085452 /* ofxAssets */,
				22A02E48166A2B4B00085452 /* ofxFenster */,
				22A02E59166A2B4B00085452 /* ofxGui */,
				22A02E65166A2B4B00085452 /* ofxNetwork */,
				22A02E6B166A2B4B00085452 /* ofxSpriteManager */,
				22A02E74166A2B4B00085452 /* ofxXmlSettings */,
			);
			name = addons;
			sourceTree = "<group>";
		};
		BBAB23C913894ECA00AA2426 /* system frameworks */ = {
			isa = PBXGroup;
			children = (
				E7F985F515E0DE99003869B5 /* Accelerate.framework */,
				E4C2424410CC5A17004149E2 /* AppKit.framework */,
				E4C2424510CC5A17004149E2 /* Cocoa.framework */,
				E4C2424610CC5A17004149E2 /* IOKit.framework */,
				E45BE9710E8CC7DD009D7055 /* AGL.framework */,
				E45BE9720E8CC7DD009D7055 /* ApplicationServices.framework */,
				E45BE9730E8CC7DD009D7055 /* AudioToolbox.framework */,
				E45BE9740E8CC7DD009D7055 /* Carbon.framework */,
				E45BE9750E8CC7DD009D7055 /* CoreAudio.framework */,
				E45BE9760E8CC7DD009D7055 /* CoreFoundation.framework */,
				E45BE9770E8CC7DD009D7055 /* CoreServices.framework */,
				E45BE9790E8CC7DD009D7055 /* OpenGL.framework */,
				E45BE97A0E8CC7DD009D7055 /* QuickTime.framework */,
				E7E077E415D3B63C0020DFD4 /* CoreVideo.framework */,
				E7E077E715D3B6510020DFD4 /* QTKit.framework */,
			);
			name = "system frameworks";
			sourceTree = "<group>";
		};
		BBAB23CA13894EDB00AA2426 /* 3rd party frameworks */ = {
			isa = PBXGroup;
			children = (
				BBAB23BE13894E4700AA2426 /* GLUT.framework */,
			);
			name = "3rd party frameworks";
			sourceTree = "<group>";
		};
		E4328144138ABC890047C5CB /* Products */ = {
			isa = PBXGroup;
			children = (
				E4328148138ABC890047C5CB /* openFrameworksDebug.a */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		E45BE5980E8CC70C009D7055 /* frameworks */ = {
			isa = PBXGroup;
			children = (
				BBAB23CA13894EDB00AA2426 /* 3rd party frameworks */,
				BBAB23C913894ECA00AA2426 /* system frameworks */,
			);
			name = frameworks;
			sourceTree = "<group>";
		};
		E4B69B4A0A3A1720003C02F2 = {
			isa = PBXGroup;
			children = (
				E4B6FCAD0C3E899E008CF71C /* openFrameworks-Info.plist */,
				E4EB6923138AFD0F00A09F29 /* Project.xcconfig */,
				E4B69E1C0A3A1BDC003C02F2 /* src */,
				E4EEC9E9138DF44700A80321 /* openFrameworks */,
				BB4B014C10F69532006C3DED /* addons */,
				E45BE5980E8CC70C009D7055 /* frameworks */,
				E4B69B5B0A3A1756003C02F2 /* vfgDebug.app */,
			);
			sourceTree = "<group>";
		};
		E4B69E1C0A3A1BDC003C02F2 /* src */ = {
			isa = PBXGroup;
			children = (
				E4B69E1D0A3A1BDC003C02F2 /* main.cpp */,
				E4B69E1E0A3A1BDC003C02F2 /* testApp.cpp */,
				E4B69E1F0A3A1BDC003C02F2 /* testApp.h */,
				22A02DF1166A2B4B00085452 /* Animal.cpp */,
				22A02DF2166A2B4B00085452 /* Animal.h */,
				22A02DF3166A2B4B00085452 /* Asterisk.cpp */,
				22A02DF4166A2B4B00085452 /* Asterisk.h */,
				22A02DF5166A2B4B00085452 /* music.cpp */,
				22A02DF6166A2B4B00085452 /* music.h */,
				22A02DF7166A2B4B00085452 /* Puppet.cpp */,
				22A02DF8166A2B4B00085452 /* Puppet.h */,
				22A02DF9166A2B4B00085452 /* Tag.cpp */,
				22A02DFA166A2B4B00085452 /* Tag.h */,
			);
			path = src;
			sourceTree = SOURCE_ROOT;
		};
		E4EEC9E9138DF44700A80321 /* openFrameworks */ = {
			isa = PBXGroup;
			children = (
				E4EB691F138AFCF100A09F29 /* CoreOF.xcconfig */,
				E4328143138ABC890047C5CB /* openFrameworksLib.xcodeproj */,
			);
			name = openFrameworks;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
		E4B69B5A0A3A1756003C02F2 /* vfg */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = E4B69B5F0A3A1757003C02F2 /* Build configuration list for PBXNativeTarget "vfg" */;
			buildPhases = (
				E4B69B580A3A1756003C02F2 /* Sources */,
				E4B69B590A3A1756003C02F2 /* Frameworks */,
				E4B6FFFD0C3F9AB9008CF71C /* ShellScript */,
				E4C2427710CC5ABF004149E2 /* CopyFiles */,
			);
			buildRules = (
			);
			dependencies = (
				E4EEB9AC138B136A00A80321 /* PBXTargetDependency */,
			);
			name = vfg;
			productName = myOFApp;
			productReference = E4B69B5B0A3A1756003C02F2 /* vfgDebug.app */;
			productType = "com.apple.product-type.application";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		E4B69B4C0A3A1720003C02F2 /* Project object */ = {
			isa = PBXProject;
			buildConfigurationList = E4B69B4D0A3A1720003C02F2 /* Build configuration list for PBXProject "vfg" */;
			compatibilityVersion = "Xcode 2.4";
			developmentRegion = English;
			hasScannedForEncodings = 0;
			knownRegions = (
				English,
				Japanese,
				French,
				German,
			);
			mainGroup = E4B69B4A0A3A1720003C02F2;
			productRefGroup = E4B69B4A0A3A1720003C02F2;
			projectDirPath = "";
			projectReferences = (
				{
					ProductGroup = E4328144138ABC890047C5CB /* Products */;
					ProjectRef = E4328143138ABC890047C5CB /* openFrameworksLib.xcodeproj */;
				},
			);
			projectRoot = "";
			targets = (
				E4B69B5A0A3A1756003C02F2 /* vfg */,
			);
		};
/* End PBXProject section */

/* Begin PBXReferenceProxy section */
		E4328148138ABC890047C5CB /* openFrameworksDebug.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = openFrameworksDebug.a;
			remoteRef = E4328147138ABC890047C5CB /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
/* End PBXReferenceProxy section */

/* Begin PBXShellScriptBuildPhase section */
		E4B6FFFD0C3F9AB9008CF71C /* ShellScript */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "cp -f ../../../../../Developer/Library/openFrameworks/libs/fmodex/lib/osx/libfmodex.dylib \"$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/MacOS/libfmodex.dylib\"; install_name_tool -change ./libfmodex.dylib @executable_path/libfmodex.dylib \"$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/MacOS/$PRODUCT_NAME\";";
		};
/* End PBXShellScriptBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		E4B69B580A3A1756003C02F2 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				E4B69E200A3A1BDC003C02F2 /* main.cpp in Sources */,
				E4B69E210A3A1BDC003C02F2 /* testApp.cpp in Sources */,
				22A02E7C166A2B4B00085452 /* Animal.cpp in Sources */,
				22A02E7D166A2B4B00085452 /* Asterisk.cpp in Sources */,
				22A02E7E166A2B4B00085452 /* music.cpp in Sources */,
				22A02E7F166A2B4B00085452 /* Puppet.cpp in Sources */,
				22A02E80166A2B4B00085452 /* Tag.cpp in Sources */,
				22A02E81166A2B4B00085452 /* ofxAssets.cpp in Sources */,
				22A02E82166A2B4B00085452 /* ofxDisplay.cpp in Sources */,
				22A02E83166A2B4B00085452 /* ofxDisplayManager.cpp in Sources */,
				22A02E84166A2B4B00085452 /* ofxDisplayManagerMac.mm in Sources */,
				22A02E85166A2B4B00085452 /* ofxFenster.cpp in Sources */,
				22A02E86166A2B4B00085452 /* ofxFensterCanvas.cpp in Sources */,
				22A02E87166A2B4B00085452 /* ofxFensterManager.cpp in Sources */,
				22A02E88166A2B4B00085452 /* ofxBaseGui.cpp in Sources */,
				22A02E89166A2B4B00085452 /* ofxButton.cpp in Sources */,
				22A02E8A166A2B4B00085452 /* ofxLabel.cpp in Sources */,
				22A02E8B166A2B4B00085452 /* ofxPanel.cpp in Sources */,
				22A02E8C166A2B4B00085452 /* ofxSlider.cpp in Sources */,
				22A02E8D166A2B4B00085452 /* ofxToggle.cpp in Sources */,
				22A02E8E166A2B4B00085452 /* ofxTCPClient.cpp in Sources */,
				22A02E8F166A2B4B00085452 /* ofxTCPManager.cpp in Sources */,
				22A02E90166A2B4B00085452 /* ofxTCPServer.cpp in Sources */,
				22A02E91166A2B4B00085452 /* ofxUDPManager.cpp in Sources */,
				22A02E92166A2B4B00085452 /* ofxSprite.cpp in Sources */,
				22A02E93166A2B4B00085452 /* ofxSpriteManager.cpp in Sources */,
				22A02E94166A2B4B00085452 /* ofxXmlSettings.cpp in Sources */,
				22A02E95166A2B4B00085452 /* tinyxml.cpp in Sources */,
				22A02E96166A2B4B00085452 /* tinyxmlerror.cpp in Sources */,
				22A02E97166A2B4B00085452 /* tinyxmlparser.cpp in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXTargetDependency section */
		E4EEB9AC138B136A00A80321 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = openFrameworks;
			targetProxy = E4EEB9AB138B136A00A80321 /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin XCBuildConfiguration section */
		E4B69B4E0A3A1720003C02F2 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = E4EB6923138AFD0F00A09F29 /* Project.xcconfig */;
			buildSettings = {
				ARCHS = "$(NATIVE_ARCH)";
				CONFIGURATION_BUILD_DIR = "$(SRCROOT)/bin/";
				COPY_PHASE_STRIP = NO;
				DEAD_CODE_STRIPPING = YES;
				GCC_AUTO_VECTORIZATION = YES;
				GCC_ENABLE_SSE3_EXTENSIONS = YES;
				GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS = YES;
				GCC_INLINES_ARE_PRIVATE_EXTERN = NO;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_SYMBOLS_PRIVATE_EXTERN = NO;
				GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = YES;
				GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO = NO;
				GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL = NO;
				GCC_WARN_UNINITIALIZED_AUTOS = NO;
				GCC_WARN_UNUSED_VALUE = NO;
				GCC_WARN_UNUSED_VARIABLE = NO;
				HEADER_SEARCH_PATHS = (
					"$(OF_CORE_HEADERS)",
					src,
					../../../../../Developer/Library/openFrameworks/addons/ofxAssets/libs,
					../../../../../Developer/Library/openFrameworks/addons/ofxAssets/src,
					../../../../../Developer/Library/openFrameworks/addons/ofxExtras/libs,
					../../../../../Developer/Library/openFrameworks/addons/ofxExtras/src,
					../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs,
					../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost,
					../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include,
					../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/Cocoa,
					../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/WIN32,
					../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/X11,
					../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/lib,
					../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/lib/osx32,
					../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/lib/osx64,
					../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/lib/win_vs,
					../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/string,
					../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/string/include,
					../../../../../Developer/Library/openFrameworks/addons/ofxFenster/src,
					../../../../../Developer/Library/openFrameworks/addons/ofxGui/libs,
					../../../../../Developer/Library/openFrameworks/addons/ofxGui/src,
					../../../../../Developer/Library/openFrameworks/addons/ofxNetwork/libs,
					../../../../../Developer/Library/openFrameworks/addons/ofxNetwork/src,
					../../../../../Developer/Library/openFrameworks/addons/ofxSpriteManager/libs,
					../../../../../Developer/Library/openFrameworks/addons/ofxSpriteManager/src,
					"../../../../../Developer/Library/openFrameworks/addons/ofxExtras/**",
					../../../../../Developer/Library/openFrameworks/addons/ofxXmlSettings/libs,
					../../../../../Developer/Library/openFrameworks/addons/ofxXmlSettings/src,
				);
				OTHER_CPLUSPLUSFLAGS = (
					"-D__MACOSX_CORE__",
					"-lpthread",
					"-mtune=native",
				);
				OTHER_LDFLAGS = (
					"$(OF_CORE_LIBS)",
					/Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/lib/osx32/libGhost32.a,
				);
			};
			name = Debug;
		};
		E4B69B4F0A3A1720003C02F2 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = E4EB6923138AFD0F00A09F29 /* Project.xcconfig */;
			buildSettings = {
				ARCHS = "$(NATIVE_ARCH)";
				CONFIGURATION_BUILD_DIR = "$(SRCROOT)/bin/";
				COPY_PHASE_STRIP = YES;
				DEAD_CODE_STRIPPING = YES;
				GCC_AUTO_VECTORIZATION = YES;
				GCC_ENABLE_SSE3_EXTENSIONS = YES;
				GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS = YES;
				GCC_INLINES_ARE_PRIVATE_EXTERN = NO;
				GCC_OPTIMIZATION_LEVEL = 3;
				GCC_SYMBOLS_PRIVATE_EXTERN = NO;
				GCC_UNROLL_LOOPS = YES;
				GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = YES;
				GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO = NO;
				GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL = NO;
				GCC_WARN_UNINITIALIZED_AUTOS = NO;
				GCC_WARN_UNUSED_VALUE = NO;
				GCC_WARN_UNUSED_VARIABLE = NO;
				HEADER_SEARCH_PATHS = (
					"$(OF_CORE_HEADERS)",
					src,
					../../../../../Developer/Library/openFrameworks/addons/ofxAssets/libs,
					../../../../../Developer/Library/openFrameworks/addons/ofxAssets/src,
					../../../../../Developer/Library/openFrameworks/addons/ofxExtras/libs,
					../../../../../Developer/Library/openFrameworks/addons/ofxExtras/src,
					../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs,
					../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost,
					../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include,
					../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/Cocoa,
					../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/WIN32,
					../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/include/X11,
					../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/lib,
					../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/lib/osx32,
					../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/lib/osx64,
					../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/lib/win_vs,
					../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/string,
					../../../../../Developer/Library/openFrameworks/addons/ofxFenster/libs/string/include,
					../../../../../Developer/Library/openFrameworks/addons/ofxFenster/src,
					../../../../../Developer/Library/openFrameworks/addons/ofxGui/libs,
					../../../../../Developer/Library/openFrameworks/addons/ofxGui/src,
					../../../../../Developer/Library/openFrameworks/addons/ofxNetwork/libs,
					../../../../../Developer/Library/openFrameworks/addons/ofxNetwork/src,
					../../../../../Developer/Library/openFrameworks/addons/ofxSpriteManager/libs,
					../../../../../Developer/Library/openFrameworks/addons/ofxSpriteManager/src,
					"../../../../../Developer/Library/openFrameworks/addons/ofxExtras/**",
					../../../../../Developer/Library/openFrameworks/addons/ofxXmlSettings/libs,
					../../../../../Developer/Library/openFrameworks/addons/ofxXmlSettings/src,
				);
				OTHER_CPLUSPLUSFLAGS = (
					"-D__MACOSX_CORE__",
					"-lpthread",
					"-mtune=native",
				);
				OTHER_LDFLAGS = (
					"$(OF_CORE_LIBS)",
					/Developer/Library/openFrameworks/addons/ofxFenster/libs/ghost/lib/osx32/libGhost32.a,
				);
			};
			name = Release;
		};
		E4B69B600A3A1757003C02F2 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COPY_PHASE_STRIP = NO;
				FRAMEWORK_SEARCH_PATHS = (
					"$(inherited)",
					"$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)",
				);
				FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)/../../../../../Developer/Library/openFrameworks/libs/glut/lib/osx\"";
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_ENABLE_FIX_AND_CONTINUE = YES;
				GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
				GCC_MODEL_TUNING = NONE;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "$(SYSTEM_LIBRARY_DIR)/Frameworks/Carbon.framework/Headers/Carbon.h";
				INFOPLIST_FILE = "openFrameworks-Info.plist";
				INSTALL_PATH = "$(HOME)/Applications";
				LIBRARY_SEARCH_PATHS = (
					"$(inherited)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_1)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_2)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_3)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_4)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_5)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_6)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_7)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_8)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_9)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_10)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_11)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_12)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_13)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_14)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_15)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_2)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_3)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_7)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_8)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_9)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_10)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_11)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_12)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_13)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_16)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_17)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_18)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_19)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_20)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_21)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_22)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_23)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_24)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_25)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_26)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_27)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_28)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_29)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_30)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_31)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_32)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_33)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_34)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_35)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_36)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_37)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_38)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_39)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_40)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_41)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_42)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_43)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_44)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_45)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_46)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_47)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_48)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_49)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_50)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_51)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_52)",
				);
				PREBINDING = NO;
				PRODUCT_NAME = "$(TARGET_NAME)Debug";
				WRAPPER_EXTENSION = app;
			};
			name = Debug;
		};
		E4B69B610A3A1757003C02F2 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COPY_PHASE_STRIP = YES;
				FRAMEWORK_SEARCH_PATHS = (
					"$(inherited)",
					"$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)",
				);
				FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)/../../../../../Developer/Library/openFrameworks/libs/glut/lib/osx\"";
				GCC_ENABLE_FIX_AND_CONTINUE = NO;
				GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
				GCC_MODEL_TUNING = NONE;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "$(SYSTEM_LIBRARY_DIR)/Frameworks/Carbon.framework/Headers/Carbon.h";
				INFOPLIST_FILE = "openFrameworks-Info.plist";
				INSTALL_PATH = "$(HOME)/Applications";
				LIBRARY_SEARCH_PATHS = (
					"$(inherited)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_1)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_2)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_3)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_4)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_5)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_6)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_7)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_8)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_9)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_10)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_11)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_12)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_13)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_14)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_15)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_2)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_1)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_3)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_7)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_8)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_9)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_10)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_11)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_12)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_13)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_16)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_17)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_18)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_19)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_20)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_21)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_22)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_23)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_24)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_25)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_26)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_27)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_28)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_29)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_30)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_31)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_32)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_33)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_34)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_35)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_36)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_37)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_38)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_39)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_40)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_41)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_42)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_43)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_44)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_45)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_46)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_47)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_48)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_49)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_50)",
					"$(LIBRARY_SEARCH_PATHS_QUOTED_FOR_TARGET_51)",
				);
				PREBINDING = NO;
				PRODUCT_NAME = "$(TARGET_NAME)";
				WRAPPER_EXTENSION = app;
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		E4B69B4D0A3A1720003C02F2 /* Build configuration list for PBXProject "vfg" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				E4B69B4E0A3A1720003C02F2 /* Debug */,
				E4B69B4F0A3A1720003C02F2 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		E4B69B5F0A3A1757003C02F2 /* Build configuration list for PBXNativeTarget "vfg" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				E4B69B600A3A1757003C02F2 /* Debug */,
				E4B69B610A3A1757003C02F2 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = E4B69B4C0A3A1720003C02F2 /* Project object */;
}