-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile.Debug
2518 lines (2463 loc) · 148 KB
/
Makefile.Debug
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: Flappy-Bird
# Generated by qmake (3.0) (Qt 5.3.2)
# Project: Flappy-Bird.pro
# Template: app
#############################################################################
MAKEFILE = Makefile.Debug
####### Compiler, tools and options
CC = gcc
CXX = g++
DEFINES = -DUNICODE -DQT_DEPRECATED_WARNINGS -DQT_QML_DEBUG -DQT_OPENGL_LIB -DQT_MULTIMEDIA_LIB -DQT_WIDGETS_LIB -DQT_NETWORK_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_NEEDS_QMAIN
CFLAGS = -pipe -fno-keep-inline-dllexport -g -Wall -Wextra $(DEFINES)
CXXFLAGS = -pipe -fno-keep-inline-dllexport -g -std=c++0x -frtti -Wall -Wextra -fexceptions -mthreads $(DEFINES)
INCPATH = -I. -I"..\..\..\Qt5.3\5.3.2-static\include" -I"..\..\..\Qt5.3\5.3.2-static\include\QtOpenGL" -I"..\..\..\Qt5.3\5.3.2-static\include\QtMultimedia" -I"..\..\..\Qt5.3\5.3.2-static\include\QtWidgets" -I"..\..\..\Qt5.3\5.3.2-static\include\QtNetwork" -I"..\..\..\Qt5.3\5.3.2-static\include\QtGui" -I"..\..\..\Qt5.3\5.3.2-static\include\QtCore" -I"debug" -I"." -I"..\..\..\Qt5.3\5.3.2-static\mkspecs\win32-g++"
LINKER = g++
LFLAGS = -static -Wl,-subsystem,windows -mthreads
LIBS = -lmingw32 -LG:/Qt5.3/5.3.2-static/lib -lqtmaind -Ld:/Qt/5.3.2-static/lib -LG:/Qt5.3/5.3.2-static/plugins/mediaservice -ldsengined -ldmoguids -lmsdmo -lQt5MultimediaWidgetsd -lQt5OpenGLd -lqtmedia_audioengined -LG:/Qt5.3/5.3.2-static/plugins/audio -lqtaudio_windowsd -lstrmiids -LG:/Qt5.3/5.3.2-static/plugins/playlistformats -lqtmultimedia_m3ud -lQt5Multimediad -LG:/Qt5.3/5.3.2-static/plugins/accessible -lqtaccessiblewidgetsd -lQt5Widgetsd -LG:/Qt5.3/5.3.2-static/plugins/bearer -lqgenericbearerd -lqnativewifibearerd -lQt5Networkd -ldnsapi -LG:/Qt5.3/5.3.2-static/plugins/platforms -lqwindowsd -lwinspool -lshlwapi -lQt5PlatformSupportd -LG:/Qt5.3/5.3.2-static/plugins/imageformats -lqddsd -lqicnsd -lqicod -lqjp2d -lqmngd -lqtgad -lqtiffd -lqwbmpd -lqwebpd -lQt5Guid -lcomdlg32 -loleaut32 -limm32 -lwinmm -lglu32 -lopengl32 -lgdi32 -lQt5Cored -lole32 -luuid -lws2_32 -ladvapi32 -lshell32 -luser32 -lkernel32
QMAKE = G:\Qt5.3\5.3.2-static\bin\qmake.exe
IDC = idc
IDL = midl
ZIP = zip -r -9
DEF_FILE =
RES_FILE =
COPY = copy /y
SED = $(QMAKE) -install sed
COPY_FILE = $(COPY)
COPY_DIR = xcopy /s /q /y /i
DEL_FILE = del
DEL_DIR = rmdir
MOVE = move
CHK_DIR_EXISTS= if not exist
MKDIR = mkdir
INSTALL_FILE = $(COPY_FILE)
INSTALL_PROGRAM = $(COPY_FILE)
INSTALL_DIR = $(COPY_DIR)
####### Output directory
OBJECTS_DIR = debug
####### Files
SOURCES = main.cpp \
widget.cpp \
myobject.cpp \
sys.cpp \
bird.cpp \
tools.cpp \
pipe.cpp \
mythread.cpp \
score.cpp \
scoreboard.cpp \
backgroud.cpp \
flappy-bird_plugin_import.cpp debug\qrc_res.cpp \
debug\moc_widget.cpp \
debug\moc_mythread.cpp
OBJECTS = debug/main.o \
debug/widget.o \
debug/myobject.o \
debug/sys.o \
debug/bird.o \
debug/tools.o \
debug/pipe.o \
debug/mythread.o \
debug/score.o \
debug/scoreboard.o \
debug/backgroud.o \
debug/flappy-bird_plugin_import.o \
debug/qrc_res.o \
debug/moc_widget.o \
debug/moc_mythread.o
DIST =
QMAKE_TARGET = Flappy-Bird
DESTDIR = debug\ #avoid trailing-slash linebreak
TARGET = Flappy-Bird.exe
DESTDIR_TARGET = debug\Flappy-Bird.exe
####### Implicit rules
.SUFFIXES: .cpp .cc .cxx .c
.cpp.o:
$(CXX) -c -include debug\stable.h $(CXXFLAGS) $(INCPATH) -o $@ $<
.cc.o:
$(CXX) -c -include debug\stable.h $(CXXFLAGS) $(INCPATH) -o $@ $<
.cxx.o:
$(CXX) -c -include debug\stable.h $(CXXFLAGS) $(INCPATH) -o $@ $<
.c.o:
$(CC) -c -include debug\stable.h $(CFLAGS) $(INCPATH) -o $@ $<
####### Build rules
first: all
all: Makefile.Debug $(DESTDIR_TARGET)
$(DESTDIR_TARGET): G:/Qt5.3/5.3.2-static/lib/libQt5OpenGLd.a G:/Qt5.3/5.3.2-static/lib/libQt5Multimediad.a G:/Qt5.3/5.3.2-static/lib/libQt5Widgetsd.a G:/Qt5.3/5.3.2-static/lib/libQt5Networkd.a G:/Qt5.3/5.3.2-static/lib/libQt5Guid.a G:/Qt5.3/5.3.2-static/lib/libQt5Cored.a ui_widget.h $(OBJECTS)
$(LINKER) $(LFLAGS) -o $(DESTDIR_TARGET) object_script.Flappy-Bird.Debug $(LIBS)
qmake: FORCE
@$(QMAKE) -spec win32-g++ CONFIG+=qml_debug -o Makefile.Debug Flappy-Bird.pro
qmake_all: FORCE
dist:
$(ZIP) Flappy-Bird.zip $(SOURCES) $(DIST) Flappy-Bird.pro ..\..\..\Qt5.3\5.3.2-static\mkspecs\features\spec_pre.prf ..\..\..\Qt5.3\5.3.2-static\mkspecs\qdevice.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\features\device_config.prf ..\..\..\Qt5.3\5.3.2-static\mkspecs\common\shell-win32.conf ..\..\..\Qt5.3\5.3.2-static\mkspecs\qconfig.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_axbase.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_axbase_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_axcontainer.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_axcontainer_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_axserver.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_axserver_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_bluetooth.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_bluetooth_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_bootstrap_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_clucene_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_concurrent.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_concurrent_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_core.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_core_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_declarative.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_declarative_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_designer.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_designer_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_designercomponents_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_gui.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_gui_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_help.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_help_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_multimedia.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_multimedia_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_multimediawidgets.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_multimediawidgets_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_network.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_network_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_nfc.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_nfc_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_opengl.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_opengl_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_openglextensions.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_openglextensions_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_platformsupport_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_positioning.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_positioning_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_printsupport.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_printsupport_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_qml.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_qml_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_qmldevtools_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_qmltest.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_qmltest_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_qtmultimediaquicktools_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_quick.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_quick_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_quickparticles_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_quickwidgets.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_quickwidgets_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_script.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_script_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_scripttools.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_scripttools_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_sensors.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_sensors_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_serialport.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_serialport_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_sql.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_sql_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_svg.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_svg_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_testlib.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_testlib_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_uitools.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_uitools_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_websockets.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_websockets_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_widgets.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_widgets_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_winextras.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_winextras_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_xml.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_xml_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_xmlpatterns.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_lib_xmlpatterns_private.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_dsengine.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qdds.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qdeclarativeview.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qgenericbearer.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qicns.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qico.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qjp2.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qminimal.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qmldbg_inspector.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qmldbg_qtquick2.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qmldbg_tcp.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qmldbg_tcp_qtdeclarative.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qmng.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qnativewifibearer.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qoffscreen.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qsvg.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qsvgicon.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qtaccessiblequick.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qtaccessiblewidgets.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qtaudio_windows.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qtga.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qtiff.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qtmedia_audioengine.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qtmultimedia_m3u.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qtposition_positionpoll.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qtsensorgestures_plugin.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qtsensorgestures_shakeplugin.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qtsensors_dummy.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qtsensors_generic.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qwbmp.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qwebp.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_qwindows.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\modules\qt_plugin_windowsprintersupport.pri ..\..\..\Qt5.3\5.3.2-static\mkspecs\features\qt_functions.prf ..\..\..\Qt5.3\5.3.2-static\mkspecs\features\qt_config.prf ..\..\..\Qt5.3\5.3.2-static\mkspecs\features\win32\qt_config.prf ..\..\..\Qt5.3\5.3.2-static\mkspecs\win32-g++\qmake.conf ..\..\..\Qt5.3\5.3.2-static\mkspecs\features\spec_post.prf ..\..\..\Qt5.3\5.3.2-static\mkspecs\features\exclusive_builds.prf ..\..\..\Qt5.3\5.3.2-static\mkspecs\features\default_pre.prf ..\..\..\Qt5.3\5.3.2-static\mkspecs\features\win32\default_pre.prf ..\..\..\Qt5.3\5.3.2-static\mkspecs\features\resolve_config.prf ..\..\..\Qt5.3\5.3.2-static\mkspecs\features\exclusive_builds_post.prf ..\..\..\Qt5.3\5.3.2-static\mkspecs\features\default_post.prf ..\..\..\Qt5.3\5.3.2-static\mkspecs\features\build_pass.prf ..\..\..\Qt5.3\5.3.2-static\mkspecs\features\c++11.prf ..\..\..\Qt5.3\5.3.2-static\mkspecs\features\precompile_header.prf ..\..\..\Qt5.3\5.3.2-static\mkspecs\features\qml_debug.prf ..\..\..\Qt5.3\5.3.2-static\mkspecs\features\win32\rtti.prf ..\..\..\Qt5.3\5.3.2-static\mkspecs\features\warn_on.prf ..\..\..\Qt5.3\5.3.2-static\mkspecs\features\qt.prf ..\..\..\Qt5.3\5.3.2-static\mkspecs\features\resources.prf ..\..\..\Qt5.3\5.3.2-static\mkspecs\features\moc.prf ..\..\..\Qt5.3\5.3.2-static\mkspecs\features\win32\opengl.prf ..\..\..\Qt5.3\5.3.2-static\mkspecs\features\uic.prf ..\..\..\Qt5.3\5.3.2-static\mkspecs\features\win32\windows.prf ..\..\..\Qt5.3\5.3.2-static\mkspecs\features\testcase_targets.prf ..\..\..\Qt5.3\5.3.2-static\mkspecs\features\exceptions.prf ..\..\..\Qt5.3\5.3.2-static\mkspecs\features\yacc.prf ..\..\..\Qt5.3\5.3.2-static\mkspecs\features\lex.prf Flappy-Bird.pro res.qrc G:/Qt5.3/5.3.2-static/lib/qtmaind.prl G:/Qt5.3/5.3.2-static/lib/Qt5Cored.prl G:/Qt5.3/5.3.2-static/lib/Qt5OpenGLd.prl G:/Qt5.3/5.3.2-static/lib/Qt5Widgetsd.prl G:/Qt5.3/5.3.2-static/lib/Qt5Guid.prl G:/Qt5.3/5.3.2-static/lib/Qt5Multimediad.prl G:/Qt5.3/5.3.2-static/lib/Qt5Networkd.prl G:/Qt5.3/5.3.2-static/plugins/mediaservice/dsengined.prl G:/Qt5.3/5.3.2-static/lib/Qt5MultimediaWidgetsd.prl G:/Qt5.3/5.3.2-static/plugins/mediaservice/qtmedia_audioengined.prl G:/Qt5.3/5.3.2-static/plugins/audio/qtaudio_windowsd.prl G:/Qt5.3/5.3.2-static/plugins/playlistformats/qtmultimedia_m3ud.prl G:/Qt5.3/5.3.2-static/plugins/accessible/qtaccessiblewidgetsd.prl G:/Qt5.3/5.3.2-static/plugins/bearer/qgenericbearerd.prl G:/Qt5.3/5.3.2-static/plugins/bearer/qnativewifibearerd.prl G:/Qt5.3/5.3.2-static/plugins/platforms/qwindowsd.prl G:/Qt5.3/5.3.2-static/lib/Qt5PlatformSupportd.prl G:/Qt5.3/5.3.2-static/plugins/imageformats/qddsd.prl G:/Qt5.3/5.3.2-static/plugins/imageformats/qicnsd.prl G:/Qt5.3/5.3.2-static/plugins/imageformats/qicod.prl G:/Qt5.3/5.3.2-static/plugins/imageformats/qjp2d.prl G:/Qt5.3/5.3.2-static/plugins/imageformats/qmngd.prl G:/Qt5.3/5.3.2-static/plugins/imageformats/qtgad.prl G:/Qt5.3/5.3.2-static/plugins/imageformats/qtiffd.prl G:/Qt5.3/5.3.2-static/plugins/imageformats/qwbmpd.prl G:/Qt5.3/5.3.2-static/plugins/imageformats/qwebpd.prl NO_PCH_SOURCES RESOURCES HEADERS SOURCES OBJECTIVE_SOURCES FORMS YACCSOURCES YACCSOURCES LEXSOURCES
clean: compiler_clean
-$(DEL_FILE) debug\main.o debug\widget.o debug\myobject.o debug\sys.o debug\bird.o debug\tools.o debug\pipe.o debug\mythread.o debug\score.o debug\scoreboard.o debug\backgroud.o debug\flappy-bird_plugin_import.o debug\qrc_res.o debug\moc_widget.o debug\moc_mythread.o
-$(DEL_FILE) debug\stable.h.gch\c debug\stable.h.gch\c++
distclean: clean
-$(DEL_FILE) "G:\Qtproject\flappy bird\flappy-bird\flappy-bird_plugin_import.cpp"
-$(DEL_FILE) $(DESTDIR_TARGET)
-$(DEL_FILE) Makefile.Debug
mocclean: compiler_moc_header_clean compiler_moc_source_clean
mocables: compiler_moc_header_make_all compiler_moc_source_make_all
check: first
compiler_no_pch_compiler_make_all:
compiler_no_pch_compiler_clean:
compiler_rcc_make_all: debug/qrc_res.cpp
compiler_rcc_clean:
-$(DEL_FILE) debug\qrc_res.cpp
debug/qrc_res.cpp: res.qrc \
res/hit.wav \
res/die.wav \
res/panel.wav \
res/fly.wav \
res/atlas.png \
res/ico.ico \
res/point.wav
G:\Qt5.3\5.3.2-static\bin\rcc.exe -name res res.qrc -o debug\qrc_res.cpp
compiler_moc_header_make_all: debug/moc_widget.cpp debug/moc_mythread.cpp
compiler_moc_header_clean:
-$(DEL_FILE) debug\moc_widget.cpp debug\moc_mythread.cpp
debug/moc_widget.cpp: myobject.h \
sys.h \
../../../Qt5.3/5.3.2-static/include/QtGui/QPainter \
../../../Qt5.3/5.3.2-static/include/QtGui/qpainter.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qnamespace.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qglobal.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qconfig.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qfeatures.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsystemdetection.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qprocessordetection.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qcompilerdetection.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qtypeinfo.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qtypetraits.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsysinfo.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qlogging.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qflags.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qbasicatomic.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_bootstrap.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qgenericatomic.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_msvc.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_armv7.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_armv6.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_armv5.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_ia64.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_mips.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_x86.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_cxx11.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_gcc.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_unix.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qglobalstatic.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qmutex.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qnumeric.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qrect.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qmargins.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsize.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qpoint.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qscopedpointer.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpixmap.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpaintdevice.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qwindowdefs.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qobjectdefs.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qobjectdefs_impl.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qwindowdefs_win.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qcolor.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qrgb.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qstringlist.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qalgorithms.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qdatastream.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qiodevice.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qobject.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qstring.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qchar.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qbytearray.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qrefcount.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qarraydata.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qstringbuilder.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qlist.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qiterator.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qcoreevent.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qmetatype.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qvarlengtharray.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qcontainerfwd.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qisenum.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qobject_impl.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qpair.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qregexp.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qstringmatcher.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsharedpointer.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qshareddata.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsharedpointer_impl.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qhash.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qimage.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qtransform.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qmatrix.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpolygon.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qvector.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qregion.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qline.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpainterpath.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qtextoption.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpen.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qbrush.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qfontinfo.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qfont.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qfontmetrics.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QtMath \
../../../Qt5.3/5.3.2-static/include/QtCore/qmath.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QObject \
../../../Qt5.3/5.3.2-static/include/QtCore/QDebug \
../../../Qt5.3/5.3.2-static/include/QtCore/qdebug.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qmap.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qtextstream.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qlocale.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qvariant.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qset.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qcontiguouscache.h \
../../../Qt5.3/5.3.2-static/include/QtGui/QBitmap \
../../../Qt5.3/5.3.2-static/include/QtGui/qbitmap.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QScopedPointer \
../../../Qt5.3/5.3.2-static/include/QtCore/QPointer \
../../../Qt5.3/5.3.2-static/include/QtCore/qpointer.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QList \
../../../Qt5.3/5.3.2-static/include/QtMultimedia/QSound \
../../../Qt5.3/5.3.2-static/include/QtMultimedia/qsound.h \
../../../Qt5.3/5.3.2-static/include/QtMultimedia/qtmultimediadefs.h \
backgroud.h \
bird.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QQueue \
../../../Qt5.3/5.3.2-static/include/QtCore/qqueue.h \
tools.h \
pipe.h \
score.h \
scoreboard.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QTimer \
../../../Qt5.3/5.3.2-static/include/QtCore/qtimer.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qbasictimer.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QThread \
../../../Qt5.3/5.3.2-static/include/QtCore/qthread.h \
../../../Qt5.3/5.3.2-static/include/QtOpenGL/QGLWidget \
../../../Qt5.3/5.3.2-static/include/QtOpenGL/qgl.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qopengl.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qt_windows.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qopengles2ext.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qopenglext.h \
../../../Qt5.3/5.3.2-static/include/QtWidgets/qwidget.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpalette.h \
../../../Qt5.3/5.3.2-static/include/QtWidgets/qsizepolicy.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qcursor.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qkeysequence.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qevent.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qurl.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qurlquery.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qfile.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qfiledevice.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qvector2d.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qtouchdevice.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpaintengine.h \
../../../Qt5.3/5.3.2-static/include/QtOpenGL/qglcolormap.h \
../../../Qt5.3/5.3.2-static/include/QtOpenGL/qtopenglglobal.h \
../../../Qt5.3/5.3.2-static/include/QtGui/QSurfaceFormat \
../../../Qt5.3/5.3.2-static/include/QtGui/qsurfaceformat.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QMultiMap \
../../../Qt5.3/5.3.2-static/include/QtWidgets/QApplication \
../../../Qt5.3/5.3.2-static/include/QtWidgets/qapplication.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qcoreapplication.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qeventloop.h \
../../../Qt5.3/5.3.2-static/include/QtWidgets/qdesktopwidget.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qguiapplication.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qinputmethod.h \
widget.h
G:\Qt5.3\5.3.2-static\bin\moc.exe $(DEFINES) -D__GNUC__ -DWIN32 -IG:/Qt5.3/5.3.2-static/mkspecs/win32-g++ -I"G:/Qtproject/flappy bird/flappy-bird" -IG:/Qt5.3/5.3.2-static/include -IG:/Qt5.3/5.3.2-static/include/QtOpenGL -IG:/Qt5.3/5.3.2-static/include/QtMultimedia -IG:/Qt5.3/5.3.2-static/include/QtWidgets -IG:/Qt5.3/5.3.2-static/include/QtNetwork -IG:/Qt5.3/5.3.2-static/include/QtGui -IG:/Qt5.3/5.3.2-static/include/QtCore widget.h -o debug\moc_widget.cpp
debug/moc_mythread.cpp: sys.h \
../../../Qt5.3/5.3.2-static/include/QtGui/QPainter \
../../../Qt5.3/5.3.2-static/include/QtGui/qpainter.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qnamespace.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qglobal.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qconfig.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qfeatures.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsystemdetection.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qprocessordetection.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qcompilerdetection.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qtypeinfo.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qtypetraits.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsysinfo.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qlogging.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qflags.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qbasicatomic.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_bootstrap.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qgenericatomic.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_msvc.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_armv7.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_armv6.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_armv5.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_ia64.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_mips.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_x86.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_cxx11.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_gcc.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_unix.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qglobalstatic.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qmutex.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qnumeric.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qrect.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qmargins.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsize.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qpoint.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qscopedpointer.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpixmap.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpaintdevice.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qwindowdefs.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qobjectdefs.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qobjectdefs_impl.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qwindowdefs_win.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qcolor.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qrgb.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qstringlist.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qalgorithms.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qdatastream.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qiodevice.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qobject.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qstring.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qchar.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qbytearray.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qrefcount.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qarraydata.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qstringbuilder.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qlist.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qiterator.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qcoreevent.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qmetatype.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qvarlengtharray.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qcontainerfwd.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qisenum.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qobject_impl.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qpair.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qregexp.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qstringmatcher.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsharedpointer.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qshareddata.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsharedpointer_impl.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qhash.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qimage.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qtransform.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qmatrix.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpolygon.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qvector.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qregion.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qline.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpainterpath.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qtextoption.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpen.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qbrush.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qfontinfo.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qfont.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qfontmetrics.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QtMath \
../../../Qt5.3/5.3.2-static/include/QtCore/qmath.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QObject \
../../../Qt5.3/5.3.2-static/include/QtCore/QDebug \
../../../Qt5.3/5.3.2-static/include/QtCore/qdebug.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qmap.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qtextstream.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qlocale.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qvariant.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qset.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qcontiguouscache.h \
../../../Qt5.3/5.3.2-static/include/QtGui/QBitmap \
../../../Qt5.3/5.3.2-static/include/QtGui/qbitmap.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QScopedPointer \
../../../Qt5.3/5.3.2-static/include/QtCore/QPointer \
../../../Qt5.3/5.3.2-static/include/QtCore/qpointer.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QList \
../../../Qt5.3/5.3.2-static/include/QtMultimedia/QSound \
../../../Qt5.3/5.3.2-static/include/QtMultimedia/qsound.h \
../../../Qt5.3/5.3.2-static/include/QtMultimedia/qtmultimediadefs.h \
mythread.h
G:\Qt5.3\5.3.2-static\bin\moc.exe $(DEFINES) -D__GNUC__ -DWIN32 -IG:/Qt5.3/5.3.2-static/mkspecs/win32-g++ -I"G:/Qtproject/flappy bird/flappy-bird" -IG:/Qt5.3/5.3.2-static/include -IG:/Qt5.3/5.3.2-static/include/QtOpenGL -IG:/Qt5.3/5.3.2-static/include/QtMultimedia -IG:/Qt5.3/5.3.2-static/include/QtWidgets -IG:/Qt5.3/5.3.2-static/include/QtNetwork -IG:/Qt5.3/5.3.2-static/include/QtGui -IG:/Qt5.3/5.3.2-static/include/QtCore mythread.h -o debug\moc_mythread.cpp
compiler_moc_source_make_all:
compiler_moc_source_clean:
compiler_uic_make_all: ui_widget.h
compiler_uic_clean:
-$(DEL_FILE) ui_widget.h
ui_widget.h: widget.ui
G:\Qt5.3\5.3.2-static\bin\uic.exe widget.ui -o ui_widget.h
compiler_yacc_decl_make_all:
compiler_yacc_decl_clean:
compiler_yacc_impl_make_all:
compiler_yacc_impl_clean:
compiler_lex_make_all:
compiler_lex_clean:
compiler_clean: compiler_rcc_clean compiler_moc_header_clean compiler_uic_clean
debug/stable.h.gch/c: stable.h ../../../Qt5.3/5.3.2-static/include/QtGui/QPainter \
../../../Qt5.3/5.3.2-static/include/QtGui/qpainter.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qnamespace.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qglobal.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qconfig.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qfeatures.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsystemdetection.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qprocessordetection.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qcompilerdetection.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qtypeinfo.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qtypetraits.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsysinfo.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qlogging.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qflags.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qbasicatomic.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_bootstrap.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qgenericatomic.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_msvc.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_armv7.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_armv6.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_armv5.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_ia64.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_mips.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_x86.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_cxx11.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_gcc.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_unix.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qglobalstatic.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qmutex.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qnumeric.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qrect.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qmargins.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsize.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qpoint.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qscopedpointer.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpixmap.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpaintdevice.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qwindowdefs.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qobjectdefs.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qobjectdefs_impl.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qwindowdefs_win.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qcolor.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qrgb.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qstringlist.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qalgorithms.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qdatastream.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qiodevice.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qobject.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qstring.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qchar.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qbytearray.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qrefcount.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qarraydata.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qstringbuilder.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qlist.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qiterator.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qcoreevent.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qmetatype.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qvarlengtharray.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qcontainerfwd.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qisenum.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qobject_impl.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qpair.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qregexp.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qstringmatcher.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsharedpointer.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qshareddata.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsharedpointer_impl.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qhash.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qimage.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qtransform.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qmatrix.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpolygon.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qvector.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qregion.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qline.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpainterpath.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qtextoption.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpen.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qbrush.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qfontinfo.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qfont.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qfontmetrics.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QtMath \
../../../Qt5.3/5.3.2-static/include/QtCore/qmath.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QObject \
../../../Qt5.3/5.3.2-static/include/QtCore/QDebug \
../../../Qt5.3/5.3.2-static/include/QtCore/qdebug.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qmap.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qtextstream.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qlocale.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qvariant.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qset.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qcontiguouscache.h \
../../../Qt5.3/5.3.2-static/include/QtGui/QBitmap \
../../../Qt5.3/5.3.2-static/include/QtGui/qbitmap.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QScopedPointer \
../../../Qt5.3/5.3.2-static/include/QtCore/QPointer \
../../../Qt5.3/5.3.2-static/include/QtCore/qpointer.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QList \
../../../Qt5.3/5.3.2-static/include/QtOpenGL/QGLWidget \
../../../Qt5.3/5.3.2-static/include/QtOpenGL/qgl.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qopengl.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qt_windows.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qopengles2ext.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qopenglext.h \
../../../Qt5.3/5.3.2-static/include/QtWidgets/qwidget.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpalette.h \
../../../Qt5.3/5.3.2-static/include/QtWidgets/qsizepolicy.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qcursor.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qkeysequence.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qevent.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qurl.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qurlquery.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qfile.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qfiledevice.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qvector2d.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qtouchdevice.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpaintengine.h \
../../../Qt5.3/5.3.2-static/include/QtOpenGL/qglcolormap.h \
../../../Qt5.3/5.3.2-static/include/QtOpenGL/qtopenglglobal.h \
../../../Qt5.3/5.3.2-static/include/QtGui/QSurfaceFormat \
../../../Qt5.3/5.3.2-static/include/QtGui/qsurfaceformat.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QMultiMap \
../../../Qt5.3/5.3.2-static/include/QtWidgets/QApplication \
../../../Qt5.3/5.3.2-static/include/QtWidgets/qapplication.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qcoreapplication.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qeventloop.h \
../../../Qt5.3/5.3.2-static/include/QtWidgets/qdesktopwidget.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qguiapplication.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qinputmethod.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QTimer \
../../../Qt5.3/5.3.2-static/include/QtCore/qtimer.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qbasictimer.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QThread \
../../../Qt5.3/5.3.2-static/include/QtCore/qthread.h
@if not exist debug\stable.h.gch mkdir debug\stable.h.gch & if not exist debug\stable.h.gch exit 1
$(CC) -x c-header -c $(CFLAGS) $(INCPATH) -o debug\stable.h.gch\c stable.h
debug/stable.h.gch/c++: stable.h ../../../Qt5.3/5.3.2-static/include/QtGui/QPainter \
../../../Qt5.3/5.3.2-static/include/QtGui/qpainter.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qnamespace.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qglobal.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qconfig.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qfeatures.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsystemdetection.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qprocessordetection.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qcompilerdetection.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qtypeinfo.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qtypetraits.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsysinfo.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qlogging.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qflags.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qbasicatomic.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_bootstrap.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qgenericatomic.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_msvc.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_armv7.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_armv6.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_armv5.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_ia64.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_mips.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_x86.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_cxx11.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_gcc.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_unix.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qglobalstatic.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qmutex.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qnumeric.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qrect.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qmargins.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsize.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qpoint.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qscopedpointer.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpixmap.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpaintdevice.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qwindowdefs.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qobjectdefs.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qobjectdefs_impl.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qwindowdefs_win.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qcolor.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qrgb.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qstringlist.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qalgorithms.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qdatastream.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qiodevice.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qobject.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qstring.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qchar.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qbytearray.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qrefcount.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qarraydata.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qstringbuilder.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qlist.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qiterator.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qcoreevent.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qmetatype.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qvarlengtharray.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qcontainerfwd.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qisenum.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qobject_impl.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qpair.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qregexp.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qstringmatcher.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsharedpointer.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qshareddata.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsharedpointer_impl.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qhash.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qimage.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qtransform.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qmatrix.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpolygon.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qvector.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qregion.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qline.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpainterpath.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qtextoption.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpen.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qbrush.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qfontinfo.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qfont.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qfontmetrics.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QtMath \
../../../Qt5.3/5.3.2-static/include/QtCore/qmath.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QObject \
../../../Qt5.3/5.3.2-static/include/QtCore/QDebug \
../../../Qt5.3/5.3.2-static/include/QtCore/qdebug.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qmap.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qtextstream.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qlocale.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qvariant.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qset.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qcontiguouscache.h \
../../../Qt5.3/5.3.2-static/include/QtGui/QBitmap \
../../../Qt5.3/5.3.2-static/include/QtGui/qbitmap.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QScopedPointer \
../../../Qt5.3/5.3.2-static/include/QtCore/QPointer \
../../../Qt5.3/5.3.2-static/include/QtCore/qpointer.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QList \
../../../Qt5.3/5.3.2-static/include/QtOpenGL/QGLWidget \
../../../Qt5.3/5.3.2-static/include/QtOpenGL/qgl.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qopengl.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qt_windows.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qopengles2ext.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qopenglext.h \
../../../Qt5.3/5.3.2-static/include/QtWidgets/qwidget.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpalette.h \
../../../Qt5.3/5.3.2-static/include/QtWidgets/qsizepolicy.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qcursor.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qkeysequence.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qevent.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qurl.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qurlquery.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qfile.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qfiledevice.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qvector2d.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qtouchdevice.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpaintengine.h \
../../../Qt5.3/5.3.2-static/include/QtOpenGL/qglcolormap.h \
../../../Qt5.3/5.3.2-static/include/QtOpenGL/qtopenglglobal.h \
../../../Qt5.3/5.3.2-static/include/QtGui/QSurfaceFormat \
../../../Qt5.3/5.3.2-static/include/QtGui/qsurfaceformat.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QMultiMap \
../../../Qt5.3/5.3.2-static/include/QtWidgets/QApplication \
../../../Qt5.3/5.3.2-static/include/QtWidgets/qapplication.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qcoreapplication.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qeventloop.h \
../../../Qt5.3/5.3.2-static/include/QtWidgets/qdesktopwidget.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qguiapplication.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qinputmethod.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QTimer \
../../../Qt5.3/5.3.2-static/include/QtCore/qtimer.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qbasictimer.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QThread \
../../../Qt5.3/5.3.2-static/include/QtCore/qthread.h
@if not exist debug\stable.h.gch mkdir debug\stable.h.gch & if not exist debug\stable.h.gch exit 1
$(CXX) -x c++-header -c $(CXXFLAGS) $(INCPATH) -o debug\stable.h.gch\c++ stable.h
####### Compile
debug/main.o: main.cpp widget.h \
myobject.h \
sys.h \
../../../Qt5.3/5.3.2-static/include/QtGui/QPainter \
../../../Qt5.3/5.3.2-static/include/QtGui/qpainter.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qnamespace.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qglobal.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qconfig.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qfeatures.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsystemdetection.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qprocessordetection.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qcompilerdetection.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qtypeinfo.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qtypetraits.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsysinfo.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qlogging.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qflags.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qbasicatomic.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_bootstrap.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qgenericatomic.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_msvc.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_armv7.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_armv6.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_armv5.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_ia64.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_mips.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_x86.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_cxx11.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_gcc.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_unix.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qglobalstatic.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qmutex.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qnumeric.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qrect.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qmargins.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsize.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qpoint.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qscopedpointer.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpixmap.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpaintdevice.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qwindowdefs.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qobjectdefs.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qobjectdefs_impl.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qwindowdefs_win.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qcolor.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qrgb.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qstringlist.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qalgorithms.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qdatastream.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qiodevice.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qobject.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qstring.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qchar.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qbytearray.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qrefcount.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qarraydata.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qstringbuilder.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qlist.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qiterator.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qcoreevent.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qmetatype.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qvarlengtharray.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qcontainerfwd.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qisenum.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qobject_impl.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qpair.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qregexp.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qstringmatcher.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsharedpointer.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qshareddata.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsharedpointer_impl.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qhash.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qimage.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qtransform.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qmatrix.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpolygon.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qvector.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qregion.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qline.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpainterpath.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qtextoption.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpen.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qbrush.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qfontinfo.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qfont.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qfontmetrics.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QtMath \
../../../Qt5.3/5.3.2-static/include/QtCore/qmath.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QObject \
../../../Qt5.3/5.3.2-static/include/QtCore/QDebug \
../../../Qt5.3/5.3.2-static/include/QtCore/qdebug.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qmap.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qtextstream.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qlocale.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qvariant.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qset.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qcontiguouscache.h \
../../../Qt5.3/5.3.2-static/include/QtGui/QBitmap \
../../../Qt5.3/5.3.2-static/include/QtGui/qbitmap.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QScopedPointer \
../../../Qt5.3/5.3.2-static/include/QtCore/QPointer \
../../../Qt5.3/5.3.2-static/include/QtCore/qpointer.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QList \
../../../Qt5.3/5.3.2-static/include/QtMultimedia/QSound \
../../../Qt5.3/5.3.2-static/include/QtMultimedia/qsound.h \
../../../Qt5.3/5.3.2-static/include/QtMultimedia/qtmultimediadefs.h \
backgroud.h \
bird.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QQueue \
../../../Qt5.3/5.3.2-static/include/QtCore/qqueue.h \
tools.h \
pipe.h \
score.h \
scoreboard.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QTimer \
../../../Qt5.3/5.3.2-static/include/QtCore/qtimer.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qbasictimer.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QThread \
../../../Qt5.3/5.3.2-static/include/QtCore/qthread.h \
../../../Qt5.3/5.3.2-static/include/QtOpenGL/QGLWidget \
../../../Qt5.3/5.3.2-static/include/QtOpenGL/qgl.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qopengl.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qt_windows.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qopengles2ext.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qopenglext.h \
../../../Qt5.3/5.3.2-static/include/QtWidgets/qwidget.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpalette.h \
../../../Qt5.3/5.3.2-static/include/QtWidgets/qsizepolicy.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qcursor.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qkeysequence.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qevent.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qurl.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qurlquery.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qfile.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qfiledevice.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qvector2d.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qtouchdevice.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpaintengine.h \
../../../Qt5.3/5.3.2-static/include/QtOpenGL/qglcolormap.h \
../../../Qt5.3/5.3.2-static/include/QtOpenGL/qtopenglglobal.h \
../../../Qt5.3/5.3.2-static/include/QtGui/QSurfaceFormat \
../../../Qt5.3/5.3.2-static/include/QtGui/qsurfaceformat.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QMultiMap \
../../../Qt5.3/5.3.2-static/include/QtWidgets/QApplication \
../../../Qt5.3/5.3.2-static/include/QtWidgets/qapplication.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qcoreapplication.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qeventloop.h \
../../../Qt5.3/5.3.2-static/include/QtWidgets/qdesktopwidget.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qguiapplication.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qinputmethod.h \
../../../Qt5.3/5.3.2-static/include/QtWidgets/QLabel \
../../../Qt5.3/5.3.2-static/include/QtWidgets/qlabel.h \
../../../Qt5.3/5.3.2-static/include/QtWidgets/qframe.h \
debug/stable.h.gch/c++
$(CXX) -c -include debug\stable.h $(CXXFLAGS) $(INCPATH) -o debug\main.o main.cpp
debug/widget.o: widget.cpp widget.h \
myobject.h \
sys.h \
../../../Qt5.3/5.3.2-static/include/QtGui/QPainter \
../../../Qt5.3/5.3.2-static/include/QtGui/qpainter.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qnamespace.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qglobal.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qconfig.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qfeatures.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsystemdetection.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qprocessordetection.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qcompilerdetection.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qtypeinfo.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qtypetraits.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsysinfo.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qlogging.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qflags.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qbasicatomic.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_bootstrap.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qgenericatomic.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_msvc.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_armv7.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_armv6.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_armv5.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_ia64.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_mips.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_x86.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_cxx11.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_gcc.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qatomic_unix.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qglobalstatic.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qmutex.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qnumeric.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qrect.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qmargins.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsize.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qpoint.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qscopedpointer.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpixmap.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpaintdevice.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qwindowdefs.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qobjectdefs.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qobjectdefs_impl.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qwindowdefs_win.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qcolor.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qrgb.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qstringlist.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qalgorithms.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qdatastream.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qiodevice.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qobject.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qstring.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qchar.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qbytearray.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qrefcount.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qarraydata.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qstringbuilder.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qlist.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qiterator.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qcoreevent.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qmetatype.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qvarlengtharray.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qcontainerfwd.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qisenum.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qobject_impl.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qpair.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qregexp.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qstringmatcher.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsharedpointer.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qshareddata.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qsharedpointer_impl.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qhash.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qimage.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qtransform.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qmatrix.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpolygon.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qvector.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qregion.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qline.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpainterpath.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qtextoption.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpen.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qbrush.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qfontinfo.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qfont.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qfontmetrics.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QtMath \
../../../Qt5.3/5.3.2-static/include/QtCore/qmath.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QObject \
../../../Qt5.3/5.3.2-static/include/QtCore/QDebug \
../../../Qt5.3/5.3.2-static/include/QtCore/qdebug.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qmap.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qtextstream.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qlocale.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qvariant.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qset.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qcontiguouscache.h \
../../../Qt5.3/5.3.2-static/include/QtGui/QBitmap \
../../../Qt5.3/5.3.2-static/include/QtGui/qbitmap.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QScopedPointer \
../../../Qt5.3/5.3.2-static/include/QtCore/QPointer \
../../../Qt5.3/5.3.2-static/include/QtCore/qpointer.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QList \
../../../Qt5.3/5.3.2-static/include/QtMultimedia/QSound \
../../../Qt5.3/5.3.2-static/include/QtMultimedia/qsound.h \
../../../Qt5.3/5.3.2-static/include/QtMultimedia/qtmultimediadefs.h \
backgroud.h \
bird.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QQueue \
../../../Qt5.3/5.3.2-static/include/QtCore/qqueue.h \
tools.h \
pipe.h \
score.h \
scoreboard.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QTimer \
../../../Qt5.3/5.3.2-static/include/QtCore/qtimer.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qbasictimer.h \
../../../Qt5.3/5.3.2-static/include/QtCore/QThread \
../../../Qt5.3/5.3.2-static/include/QtCore/qthread.h \
../../../Qt5.3/5.3.2-static/include/QtOpenGL/QGLWidget \
../../../Qt5.3/5.3.2-static/include/QtOpenGL/qgl.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qopengl.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qt_windows.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qopengles2ext.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qopenglext.h \
../../../Qt5.3/5.3.2-static/include/QtWidgets/qwidget.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qpalette.h \
../../../Qt5.3/5.3.2-static/include/QtWidgets/qsizepolicy.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qcursor.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qkeysequence.h \
../../../Qt5.3/5.3.2-static/include/QtGui/qevent.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qurl.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qurlquery.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qfile.h \
../../../Qt5.3/5.3.2-static/include/QtCore/qfiledevice.h \