-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
3089 lines (3019 loc) · 199 KB
/
Makefile
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
#############################################################################
# Makefile for building: Prometheus.app/Contents/MacOS/Prometheus
# Generated by qmake (3.0) (Qt 5.0.0) on: Mon Mar 18 18:18:00 2013
# Project: ../Prometheus/Prometheus.pro
# Template: app
# Command: /Users/Bammtastic/Qt5.0.0/5.0.0/clang_64/bin/qmake -spec macx-g++ CONFIG+=debug CONFIG+=x86_64 CONFIG+=declarative_debug CONFIG+=qml_debug -o Makefile ../Prometheus/Prometheus.pro
#############################################################################
MAKEFILE = Makefile
####### Compiler, tools and options
CC = gcc
CXX = g++
DEFINES = -DQT_QML_DEBUG -DQT_DECLARATIVE_DEBUG -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB
CFLAGS = -pipe -mmacosx-version-min=10.6 -g -gdwarf-2 -Wall -W -fPIE $(DEFINES)
CXXFLAGS = -pipe -mmacosx-version-min=10.6 -g -gdwarf-2 -Wall -W -fPIE $(DEFINES)
INCPATH = -I../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/macx-g++ -I../Prometheus -I../../../../Qt5.0.0/5.0.0/clang_64/include -I../../../../Qt5.0.0/5.0.0/clang_64/include/QtOpenGL -I../../../../Qt5.0.0/5.0.0/clang_64/lib/QtOpenGL.framework/Versions/5/Headers -I../../../../Qt5.0.0/5.0.0/clang_64/include/QtWidgets -I../../../../Qt5.0.0/5.0.0/clang_64/lib/QtWidgets.framework/Versions/5/Headers -I../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui -I../../../../Qt5.0.0/5.0.0/clang_64/lib/QtGui.framework/Versions/5/Headers -I../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore -I../../../../Qt5.0.0/5.0.0/clang_64/lib/QtCore.framework/Versions/5/Headers -I. -I/System/Library/Frameworks/OpenGL.framework/Versions/A/Headers -I/System/Library/Frameworks/AGL.framework/Headers -I. -I.
LINK = g++
LFLAGS = -headerpad_max_install_names -mmacosx-version-min=10.6
LIBS = $(SUBLIBS) -F/Users/Bammtastic/Qt5.0.0/5.0.0/clang_64/lib -framework QtOpenGL -F/Users/Bammtastic/Qt5.0.0/5.0.0/clang_64/qtbase/lib -framework QtWidgets -framework QtGui -framework QtCore -framework OpenGL -framework AGL
AR = ar cq
RANLIB = ranlib -s
QMAKE = /Users/Bammtastic/Qt5.0.0/5.0.0/clang_64/bin/qmake
TAR = tar -cf
COMPRESS = gzip -9f
COPY = cp -f
SED = sed
COPY_FILE = cp -f
COPY_DIR = cp -f -R
STRIP =
INSTALL_FILE = $(COPY_FILE)
INSTALL_DIR = $(COPY_DIR)
INSTALL_PROGRAM = $(COPY_FILE)
DEL_FILE = rm -f
SYMLINK = ln -f -s
DEL_DIR = rmdir
MOVE = mv -f
CHK_DIR_EXISTS= test -d
MKDIR = mkdir -p
####### Output directory
OBJECTS_DIR = ./
####### Files
SOURCES = ../Prometheus/main.cpp \
../Prometheus/mainwindow.cpp \
../Prometheus/cpsviewer.cpp \
../Prometheus/pandora.cpp \
../Prometheus/atlas.cpp \
../Prometheus/atomtooldialog.cpp \
../Prometheus/hephaestus.cpp \
../Prometheus/apollo.cpp \
../Prometheus/prometheusstatus.cpp qrc_PrometheusResources.cpp \
moc_mainwindow.cpp \
moc_cpsviewer.cpp \
moc_pandora.cpp \
moc_atlas.cpp \
moc_atomtooldialog.cpp \
moc_hephaestus.cpp \
moc_apollo.cpp \
moc_prometheusstatus.cpp
OBJECTS = main.o \
mainwindow.o \
cpsviewer.o \
pandora.o \
atlas.o \
atomtooldialog.o \
hephaestus.o \
apollo.o \
prometheusstatus.o \
qrc_PrometheusResources.o \
moc_mainwindow.o \
moc_cpsviewer.o \
moc_pandora.o \
moc_atlas.o \
moc_atomtooldialog.o \
moc_hephaestus.o \
moc_apollo.o \
moc_prometheusstatus.o
DIST = ../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/spec_pre.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/qdevice.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/device_config.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/common/shell-unix.conf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/common/unix.conf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/common/mac.conf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/common/gcc-base.conf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/common/gcc-base-macx.conf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/common/g++-base.conf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/common/g++-macx.conf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/common/mac-minimum-version.conf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/qconfig.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_bootstrap.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_clucene.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_concurrent.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_core.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_declarative.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_designer.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_designercomponents.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_gui.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_help.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_multimedia.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_multimediawidgets.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_network.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_opengl.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_platformsupport.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_printsupport.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_qml.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_qmldevtools.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_qmltest.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_qtmultimediaquicktools.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_quick.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_quickparticles.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_script.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_scripttools.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_sql.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_svg.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_testlib.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_uitools.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_v8.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_webkit.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_webkitwidgets.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_widgets.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_xml.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_xmlpatterns.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/qt_functions.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/qt_config.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/macx-g++/qmake.conf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/spec_post.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/exclusive_builds.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/default_pre.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/unix/default_pre.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/mac/default_pre.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/debug.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/default_post.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/mac/default_post.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/mac/objective_c.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/shared.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/qml_debug.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/declarative_debug.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/warn_on.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/qt.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/resources.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/moc.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/unix/opengl.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/uic.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/unix/thread.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/mac/rez.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/mac/sdk.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/testcase_targets.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/exceptions.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/yacc.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/lex.prf \
../Prometheus/Prometheus.pro \
../Prometheus/PrometheusResources.qrc \
../Prometheus/Prometheus.pro
QMAKE_TARGET = Prometheus
DESTDIR =
TARGET = Prometheus.app/Contents/MacOS/Prometheus
####### Custom Compiler Variables
QMAKE_COMP_QMAKE_OBJECTIVE_CFLAGS = -pipe \
-mmacosx-version-min=10.6 \
-g \
-gdwarf-2 \
-Wall \
-W
first: all
####### Implicit rules
.SUFFIXES: .o .c .cpp .cc .cxx .C
.cpp.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<"
.cc.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<"
.cxx.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<"
.C.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<"
.c.o:
$(CC) -c $(CFLAGS) $(INCPATH) -o "$@" "$<"
####### Build rules
all: Makefile Prometheus.app/Contents/PkgInfo Prometheus.app/Contents/Resources/empty.lproj Prometheus.app/Contents/Info.plist Prometheus.app/Contents/Resources/Prometheus_Logo.icns $(TARGET)
$(TARGET): ui_mainwindow.h ui_atomtooldialog.h ui_prometheusstatus.h $(OBJECTS)
@test -d Prometheus.app/Contents/MacOS/ || $(MKDIR) Prometheus.app/Contents/MacOS/
$(LINK) $(LFLAGS) -o $(TARGET) $(OBJECTS) $(OBJCOMP) $(LIBS)
Makefile: ../Prometheus/Prometheus.pro ../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/macx-g++/qmake.conf ../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/spec_pre.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/qdevice.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/device_config.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/common/shell-unix.conf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/common/unix.conf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/common/mac.conf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/common/gcc-base.conf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/common/gcc-base-macx.conf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/common/g++-base.conf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/common/g++-macx.conf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/common/mac-minimum-version.conf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/qconfig.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_bootstrap.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_clucene.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_concurrent.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_core.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_declarative.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_designer.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_designercomponents.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_gui.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_help.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_multimedia.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_multimediawidgets.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_network.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_opengl.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_platformsupport.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_printsupport.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_qml.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_qmldevtools.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_qmltest.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_qtmultimediaquicktools.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_quick.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_quickparticles.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_script.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_scripttools.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_sql.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_svg.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_testlib.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_uitools.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_v8.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_webkit.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_webkitwidgets.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_widgets.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_xml.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_xmlpatterns.pri \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/qt_functions.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/qt_config.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/macx-g++/qmake.conf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/spec_post.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/exclusive_builds.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/default_pre.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/unix/default_pre.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/mac/default_pre.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/debug.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/default_post.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/mac/default_post.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/mac/objective_c.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/shared.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/qml_debug.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/declarative_debug.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/warn_on.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/qt.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/resources.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/moc.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/unix/opengl.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/uic.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/unix/thread.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/mac/rez.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/mac/sdk.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/testcase_targets.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/exceptions.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/yacc.prf \
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/lex.prf \
../Prometheus/Prometheus.pro \
../Prometheus/PrometheusResources.qrc \
/Users/Bammtastic/Qt5.0.0/5.0.0/clang_64/lib/QtOpenGL.framework/QtOpenGL.prl \
/Users/Bammtastic/Qt5.0.0/5.0.0/clang_64/lib/QtWidgets.framework/QtWidgets.prl \
/Users/Bammtastic/Qt5.0.0/5.0.0/clang_64/lib/QtGui.framework/QtGui.prl \
/Users/Bammtastic/Qt5.0.0/5.0.0/clang_64/lib/QtCore.framework/QtCore.prl
$(QMAKE) -spec macx-g++ CONFIG+=debug CONFIG+=x86_64 CONFIG+=declarative_debug CONFIG+=qml_debug -o Makefile ../Prometheus/Prometheus.pro
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/spec_pre.prf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/qdevice.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/device_config.prf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/common/shell-unix.conf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/common/unix.conf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/common/mac.conf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/common/gcc-base.conf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/common/gcc-base-macx.conf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/common/g++-base.conf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/common/g++-macx.conf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/common/mac-minimum-version.conf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/qconfig.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_bootstrap.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_clucene.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_concurrent.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_core.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_declarative.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_designer.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_designercomponents.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_gui.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_help.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_multimedia.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_multimediawidgets.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_network.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_opengl.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_platformsupport.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_printsupport.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_qml.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_qmldevtools.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_qmltest.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_qtmultimediaquicktools.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_quick.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_quickparticles.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_script.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_scripttools.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_sql.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_svg.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_testlib.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_uitools.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_v8.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_webkit.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_webkitwidgets.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_widgets.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_xml.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/modules/qt_lib_xmlpatterns.pri:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/qt_functions.prf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/qt_config.prf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/macx-g++/qmake.conf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/spec_post.prf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/exclusive_builds.prf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/default_pre.prf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/unix/default_pre.prf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/mac/default_pre.prf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/debug.prf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/default_post.prf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/mac/default_post.prf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/mac/objective_c.prf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/shared.prf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/qml_debug.prf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/declarative_debug.prf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/warn_on.prf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/qt.prf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/resources.prf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/moc.prf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/unix/opengl.prf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/uic.prf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/unix/thread.prf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/mac/rez.prf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/mac/sdk.prf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/testcase_targets.prf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/exceptions.prf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/yacc.prf:
../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/features/lex.prf:
../Prometheus/Prometheus.pro:
../Prometheus/PrometheusResources.qrc:
/Users/Bammtastic/Qt5.0.0/5.0.0/clang_64/lib/QtOpenGL.framework/QtOpenGL.prl:
/Users/Bammtastic/Qt5.0.0/5.0.0/clang_64/lib/QtWidgets.framework/QtWidgets.prl:
/Users/Bammtastic/Qt5.0.0/5.0.0/clang_64/lib/QtGui.framework/QtGui.prl:
/Users/Bammtastic/Qt5.0.0/5.0.0/clang_64/lib/QtCore.framework/QtCore.prl:
qmake: FORCE
@$(QMAKE) -spec macx-g++ CONFIG+=debug CONFIG+=x86_64 CONFIG+=declarative_debug CONFIG+=qml_debug -o Makefile ../Prometheus/Prometheus.pro
qmake_all: FORCE
Prometheus.app/Contents/PkgInfo:
@test -d Prometheus.app/Contents || $(MKDIR) Prometheus.app/Contents
@$(DEL_FILE) Prometheus.app/Contents/PkgInfo
@echo "APPL????" >Prometheus.app/Contents/PkgInfo
Prometheus.app/Contents/Resources/empty.lproj:
@test -d Prometheus.app/Contents/Resources || $(MKDIR) Prometheus.app/Contents/Resources
@touch Prometheus.app/Contents/Resources/empty.lproj
Prometheus.app/Contents/Info.plist:
@test -d Prometheus.app/Contents || $(MKDIR) Prometheus.app/Contents
@$(DEL_FILE) Prometheus.app/Contents/Info.plist
@sed -e "s,@SHORT_VERSION@,1.0,g" -e "s,@TYPEINFO@,????,g" -e "s,@ICON@,Prometheus_Logo.icns,g" -e "s,@EXECUTABLE@,Prometheus,g" -e "s,@TYPEINFO@,????,g" ../../../../Qt5.0.0/5.0.0/clang_64/mkspecs/macx-g++/Info.plist.app >Prometheus.app/Contents/Info.plist
Prometheus.app/Contents/Resources/Prometheus_Logo.icns: ../Prometheus/Prometheus_Logo.icns
@test -d Prometheus.app/Contents/Resources/ || $(MKDIR) Prometheus.app/Contents/Resources/
@$(DEL_FILE) Prometheus.app/Contents/Resources/Prometheus_Logo.icns
@$(COPY_FILE) ../Prometheus/Prometheus_Logo.icns Prometheus.app/Contents/Resources/Prometheus_Logo.icns
dist:
@test -d .tmp/Prometheus1.0.0 || $(MKDIR) .tmp/Prometheus1.0.0
$(COPY_FILE) --parents $(SOURCES) $(DIST) .tmp/Prometheus1.0.0/ && $(COPY_FILE) --parents ../Prometheus/PrometheusResources.qrc .tmp/Prometheus1.0.0/ && $(COPY_FILE) --parents ../Prometheus/mainwindow.h ../Prometheus/cpsviewer.h ../Prometheus/pandora.h ../Prometheus/atlas.h ../Prometheus/atomtooldialog.h ../Prometheus/hephaestus.h ../Prometheus/apollo.h ../Prometheus/prometheusstatus.h .tmp/Prometheus1.0.0/ && $(COPY_FILE) --parents ../Prometheus/main.cpp ../Prometheus/mainwindow.cpp ../Prometheus/cpsviewer.cpp ../Prometheus/pandora.cpp ../Prometheus/atlas.cpp ../Prometheus/atomtooldialog.cpp ../Prometheus/hephaestus.cpp ../Prometheus/apollo.cpp ../Prometheus/prometheusstatus.cpp .tmp/Prometheus1.0.0/ && $(COPY_FILE) --parents ../Prometheus/mainwindow.ui ../Prometheus/atomtooldialog.ui ../Prometheus/prometheusstatus.ui .tmp/Prometheus1.0.0/ && (cd `dirname .tmp/Prometheus1.0.0` && $(TAR) Prometheus1.0.0.tar Prometheus1.0.0 && $(COMPRESS) Prometheus1.0.0.tar) && $(MOVE) `dirname .tmp/Prometheus1.0.0`/Prometheus1.0.0.tar.gz . && $(DEL_FILE) -r .tmp/Prometheus1.0.0
clean:compiler_clean
-$(DEL_FILE) $(OBJECTS)
-$(DEL_FILE) *~ core *.core
####### Sub-libraries
distclean: clean
-$(DEL_FILE) -r Prometheus.app
-$(DEL_FILE) Makefile
mocclean: compiler_moc_header_clean compiler_moc_source_clean
mocables: compiler_moc_header_make_all compiler_moc_source_make_all
check: first
compiler_objective_c_make_all:
compiler_objective_c_clean:
compiler_rcc_make_all: qrc_PrometheusResources.cpp
compiler_rcc_clean:
-$(DEL_FILE) qrc_PrometheusResources.cpp
qrc_PrometheusResources.cpp: ../Prometheus/PrometheusResources.qrc \
../Prometheus/vertexShader.vert \
../Prometheus/fragmentShader.frag \
../Prometheus/geometryShader.geom
/Users/Bammtastic/Qt5.0.0/5.0.0/clang_64/bin/rcc -name PrometheusResources ../Prometheus/PrometheusResources.qrc -o qrc_PrometheusResources.cpp
compiler_moc_header_make_all: moc_mainwindow.cpp moc_cpsviewer.cpp moc_pandora.cpp moc_atlas.cpp moc_atomtooldialog.cpp moc_hephaestus.cpp moc_apollo.cpp moc_prometheusstatus.cpp
compiler_moc_header_clean:
-$(DEL_FILE) moc_mainwindow.cpp moc_cpsviewer.cpp moc_pandora.cpp moc_atlas.cpp moc_atomtooldialog.cpp moc_hephaestus.cpp moc_apollo.cpp moc_prometheusstatus.cpp
moc_mainwindow.cpp: ../../../../Qt5.0.0/5.0.0/clang_64/include/QtWidgets/QMainWindow \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtWidgets/qmainwindow.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtWidgets/qwidget.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qwindowdefs.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qglobal.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qconfig.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qfeatures.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qsystemdetection.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qcompilerdetection.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qprocessordetection.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qlogging.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qflags.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qtypeinfo.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qtypetraits.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qsysinfo.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qobjectdefs.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qnamespace.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qobjectdefs_impl.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qwindowdefs_win.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qobject.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qstring.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qchar.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qbytearray.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qrefcount.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qbasicatomic.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_bootstrap.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qgenericatomic.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_msvc.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_integrity.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qoldbasicatomic.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_vxworks.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_power.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_alpha.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_armv7.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_armv6.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_armv5.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_bfin.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_ia64.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_mips.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_s390.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_sh4a.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_sparc.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_x86.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_cxx11.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_gcc.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_unix.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qarraydata.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qstringbuilder.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qlist.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qalgorithms.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qiterator.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qcoreevent.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qscopedpointer.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qmetatype.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qvarlengtharray.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qcontainerfwd.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qisenum.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qobject_impl.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qmargins.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qpaintdevice.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qrect.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qsize.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qpoint.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qpalette.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qcolor.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qrgb.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qstringlist.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qdatastream.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qiodevice.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qpair.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qregexp.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qstringmatcher.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qbrush.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qvector.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qmatrix.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qpolygon.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qregion.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qline.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qtransform.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qpainterpath.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qimage.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qpixmap.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qsharedpointer.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qshareddata.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qsharedpointer_impl.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qhash.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qfont.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qfontmetrics.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qfontinfo.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtWidgets/qsizepolicy.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qcursor.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qkeysequence.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qevent.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qvariant.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qmap.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qdebug.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qtextstream.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qlocale.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qset.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qcontiguouscache.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qurl.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qurlquery.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qfile.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qfiledevice.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qvector2d.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qtouchdevice.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtWidgets/qtabwidget.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qicon.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/QVector \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtWidgets/QListWidget \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtWidgets/qlistwidget.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtWidgets/qlistview.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtWidgets/qabstractitemview.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtWidgets/qabstractscrollarea.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtWidgets/qframe.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qabstractitemmodel.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qitemselectionmodel.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtWidgets/qabstractitemdelegate.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtWidgets/qstyleoption.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtWidgets/qabstractspinbox.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qvalidator.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtWidgets/qslider.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtWidgets/qabstractslider.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtWidgets/qstyle.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtWidgets/qtabbar.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtWidgets/qrubberband.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtConcurrent/QtConcurrent \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/QtCore \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qabstractanimation.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qanimationgroup.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qparallelanimationgroup.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qpauseanimation.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qpropertyanimation.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qvariantanimation.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qeasingcurve.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qsequentialanimationgroup.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qtextcodec.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qendian.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qlibraryinfo.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qdatetime.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qnumeric.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qbuffer.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qdir.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qfileinfo.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qdiriterator.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qfilesystemwatcher.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qprocess.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qresource.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qsettings.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qstandardpaths.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qtemporarydir.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/QScopedPointer \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qtemporaryfile.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qabstractproxymodel.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qidentityproxymodel.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qsortfilterproxymodel.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qstringlistmodel.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qjsonarray.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qjsonvalue.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qjsondocument.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qjsonobject.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qabstracteventdispatcher.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qeventloop.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qabstractnativeeventfilter.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qbasictimer.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qcoreapplication.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qmath.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qmetaobject.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qmimedata.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qobjectcleanuphandler.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qpointer.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qsharedmemory.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qsignalmapper.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qsocketnotifier.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qsystemsemaphore.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qtimer.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qtranslator.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qmimedatabase.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qmimetype.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qfactoryinterface.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qlibrary.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qplugin.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qpluginloader.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/quuid.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qabstractstate.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qabstracttransition.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qeventtransition.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qfinalstate.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qhistorystate.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qsignaltransition.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qstate.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qstatemachine.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qexception.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qfuture.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qfutureinterface.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qrunnable.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qmutex.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qresultstore.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qfuturesynchronizer.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qfuturewatcher.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qreadwritelock.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qsemaphore.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qthread.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qthreadpool.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qthreadstorage.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qwaitcondition.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qarraydataops.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qarraydatapointer.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qbitarray.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qbytearraymatcher.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qcache.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qcryptographichash.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qelapsedtimer.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qlinkedlist.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qqueue.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qregularexpression.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qscopedvaluerollback.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qstack.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qtextboundaryfinder.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qtimeline.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qxmlstream.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qtcoreversion.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtConcurrent/qtconcurrentcompilertest.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtConcurrent/qtconcurrent_global.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtConcurrent/qtconcurrentexception.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtConcurrent/qtconcurrentfilter.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtConcurrent/qtconcurrentfilterkernel.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtConcurrent/qtconcurrentiteratekernel.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtConcurrent/qtconcurrentmedian.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtConcurrent/qtconcurrentthreadengine.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtConcurrent/qtconcurrentmapkernel.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtConcurrent/qtconcurrentreducekernel.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtConcurrent/qtconcurrentfunctionwrappers.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtConcurrent/qtconcurrentmap.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtConcurrent/qtconcurrentrun.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtConcurrent/qtconcurrentrunbase.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtConcurrent/qtconcurrentstoredfunctioncall.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtConcurrent/qtconcurrentversion.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/QFuture \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtWidgets/QDialog \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtWidgets/qdialog.h \
../Prometheus/atlas.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/QObject \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/QString \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/QQuaternion \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qquaternion.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qvector3d.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qvector4d.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/QPoint \
../Prometheus/cpsviewer.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtOpenGL/QGLWidget \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtOpenGL/qgl.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qpaintengine.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qpainter.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qtextoption.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qpen.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtOpenGL/qglcolormap.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtOpenGL/qtopenglglobal.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/QSurfaceFormat \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qsurfaceformat.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qt_windows.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/QMouseEvent \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/QWheelEvent \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/QKeyEvent \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/QVector3D \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/QDropEvent \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtOpenGL/QGLShader \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtOpenGL/qglshaderprogram.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qmatrix4x4.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qgenericmatrix.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtOpenGL/QGLShaderProgram \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtOpenGL/QGLBuffer \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtOpenGL/qglbuffer.h \
../Prometheus/atomtooldialog.h \
../Prometheus/prometheusstatus.h \
../Prometheus/mainwindow.h
/Users/Bammtastic/Qt5.0.0/5.0.0/clang_64/bin/moc $(DEFINES) $(INCPATH) -D__APPLE__ -D__GNUC__=4 ../Prometheus/mainwindow.h -o moc_mainwindow.cpp
moc_cpsviewer.cpp: ../../../../Qt5.0.0/5.0.0/clang_64/include/QtOpenGL/QGLWidget \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtOpenGL/qgl.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtWidgets/qwidget.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qwindowdefs.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qglobal.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qconfig.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qfeatures.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qsystemdetection.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qcompilerdetection.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qprocessordetection.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qlogging.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qflags.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qtypeinfo.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qtypetraits.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qsysinfo.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qobjectdefs.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qnamespace.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qobjectdefs_impl.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qwindowdefs_win.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qobject.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qstring.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qchar.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qbytearray.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qrefcount.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qbasicatomic.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_bootstrap.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qgenericatomic.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_msvc.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_integrity.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qoldbasicatomic.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_vxworks.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_power.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_alpha.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_armv7.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_armv6.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_armv5.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_bfin.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_ia64.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_mips.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_s390.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_sh4a.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_sparc.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_x86.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_cxx11.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_gcc.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_unix.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qarraydata.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qstringbuilder.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qlist.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qalgorithms.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qiterator.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qcoreevent.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qscopedpointer.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qmetatype.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qvarlengtharray.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qcontainerfwd.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qisenum.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qobject_impl.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qmargins.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qpaintdevice.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qrect.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qsize.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qpoint.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qpalette.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qcolor.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qrgb.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qstringlist.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qdatastream.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qiodevice.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qpair.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qregexp.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qstringmatcher.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qbrush.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qvector.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qmatrix.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qpolygon.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qregion.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qline.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qtransform.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qpainterpath.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qimage.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qpixmap.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qsharedpointer.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qshareddata.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qsharedpointer_impl.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qhash.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qfont.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qfontmetrics.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qfontinfo.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtWidgets/qsizepolicy.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qcursor.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qkeysequence.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qevent.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qvariant.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qmap.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qdebug.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qtextstream.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qlocale.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qset.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qcontiguouscache.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qurl.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qurlquery.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qfile.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qfiledevice.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qvector2d.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qtouchdevice.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qpaintengine.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qpainter.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qtextoption.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qpen.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtOpenGL/qglcolormap.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtOpenGL/qtopenglglobal.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/QSurfaceFormat \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qsurfaceformat.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qt_windows.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/QObject \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/QMouseEvent \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/QWheelEvent \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/QKeyEvent \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/QQuaternion \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qquaternion.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qvector3d.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qvector4d.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/QVector3D \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/QDropEvent \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtOpenGL/QGLShader \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtOpenGL/qglshaderprogram.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qmatrix4x4.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qgenericmatrix.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtOpenGL/QGLShaderProgram \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtOpenGL/QGLBuffer \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtOpenGL/qglbuffer.h \
../Prometheus/atlas.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/QVector \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/QString \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/QPoint \
../Prometheus/cpsviewer.h
/Users/Bammtastic/Qt5.0.0/5.0.0/clang_64/bin/moc $(DEFINES) $(INCPATH) -D__APPLE__ -D__GNUC__=4 ../Prometheus/cpsviewer.h -o moc_cpsviewer.cpp
moc_pandora.cpp: ../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/QObject \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qobject.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qobjectdefs.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qnamespace.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qglobal.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qconfig.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qfeatures.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qsystemdetection.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qcompilerdetection.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qprocessordetection.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qlogging.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qflags.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qtypeinfo.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qtypetraits.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qsysinfo.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qobjectdefs_impl.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qstring.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qchar.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qbytearray.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qrefcount.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qbasicatomic.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_bootstrap.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qgenericatomic.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_msvc.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_integrity.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qoldbasicatomic.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_vxworks.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_power.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_alpha.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_armv7.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_armv6.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_armv5.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_bfin.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_ia64.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_mips.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_s390.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_sh4a.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_sparc.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_x86.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_cxx11.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_gcc.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_unix.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qarraydata.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qstringbuilder.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qlist.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qalgorithms.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qiterator.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qcoreevent.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qscopedpointer.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qmetatype.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qvarlengtharray.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qcontainerfwd.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qisenum.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qobject_impl.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/QString \
../Prometheus/atlas.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/QVector \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qvector.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qpoint.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/QQuaternion \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qquaternion.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qvector3d.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qvector4d.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/QPoint \
../Prometheus/pandora.h
/Users/Bammtastic/Qt5.0.0/5.0.0/clang_64/bin/moc $(DEFINES) $(INCPATH) -D__APPLE__ -D__GNUC__=4 ../Prometheus/pandora.h -o moc_pandora.cpp
moc_atlas.cpp: ../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/QObject \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qobject.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qobjectdefs.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qnamespace.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qglobal.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qconfig.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qfeatures.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qsystemdetection.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qcompilerdetection.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qprocessordetection.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qlogging.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qflags.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qtypeinfo.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qtypetraits.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qsysinfo.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qobjectdefs_impl.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qstring.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qchar.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qbytearray.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qrefcount.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qbasicatomic.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_bootstrap.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qgenericatomic.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_msvc.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_integrity.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qoldbasicatomic.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_vxworks.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_power.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_alpha.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_armv7.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_armv6.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_armv5.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_bfin.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_ia64.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_mips.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_s390.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_sh4a.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_sparc.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_x86.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_cxx11.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_gcc.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_unix.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qarraydata.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qstringbuilder.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qlist.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qalgorithms.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qiterator.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qcoreevent.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qscopedpointer.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qmetatype.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qvarlengtharray.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qcontainerfwd.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qisenum.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qobject_impl.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/QVector \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qvector.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qpoint.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/QString \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/QQuaternion \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qquaternion.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qvector3d.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qvector4d.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/QPoint \
../Prometheus/atlas.h
/Users/Bammtastic/Qt5.0.0/5.0.0/clang_64/bin/moc $(DEFINES) $(INCPATH) -D__APPLE__ -D__GNUC__=4 ../Prometheus/atlas.h -o moc_atlas.cpp
moc_atomtooldialog.cpp: ../../../../Qt5.0.0/5.0.0/clang_64/include/QtWidgets/QDialog \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtWidgets/qdialog.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtWidgets/qwidget.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qwindowdefs.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qglobal.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qconfig.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qfeatures.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qsystemdetection.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qcompilerdetection.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qprocessordetection.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qlogging.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qflags.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qtypeinfo.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qtypetraits.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qsysinfo.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qobjectdefs.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qnamespace.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qobjectdefs_impl.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtGui/qwindowdefs_win.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qobject.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qstring.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qchar.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qbytearray.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qrefcount.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qbasicatomic.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_bootstrap.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qgenericatomic.h \
../../../../Qt5.0.0/5.0.0/clang_64/include/QtCore/qatomic_msvc.h \