summaryrefslogtreecommitdiff
path: root/fensterTextEditor.xcodeproj/project.pbxproj
blob: 8c79cc232b938aa5650aadc998147c06b904dbf6 (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
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 42;
	objects = {

/* Begin PBXBuildFile section */
		220D0F34168BA6DC00A7EB05 /* ofxDisplay.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 220D0EE3168BA6DB00A7EB05 /* ofxDisplay.cpp */; };
		220D0F35168BA6DC00A7EB05 /* ofxDisplayManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 220D0EE6168BA6DB00A7EB05 /* ofxDisplayManager.cpp */; };
		220D0F36168BA6DC00A7EB05 /* ofxDisplayManagerMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = 220D0EE8168BA6DB00A7EB05 /* ofxDisplayManagerMac.mm */; };
		220D0F37168BA6DC00A7EB05 /* ofxFenster.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 220D0EE9168BA6DB00A7EB05 /* ofxFenster.cpp */; };
		220D0F38168BA6DC00A7EB05 /* ofxFensterCanvas.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 220D0EEB168BA6DB00A7EB05 /* ofxFensterCanvas.cpp */; };
		220D0F39168BA6DC00A7EB05 /* ofxFensterManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 220D0EED168BA6DB00A7EB05 /* ofxFensterManager.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 */
		220D0EE3168BA6DB00A7EB05 /* 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; };
		220D0EE4168BA6DB00A7EB05 /* 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; };
		220D0EE5168BA6DB00A7EB05 /* 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; };
		220D0EE6168BA6DB00A7EB05 /* 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; };
		220D0EE7168BA6DB00A7EB05 /* 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; };
		220D0EE8168BA6DB00A7EB05 /* 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; };
		220D0EE9168BA6DB00A7EB05 /* 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; };
		220D0EEA168BA6DB00A7EB05 /* 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; };
		220D0EEB168BA6DB00A7EB05 /* 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; };
		220D0EEC168BA6DB00A7EB05 /* 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; };
		220D0EED168BA6DB00A7EB05 /* 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; };
		220D0EEE168BA6DB00A7EB05 /* 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; };
		220D0EF0168BA6DB00A7EB05 /* 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; };
		220D0EF1168BA6DB00A7EB05 /* 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; };
		220D0EF2168BA6DB00A7EB05 /* 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; };
		220D0EF3168BA6DB00A7EB05 /* 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; };
		220D0EF5168BA6DB00A7EB05 /* 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; };
		220D0EF6168BA6DB00A7EB05 /* 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; };
		220D0EF7168BA6DB00A7EB05 /* 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; };
		220D0EF8168BA6DB00A7EB05 /* 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; };
		220D0EF9168BA6DB00A7EB05 /* 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; };
		220D0EFA168BA6DB00A7EB05 /* 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; };
		220D0EFB168BA6DB00A7EB05 /* 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; };
		220D0EFC168BA6DB00A7EB05 /* 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; };
		220D0EFD168BA6DB00A7EB05 /* 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; };
		220D0EFE168BA6DB00A7EB05 /* 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; };
		220D0EFF168BA6DB00A7EB05 /* 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; };
		220D0F00168BA6DB00A7EB05 /* 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; };
		220D0F01168BA6DB00A7EB05 /* 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; };
		220D0F02168BA6DB00A7EB05 /* 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; };
		220D0F03168BA6DB00A7EB05 /* 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; };
		220D0F04168BA6DB00A7EB05 /* 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; };
		220D0F05168BA6DB00A7EB05 /* 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; };
		220D0F06168BA6DB00A7EB05 /* 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; };
		220D0F07168BA6DB00A7EB05 /* 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; };
		220D0F08168BA6DB00A7EB05 /* 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; };
		220D0F09168BA6DB00A7EB05 /* 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; };
		220D0F0A168BA6DB00A7EB05 /* 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; };
		220D0F0B168BA6DB00A7EB05 /* 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; };
		220D0F0C168BA6DB00A7EB05 /* 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; };
		220D0F0D168BA6DB00A7EB05 /* 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; };
		220D0F0E168BA6DB00A7EB05 /* 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; };
		220D0F0F168BA6DB00A7EB05 /* 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; };
		220D0F10168BA6DB00A7EB05 /* 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; };
		220D0F11168BA6DB00A7EB05 /* 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; };
		220D0F12168BA6DB00A7EB05 /* 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; };
		220D0F13168BA6DB00A7EB05 /* 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; };
		220D0F14168BA6DB00A7EB05 /* 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; };
		220D0F15168BA6DB00A7EB05 /* 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; };
		220D0F16168BA6DB00A7EB05 /* 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; };
		220D0F17168BA6DB00A7EB05 /* 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; };
		220D0F18168BA6DB00A7EB05 /* 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; };
		220D0F19168BA6DB00A7EB05 /* 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; };
		220D0F1A168BA6DB00A7EB05 /* 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; };
		220D0F1B168BA6DB00A7EB05 /* 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; };
		220D0F1C168BA6DB00A7EB05 /* 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; };
		220D0F1D168BA6DB00A7EB05 /* 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; };
		220D0F1E168BA6DB00A7EB05 /* 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; };
		220D0F1F168BA6DB00A7EB05 /* 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; };
		220D0F21168BA6DB00A7EB05 /* 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; };
		220D0F22168BA6DB00A7EB05 /* 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; };
		220D0F23168BA6DB00A7EB05 /* 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; };
		220D0F24168BA6DB00A7EB05 /* 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; };
		220D0F28168BA6DB00A7EB05 /* 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; };
		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 /* fensterTextEditorDebug.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = fensterTextEditorDebug.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 */
		220D0EEF168BA6DB00A7EB05 /* src */ = {
			isa = PBXGroup;
			children = (
				220D0EE3168BA6DB00A7EB05 /* ofxDisplay.cpp */,
				220D0EE4168BA6DB00A7EB05 /* ofxDisplay.h */,
				220D0EE5168BA6DB00A7EB05 /* ofxDisplayMac.h */,
				220D0EE6168BA6DB00A7EB05 /* ofxDisplayManager.cpp */,
				220D0EE7168BA6DB00A7EB05 /* ofxDisplayManager.h */,
				220D0EE8168BA6DB00A7EB05 /* ofxDisplayManagerMac.mm */,
				220D0EE9168BA6DB00A7EB05 /* ofxFenster.cpp */,
				220D0EEA168BA6DB00A7EB05 /* ofxFenster.h */,
				220D0EEB168BA6DB00A7EB05 /* ofxFensterCanvas.cpp */,
				220D0EEC168BA6DB00A7EB05 /* ofxFensterCanvas.h */,
				220D0EED168BA6DB00A7EB05 /* ofxFensterManager.cpp */,
				220D0EEE168BA6DB00A7EB05 /* ofxFensterManager.h */,
			);
			name = src;
			sourceTree = "<group>";
		};
		220D0EF4168BA6DB00A7EB05 /* Cocoa */ = {
			isa = PBXGroup;
			children = (
				220D0EF0168BA6DB00A7EB05 /* GHOST_DisplayManagerCocoa.h */,
				220D0EF1168BA6DB00A7EB05 /* GHOST_SystemCocoa.h */,
				220D0EF2168BA6DB00A7EB05 /* GHOST_SystemPathsCocoa.h */,
				220D0EF3168BA6DB00A7EB05 /* GHOST_WindowCocoa.h */,
			);
			name = Cocoa;
			sourceTree = "<group>";
		};
		220D0F20168BA6DB00A7EB05 /* WIN32 */ = {
			isa = PBXGroup;
			children = (
				220D0F18168BA6DB00A7EB05 /* GHOST_DisplayManagerWin32.h */,
				220D0F19168BA6DB00A7EB05 /* GHOST_DropTargetWin32.h */,
				220D0F1A168BA6DB00A7EB05 /* GHOST_SystemPathsWin32.h */,
				220D0F1B168BA6DB00A7EB05 /* GHOST_SystemWin32.h */,
				220D0F1C168BA6DB00A7EB05 /* GHOST_TaskbarWin32.h */,
				220D0F1D168BA6DB00A7EB05 /* GHOST_WindowWin32.h */,
				220D0F1E168BA6DB00A7EB05 /* pktdef.h */,
				220D0F1F168BA6DB00A7EB05 /* wintab.h */,
			);
			name = WIN32;
			sourceTree = "<group>";
		};
		220D0F25168BA6DB00A7EB05 /* X11 */ = {
			isa = PBXGroup;
			children = (
				220D0F21168BA6DB00A7EB05 /* GHOST_DisplayManagerX11.h */,
				220D0F22168BA6DB00A7EB05 /* GHOST_SystemPathsX11.h */,
				220D0F23168BA6DB00A7EB05 /* GHOST_SystemX11.h */,
				220D0F24168BA6DB00A7EB05 /* GHOST_WindowX11.h */,
			);
			name = X11;
			sourceTree = "<group>";
		};
		220D0F26168BA6DB00A7EB05 /* include */ = {
			isa = PBXGroup;
			children = (
				220D0EF4168BA6DB00A7EB05 /* Cocoa */,
				220D0EF5168BA6DB00A7EB05 /* GHOST_Buttons.h */,
				220D0EF6168BA6DB00A7EB05 /* GHOST_C-api.h */,
				220D0EF7168BA6DB00A7EB05 /* GHOST_CallbackEventConsumer.h */,
				220D0EF8168BA6DB00A7EB05 /* GHOST_Debug.h */,
				220D0EF9168BA6DB00A7EB05 /* GHOST_DisplayManager.h */,
				220D0EFA168BA6DB00A7EB05 /* GHOST_DisplayManagerNULL.h */,
				220D0EFB168BA6DB00A7EB05 /* GHOST_Event.h */,
				220D0EFC168BA6DB00A7EB05 /* GHOST_EventButton.h */,
				220D0EFD168BA6DB00A7EB05 /* GHOST_EventCursor.h */,
				220D0EFE168BA6DB00A7EB05 /* GHOST_EventDragnDrop.h */,
				220D0EFF168BA6DB00A7EB05 /* GHOST_EventKey.h */,
				220D0F00168BA6DB00A7EB05 /* GHOST_EventManager.h */,
				220D0F01168BA6DB00A7EB05 /* GHOST_EventNDOF.h */,
				220D0F02168BA6DB00A7EB05 /* GHOST_EventPrinter.h */,
				220D0F03168BA6DB00A7EB05 /* GHOST_EventString.h */,
				220D0F04168BA6DB00A7EB05 /* GHOST_EventTrackpad.h */,
				220D0F05168BA6DB00A7EB05 /* GHOST_EventWheel.h */,
				220D0F06168BA6DB00A7EB05 /* GHOST_IEvent.h */,
				220D0F07168BA6DB00A7EB05 /* GHOST_IEventConsumer.h */,
				220D0F08168BA6DB00A7EB05 /* GHOST_ISystem.h */,
				220D0F09168BA6DB00A7EB05 /* GHOST_ISystemPaths.h */,
				220D0F0A168BA6DB00A7EB05 /* GHOST_ITimerTask.h */,
				220D0F0B168BA6DB00A7EB05 /* GHOST_IWindow.h */,
				220D0F0C168BA6DB00A7EB05 /* GHOST_ModifierKeys.h */,
				220D0F0D168BA6DB00A7EB05 /* GHOST_Path-api.h */,
				220D0F0E168BA6DB00A7EB05 /* GHOST_Rect.h */,
				220D0F0F168BA6DB00A7EB05 /* GHOST_System.h */,
				220D0F10168BA6DB00A7EB05 /* GHOST_SystemNULL.h */,
				220D0F11168BA6DB00A7EB05 /* GHOST_SystemPaths.h */,
				220D0F12168BA6DB00A7EB05 /* GHOST_TimerManager.h */,
				220D0F13168BA6DB00A7EB05 /* GHOST_TimerTask.h */,
				220D0F14168BA6DB00A7EB05 /* GHOST_Types.h */,
				220D0F15168BA6DB00A7EB05 /* GHOST_Window.h */,
				220D0F16168BA6DB00A7EB05 /* GHOST_WindowManager.h */,
				220D0F17168BA6DB00A7EB05 /* GHOST_WindowNULL.h */,
				220D0F20168BA6DB00A7EB05 /* WIN32 */,
				220D0F25168BA6DB00A7EB05 /* X11 */,
			);
			name = include;
			sourceTree = "<group>";
		};
		220D0F27168BA6DB00A7EB05 /* ghost */ = {
			isa = PBXGroup;
			children = (
				220D0F26168BA6DB00A7EB05 /* include */,
			);
			name = ghost;
			sourceTree = "<group>";
		};
		220D0F29168BA6DB00A7EB05 /* include */ = {
			isa = PBXGroup;
			children = (
				220D0F28168BA6DB00A7EB05 /* STR_String.h */,
			);
			name = include;
			sourceTree = "<group>";
		};
		220D0F2A168BA6DB00A7EB05 /* string */ = {
			isa = PBXGroup;
			children = (
				220D0F29168BA6DB00A7EB05 /* include */,
			);
			name = string;
			sourceTree = "<group>";
		};
		220D0F2B168BA6DB00A7EB05 /* libs */ = {
			isa = PBXGroup;
			children = (
				220D0F27168BA6DB00A7EB05 /* ghost */,
				220D0F2A168BA6DB00A7EB05 /* string */,
			);
			name = libs;
			sourceTree = "<group>";
		};
		220D0F2C168BA6DB00A7EB05 /* ofxFenster */ = {
			isa = PBXGroup;
			children = (
				220D0EEF168BA6DB00A7EB05 /* src */,
				220D0F2B168BA6DB00A7EB05 /* libs */,
			);
			name = ofxFenster;
			sourceTree = "<group>";
		};
		BB4B014C10F69532006C3DED /* addons */ = {
			isa = PBXGroup;
			children = (
				220D0F2C168BA6DB00A7EB05 /* ofxFenster */,
			);
			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 /* fensterTextEditorDebug.app */,
			);
			sourceTree = "<group>";
		};
		E4B69E1C0A3A1BDC003C02F2 /* src */ = {
			isa = PBXGroup;
			children = (
				E4B69E1D0A3A1BDC003C02F2 /* main.cpp */,
				E4B69E1E0A3A1BDC003C02F2 /* testApp.cpp */,
				E4B69E1F0A3A1BDC003C02F2 /* testApp.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 /* fensterTextEditor */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = E4B69B5F0A3A1757003C02F2 /* Build configuration list for PBXNativeTarget "fensterTextEditor" */;
			buildPhases = (
				E4B69B580A3A1756003C02F2 /* Sources */,
				E4B69B590A3A1756003C02F2 /* Frameworks */,
				E4B6FFFD0C3F9AB9008CF71C /* ShellScript */,
				E4C2427710CC5ABF004149E2 /* CopyFiles */,
			);
			buildRules = (
			);
			dependencies = (
				E4EEB9AC138B136A00A80321 /* PBXTargetDependency */,
			);
			name = fensterTextEditor;
			productName = myOFApp;
			productReference = E4B69B5B0A3A1756003C02F2 /* fensterTextEditorDebug.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 "fensterTextEditor" */;
			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 /* fensterTextEditor */,
			);
		};
/* 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 */,
				220D0F34168BA6DC00A7EB05 /* ofxDisplay.cpp in Sources */,
				220D0F35168BA6DC00A7EB05 /* ofxDisplayManager.cpp in Sources */,
				220D0F36168BA6DC00A7EB05 /* ofxDisplayManagerMac.mm in Sources */,
				220D0F37168BA6DC00A7EB05 /* ofxFenster.cpp in Sources */,
				220D0F38168BA6DC00A7EB05 /* ofxFensterCanvas.cpp in Sources */,
				220D0F39168BA6DC00A7EB05 /* ofxFensterManager.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/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,
				);
				OTHER_CPLUSPLUSFLAGS = (
					"-D__MACOSX_CORE__",
					"-lpthread",
					"-mtune=native",
				);
				OTHER_LDFLAGS = (
					"$(OF_PATH)/addons/ofxFenster/libs/ghost/lib/osx32/libGhost32.a",
					"$(OF_CORE_LIBS)",
				);
			};
			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/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,
				);
				OTHER_CPLUSPLUSFLAGS = (
					"-D__MACOSX_CORE__",
					"-lpthread",
					"-mtune=native",
				);
				OTHER_LDFLAGS = (
					"$(OF_PATH)/addons/ofxFenster/libs/ghost/lib/osx32/libGhost32.a",
					"$(OF_CORE_LIBS)",
				);
			};
			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 "fensterTextEditor" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				E4B69B4E0A3A1720003C02F2 /* Debug */,
				E4B69B4F0A3A1720003C02F2 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		E4B69B5F0A3A1757003C02F2 /* Build configuration list for PBXNativeTarget "fensterTextEditor" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				E4B69B600A3A1757003C02F2 /* Debug */,
				E4B69B610A3A1757003C02F2 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = E4B69B4C0A3A1720003C02F2 /* Project object */;
}