-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.Debug
2300 lines (2238 loc) · 163 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: QYoutubeDownloader
# Generated by qmake (3.0) (Qt 5.4.0)
# Project: QYoutubeDownloader.pro
# Template: app
#############################################################################
MAKEFILE = Makefile.Debug
####### Compiler, tools and options
CC = gcc
CXX = g++
DEFINES = -DUNICODE -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_OPENGL_ES_2 -DQT_OPENGL_ES_2_ANGLE -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"D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\include" -I"D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\include\QtWidgets" -I"D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\include\QtGui" -I"D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\include\QtANGLE" -I"D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\include\QtNetwork" -I"D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\include\QtCore" -I"build\tmp" -I"build\ui" -I"D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\win32-g++"
LINKER = g++
LFLAGS = -Wl,-subsystem,windows -mthreads
LIBS = -lmingw32 -LD:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/lib -lqtmaind -LE:\Qt\Build\openssl\openssl-1.0.1j-x64-mingw492r0-sjlj\lib -LE:\Qt\Build\icu\icu4c-54.1-x64-mingw492r0-sjlj\lib -lshell32 -lQt5Widgetsd -lQt5Guid -lQt5Networkd -lQt5Cored -llibEGLd -llibGLESv2d -lgdi32 -luser32
QMAKE = D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\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 = build\tmp
####### Files
SOURCES = main.cpp \
mainwindow.cpp \
dialognewdownload.cpp \
settingswindow.cpp \
queueitem.cpp \
settings.cpp \
sharedmemory.cpp \
aboutwindow.cpp \
osd.cpp build\rcc\qrc_style.cpp \
build\tmp\moc_mainwindow.cpp \
build\tmp\moc_dialognewdownload.cpp \
build\tmp\moc_settingswindow.cpp \
build\tmp\moc_sharedmemory.cpp \
build\tmp\moc_aboutwindow.cpp \
build\tmp\moc_osd.cpp
OBJECTS = build/tmp/main.o \
build/tmp/mainwindow.o \
build/tmp/dialognewdownload.o \
build/tmp/settingswindow.o \
build/tmp/queueitem.o \
build/tmp/settings.o \
build/tmp/sharedmemory.o \
build/tmp/aboutwindow.o \
build/tmp/osd.o \
build/tmp/qrc_style.o \
build/tmp/moc_mainwindow.o \
build/tmp/moc_dialognewdownload.o \
build/tmp/moc_settingswindow.o \
build/tmp/moc_sharedmemory.o \
build/tmp/moc_aboutwindow.o \
build/tmp/moc_osd.o
DIST = mainwindow.h \
dialognewdownload.h \
settingswindow.h \
queueitem.h \
settings.h \
sharedmemory.h \
aboutwindow.h \
osd.h main.cpp \
mainwindow.cpp \
dialognewdownload.cpp \
settingswindow.cpp \
queueitem.cpp \
settings.cpp \
sharedmemory.cpp \
aboutwindow.cpp \
osd.cpp
QMAKE_TARGET = QYoutubeDownloader
DESTDIR = build\ #avoid trailing-slash linebreak
TARGET = QYoutubeDownloader.exe
DESTDIR_TARGET = build\QYoutubeDownloader.exe
####### Implicit rules
.SUFFIXES: .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:
$(CC) -c $(CFLAGS) $(INCPATH) -o $@ $<
####### Build rules
first: all
all: Makefile.Debug $(DESTDIR_TARGET)
$(DESTDIR_TARGET): build/ui/ui_mainwindow.h build/ui/ui_dialognewdownload.h build/ui/ui_settingswindow.h build/ui/ui_aboutwindow.h build/ui/ui_osd.h $(OBJECTS)
$(LINKER) $(LFLAGS) -o $(DESTDIR_TARGET) object_script.QYoutubeDownloader.Debug $(LIBS)
-$(COPY_FILE) "$(DESTDIR_TARGET)" build\dll
qmake: FORCE
@$(QMAKE) -spec win32-g++ CONFIG+=release -o Makefile.Debug QYoutubeDownloader.pro
qmake_all: FORCE
dist:
$(ZIP) QYoutubeDownloader.zip $(SOURCES) $(DIST) QYoutubeDownloader.pro D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\features\spec_pre.prf D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\qdevice.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\features\device_config.prf D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\common\shell-win32.conf D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\qconfig.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_axbase.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_axbase_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_axcontainer.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_axcontainer_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_axserver.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_axserver_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_bluetooth.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_bluetooth_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_bootstrap_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_clucene_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_concurrent.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_concurrent_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_core.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_core_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_declarative.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_declarative_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_designer.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_designer_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_designercomponents_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_enginio.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_enginio_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_gui.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_gui_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_help.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_help_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_location.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_location_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_multimedia.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_multimedia_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_multimediawidgets.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_multimediawidgets_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_network.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_network_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_nfc.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_nfc_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_opengl.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_opengl_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_openglextensions.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_openglextensions_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_platformsupport_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_positioning.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_positioning_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_printsupport.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_printsupport_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_qml.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_qml_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_qmldevtools_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_qmltest.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_qmltest_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_qtmultimediaquicktools_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_quick.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_quick_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_quickparticles_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_quickwidgets.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_quickwidgets_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_script.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_script_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_scripttools.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_scripttools_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_sensors.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_sensors_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_serialport.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_serialport_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_sql.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_sql_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_svg.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_svg_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_testlib.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_testlib_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_uitools.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_uitools_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_webchannel.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_webchannel_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_webkit.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_webkit_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_webkitwidgets.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_webkitwidgets_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_websockets.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_websockets_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_widgets.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_widgets_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_winextras.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_winextras_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_xml.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_xml_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_xmlpatterns.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\modules\qt_lib_xmlpatterns_private.pri D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\features\qt_functions.prf D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\features\qt_config.prf D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\features\win32\qt_config.prf D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\win32-g++\qmake.conf D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\features\spec_post.prf D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\features\exclusive_builds.prf D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\features\default_pre.prf D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\features\win32\default_pre.prf D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\features\resolve_config.prf D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\features\exclusive_builds_post.prf D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\features\default_post.prf D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\features\build_pass.prf D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\features\c++11.prf D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\features\win32\rtti.prf D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\features\precompile_header.prf D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\features\warn_on.prf D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\features\qt.prf D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\features\resources.prf D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\features\moc.prf D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\features\win32\opengl.prf D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\features\uic.prf D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\features\win32\windows.prf D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\features\testcase_targets.prf D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\features\exceptions.prf D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\features\yacc.prf D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\mkspecs\features\lex.prf QYoutubeDownloader.pro style.qrc D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/lib/qtmaind.prl D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/lib/Qt5Cored.prl D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/lib/Qt5Widgetsd.prl D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/lib/Qt5Guid.prl D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/lib/Qt5Networkd.prl D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/lib/libEGLd.prl D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/lib/libGLESv2d.prl NO_PCH_SOURCES RESOURCES HEADERS SOURCES OBJECTIVE_SOURCES FORMS YACCSOURCES YACCSOURCES LEXSOURCES
clean: compiler_clean
-$(DEL_FILE) build\tmp\main.o build\tmp\mainwindow.o build\tmp\dialognewdownload.o build\tmp\settingswindow.o build\tmp\queueitem.o build\tmp\settings.o build\tmp\sharedmemory.o build\tmp\aboutwindow.o build\tmp\osd.o build\tmp\qrc_style.o build\tmp\moc_mainwindow.o build\tmp\moc_dialognewdownload.o build\tmp\moc_settingswindow.o build\tmp\moc_sharedmemory.o build\tmp\moc_aboutwindow.o build\tmp\moc_osd.o
distclean: clean
-$(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: build/rcc/qrc_style.cpp
compiler_rcc_clean:
-$(DEL_FILE) build\rcc\qrc_style.cpp
build/rcc/qrc_style.cpp: style.qrc \
rc/Vsepartoolbar.png \
rc/up_arrow_disabled.png \
rc/close.png \
rc/down_arrow.png \
rc/transparent.png \
rc/branch_closed-on.png \
rc/Hsepartoolbar.png \
rc/branch_open-on.png \
rc/right_arrow_disabled.png \
rc/undock.png \
rc/Hmovetoolbar.png \
rc/up_arrow.png \
rc/branch_open.png \
rc/left_arrow_disabled.png \
rc/stylesheet-vline.png \
rc/branch_closed.png \
rc/left_arrow.png \
rc/right_arrow.png \
rc/checkbox.png \
rc/stylesheet-branch-end.png \
rc/checkbox_indeterminate.png \
rc/stylesheet-branch-more.png \
rc/Vmovetoolbar.png \
rc/down_arrow_disabled.png \
rc/sizegrip.png \
rc/dialog-cancel.png \
style.qss
D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\bin\rcc.exe -name style style.qrc -o build\rcc\qrc_style.cpp
compiler_moc_header_make_all: build/tmp/moc_mainwindow.cpp build/tmp/moc_dialognewdownload.cpp build/tmp/moc_settingswindow.cpp build/tmp/moc_sharedmemory.cpp build/tmp/moc_aboutwindow.cpp build/tmp/moc_osd.cpp
compiler_moc_header_clean:
-$(DEL_FILE) build\tmp\moc_mainwindow.cpp build\tmp\moc_dialognewdownload.cpp build\tmp\moc_settingswindow.cpp build\tmp\moc_sharedmemory.cpp build\tmp\moc_aboutwindow.cpp build\tmp\moc_osd.cpp
build/tmp/moc_mainwindow.cpp: D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/QMainWindow \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qmainwindow.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qwidget.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qwindowdefs.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qglobal.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qconfig.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qfeatures.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsystemdetection.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qprocessordetection.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qcompilerdetection.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qtypeinfo.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qtypetraits.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsysinfo.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qlogging.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qflags.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qbasicatomic.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_bootstrap.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qgenericatomic.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_msvc.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_armv7.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_armv6.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_armv5.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_ia64.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_mips.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_x86.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_cxx11.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_gcc.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_unix.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qglobalstatic.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qmutex.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qnumeric.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qobjectdefs.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qnamespace.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qobjectdefs_impl.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qwindowdefs_win.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qobject.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qstring.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qchar.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qbytearray.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qrefcount.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qarraydata.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qstringbuilder.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qlist.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qalgorithms.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qiterator.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qbytearraylist.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qcoreevent.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qscopedpointer.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qmetatype.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qvarlengtharray.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qcontainerfwd.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qisenum.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qobject_impl.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qmargins.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpaintdevice.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qrect.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsize.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qpoint.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpalette.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qcolor.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qrgb.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qstringlist.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qdatastream.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qiodevice.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qpair.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qregexp.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qstringmatcher.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qbrush.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qvector.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qmatrix.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpolygon.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qregion.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qline.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qtransform.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpainterpath.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qimage.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpixelformat.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpixmap.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsharedpointer.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qshareddata.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qhash.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsharedpointer_impl.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qfont.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qfontmetrics.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qfontinfo.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qsizepolicy.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qcursor.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qkeysequence.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qevent.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qvariant.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qmap.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qdebug.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qtextstream.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qlocale.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qset.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qcontiguouscache.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qurl.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qurlquery.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qfile.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qfiledevice.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qvector2d.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qtouchdevice.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qtabwidget.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qicon.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/QProcess \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qprocess.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/QTextStream \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/QScrollBar \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qscrollbar.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qabstractslider.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/QFileDialog \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qfiledialog.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qdir.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qfileinfo.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qdialog.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/QFileInfo \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/QListWidgetItem \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qlistwidget.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qlistview.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qabstractitemview.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qabstractscrollarea.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qframe.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qabstractitemmodel.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qitemselectionmodel.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qabstractitemdelegate.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qstyleoption.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qabstractspinbox.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qvalidator.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qregularexpression.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qslider.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qstyle.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qtabbar.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qrubberband.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/QDebug \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/QMessageBox \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qmessagebox.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/QShortcut \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qshortcut.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtConcurrent/QtConcurrentRun \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtConcurrent/qtconcurrentrun.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtConcurrent/qtconcurrentcompilertest.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtConcurrent/qtconcurrent_global.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtConcurrent/qtconcurrentrunbase.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qfuture.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qfutureinterface.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qrunnable.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qexception.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qresultstore.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qthreadpool.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qthread.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtConcurrent/qtconcurrentstoredfunctioncall.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/QClipboard \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qclipboard.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/QMimeData \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qmimedata.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/QFile \
settingswindow.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/QDialog \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/QAbstractButton \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qabstractbutton.h \
settings.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/QSettings \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsettings.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/QSize \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/QPoint \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/QDir \
queueitem.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/QString \
dialognewdownload.h \
aboutwindow.h \
osd.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/QMenu \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qmenu.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qaction.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qactiongroup.h \
mainwindow.h
D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\bin\moc.exe $(DEFINES) -D__GNUC__ -DWIN32 -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/mkspecs/win32-g++ -I"F:/important/Programming/Multiplayer/2015-02-02 - QYoutubeDownloader/QYoutubeDownloader" -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtANGLE -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtNetwork -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore mainwindow.h -o build\tmp\moc_mainwindow.cpp
build/tmp/moc_dialognewdownload.cpp: D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/QDialog \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qdialog.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qwidget.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qwindowdefs.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qglobal.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qconfig.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qfeatures.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsystemdetection.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qprocessordetection.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qcompilerdetection.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qtypeinfo.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qtypetraits.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsysinfo.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qlogging.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qflags.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qbasicatomic.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_bootstrap.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qgenericatomic.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_msvc.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_armv7.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_armv6.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_armv5.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_ia64.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_mips.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_x86.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_cxx11.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_gcc.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_unix.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qglobalstatic.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qmutex.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qnumeric.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qobjectdefs.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qnamespace.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qobjectdefs_impl.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qwindowdefs_win.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qobject.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qstring.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qchar.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qbytearray.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qrefcount.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qarraydata.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qstringbuilder.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qlist.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qalgorithms.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qiterator.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qbytearraylist.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qcoreevent.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qscopedpointer.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qmetatype.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qvarlengtharray.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qcontainerfwd.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qisenum.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qobject_impl.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qmargins.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpaintdevice.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qrect.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsize.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qpoint.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpalette.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qcolor.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qrgb.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qstringlist.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qdatastream.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qiodevice.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qpair.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qregexp.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qstringmatcher.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qbrush.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qvector.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qmatrix.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpolygon.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qregion.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qline.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qtransform.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpainterpath.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qimage.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpixelformat.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpixmap.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsharedpointer.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qshareddata.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qhash.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsharedpointer_impl.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qfont.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qfontmetrics.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qfontinfo.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qsizepolicy.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qcursor.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qkeysequence.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qevent.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qvariant.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qmap.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qdebug.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qtextstream.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qlocale.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qset.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qcontiguouscache.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qurl.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qurlquery.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qfile.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qfiledevice.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qvector2d.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qtouchdevice.h \
dialognewdownload.h
D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\bin\moc.exe $(DEFINES) -D__GNUC__ -DWIN32 -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/mkspecs/win32-g++ -I"F:/important/Programming/Multiplayer/2015-02-02 - QYoutubeDownloader/QYoutubeDownloader" -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtANGLE -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtNetwork -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore dialognewdownload.h -o build\tmp\moc_dialognewdownload.cpp
build/tmp/moc_settingswindow.cpp: D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/QDialog \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qdialog.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qwidget.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qwindowdefs.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qglobal.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qconfig.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qfeatures.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsystemdetection.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qprocessordetection.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qcompilerdetection.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qtypeinfo.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qtypetraits.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsysinfo.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qlogging.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qflags.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qbasicatomic.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_bootstrap.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qgenericatomic.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_msvc.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_armv7.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_armv6.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_armv5.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_ia64.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_mips.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_x86.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_cxx11.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_gcc.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_unix.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qglobalstatic.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qmutex.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qnumeric.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qobjectdefs.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qnamespace.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qobjectdefs_impl.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qwindowdefs_win.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qobject.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qstring.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qchar.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qbytearray.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qrefcount.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qarraydata.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qstringbuilder.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qlist.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qalgorithms.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qiterator.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qbytearraylist.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qcoreevent.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qscopedpointer.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qmetatype.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qvarlengtharray.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qcontainerfwd.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qisenum.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qobject_impl.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qmargins.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpaintdevice.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qrect.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsize.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qpoint.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpalette.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qcolor.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qrgb.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qstringlist.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qdatastream.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qiodevice.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qpair.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qregexp.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qstringmatcher.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qbrush.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qvector.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qmatrix.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpolygon.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qregion.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qline.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qtransform.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpainterpath.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qimage.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpixelformat.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpixmap.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsharedpointer.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qshareddata.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qhash.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsharedpointer_impl.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qfont.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qfontmetrics.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qfontinfo.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qsizepolicy.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qcursor.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qkeysequence.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qevent.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qvariant.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qmap.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qdebug.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qtextstream.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qlocale.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qset.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qcontiguouscache.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qurl.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qurlquery.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qfile.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qfiledevice.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qvector2d.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qtouchdevice.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/QAbstractButton \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qabstractbutton.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qicon.h \
settingswindow.h
D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\bin\moc.exe $(DEFINES) -D__GNUC__ -DWIN32 -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/mkspecs/win32-g++ -I"F:/important/Programming/Multiplayer/2015-02-02 - QYoutubeDownloader/QYoutubeDownloader" -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtANGLE -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtNetwork -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore settingswindow.h -o build\tmp\moc_settingswindow.cpp
build/tmp/moc_sharedmemory.cpp: D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/QSharedMemory \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsharedmemory.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qobject.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qobjectdefs.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qnamespace.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qglobal.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qconfig.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qfeatures.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsystemdetection.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qprocessordetection.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qcompilerdetection.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qtypeinfo.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qtypetraits.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsysinfo.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qlogging.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qflags.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qbasicatomic.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_bootstrap.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qgenericatomic.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_msvc.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_armv7.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_armv6.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_armv5.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_ia64.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_mips.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_x86.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_cxx11.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_gcc.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_unix.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qglobalstatic.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qmutex.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qnumeric.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qobjectdefs_impl.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qstring.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qchar.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qbytearray.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qrefcount.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qarraydata.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qstringbuilder.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qlist.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qalgorithms.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qiterator.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qbytearraylist.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qcoreevent.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qscopedpointer.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qmetatype.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qvarlengtharray.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qcontainerfwd.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qisenum.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qobject_impl.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtNetwork/QLocalSocket \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtNetwork/qlocalsocket.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qiodevice.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtNetwork/qabstractsocket.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qdebug.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qhash.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qpair.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qmap.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qtextstream.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qlocale.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qvariant.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qstringlist.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qdatastream.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qregexp.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qstringmatcher.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qshareddata.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qvector.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qpoint.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qset.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qcontiguouscache.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtNetwork/QLocalServer \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtNetwork/qlocalserver.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/QBuffer \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qbuffer.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/QDebug \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/QString \
mainwindow.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/QMainWindow \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qmainwindow.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qwidget.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qwindowdefs.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qwindowdefs_win.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qmargins.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpaintdevice.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qrect.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsize.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpalette.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qcolor.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qrgb.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qbrush.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qmatrix.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpolygon.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qregion.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qline.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qtransform.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpainterpath.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qimage.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpixelformat.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpixmap.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsharedpointer.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsharedpointer_impl.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qfont.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qfontmetrics.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qfontinfo.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qsizepolicy.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qcursor.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qkeysequence.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qevent.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qurl.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qurlquery.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qfile.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qfiledevice.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qvector2d.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qtouchdevice.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qtabwidget.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qicon.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/QProcess \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qprocess.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/QTextStream \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/QScrollBar \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qscrollbar.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qabstractslider.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/QFileDialog \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qfiledialog.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qdir.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qfileinfo.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qdialog.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/QFileInfo \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/QListWidgetItem \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qlistwidget.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qlistview.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qabstractitemview.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qabstractscrollarea.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qframe.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qabstractitemmodel.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qitemselectionmodel.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qabstractitemdelegate.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qstyleoption.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qabstractspinbox.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qvalidator.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qregularexpression.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qslider.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qstyle.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qtabbar.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qrubberband.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/QMessageBox \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qmessagebox.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/QShortcut \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qshortcut.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtConcurrent/QtConcurrentRun \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtConcurrent/qtconcurrentrun.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtConcurrent/qtconcurrentcompilertest.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtConcurrent/qtconcurrent_global.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtConcurrent/qtconcurrentrunbase.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qfuture.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qfutureinterface.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qrunnable.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qexception.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qresultstore.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qthreadpool.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qthread.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtConcurrent/qtconcurrentstoredfunctioncall.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/QClipboard \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qclipboard.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/QMimeData \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qmimedata.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/QFile \
settingswindow.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/QDialog \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/QAbstractButton \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qabstractbutton.h \
settings.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/QSettings \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsettings.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/QSize \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/QPoint \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/QDir \
queueitem.h \
dialognewdownload.h \
aboutwindow.h \
osd.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/QMenu \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qmenu.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qaction.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qactiongroup.h \
sharedmemory.h
D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\bin\moc.exe $(DEFINES) -D__GNUC__ -DWIN32 -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/mkspecs/win32-g++ -I"F:/important/Programming/Multiplayer/2015-02-02 - QYoutubeDownloader/QYoutubeDownloader" -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtANGLE -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtNetwork -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore sharedmemory.h -o build\tmp\moc_sharedmemory.cpp
build/tmp/moc_aboutwindow.cpp: D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/QDialog \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qdialog.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qwidget.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qwindowdefs.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qglobal.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qconfig.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qfeatures.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsystemdetection.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qprocessordetection.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qcompilerdetection.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qtypeinfo.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qtypetraits.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsysinfo.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qlogging.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qflags.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qbasicatomic.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_bootstrap.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qgenericatomic.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_msvc.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_armv7.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_armv6.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_armv5.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_ia64.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_mips.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_x86.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_cxx11.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_gcc.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_unix.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qglobalstatic.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qmutex.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qnumeric.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qobjectdefs.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qnamespace.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qobjectdefs_impl.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qwindowdefs_win.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qobject.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qstring.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qchar.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qbytearray.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qrefcount.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qarraydata.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qstringbuilder.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qlist.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qalgorithms.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qiterator.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qbytearraylist.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qcoreevent.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qscopedpointer.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qmetatype.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qvarlengtharray.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qcontainerfwd.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qisenum.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qobject_impl.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qmargins.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpaintdevice.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qrect.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsize.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qpoint.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpalette.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qcolor.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qrgb.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qstringlist.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qdatastream.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qiodevice.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qpair.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qregexp.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qstringmatcher.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qbrush.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qvector.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qmatrix.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpolygon.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qregion.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qline.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qtransform.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpainterpath.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qimage.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpixelformat.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpixmap.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsharedpointer.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qshareddata.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qhash.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsharedpointer_impl.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qfont.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qfontmetrics.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qfontinfo.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qsizepolicy.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qcursor.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qkeysequence.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qevent.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qvariant.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qmap.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qdebug.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qtextstream.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qlocale.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qset.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qcontiguouscache.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qurl.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qurlquery.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qfile.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qfiledevice.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qvector2d.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qtouchdevice.h \
aboutwindow.h
D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\bin\moc.exe $(DEFINES) -D__GNUC__ -DWIN32 -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/mkspecs/win32-g++ -I"F:/important/Programming/Multiplayer/2015-02-02 - QYoutubeDownloader/QYoutubeDownloader" -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtANGLE -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtNetwork -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore aboutwindow.h -o build\tmp\moc_aboutwindow.cpp
build/tmp/moc_osd.cpp: D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/QDialog \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qdialog.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qwidget.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qwindowdefs.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qglobal.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qconfig.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qfeatures.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsystemdetection.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qprocessordetection.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qcompilerdetection.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qtypeinfo.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qtypetraits.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsysinfo.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qlogging.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qflags.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qbasicatomic.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_bootstrap.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qgenericatomic.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_msvc.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_armv7.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_armv6.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_armv5.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_ia64.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_mips.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_x86.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_cxx11.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_gcc.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qatomic_unix.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qglobalstatic.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qmutex.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qnumeric.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qobjectdefs.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qnamespace.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qobjectdefs_impl.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qwindowdefs_win.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qobject.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qstring.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qchar.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qbytearray.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qrefcount.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qarraydata.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qstringbuilder.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qlist.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qalgorithms.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qiterator.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qbytearraylist.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qcoreevent.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qscopedpointer.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qmetatype.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qvarlengtharray.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qcontainerfwd.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qisenum.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qobject_impl.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qmargins.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpaintdevice.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qrect.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsize.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qpoint.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpalette.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qcolor.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qrgb.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qstringlist.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qdatastream.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qiodevice.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qpair.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qregexp.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qstringmatcher.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qbrush.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qvector.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qmatrix.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpolygon.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qregion.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qline.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qtransform.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpainterpath.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qimage.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpixelformat.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qpixmap.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsharedpointer.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qshareddata.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qhash.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qsharedpointer_impl.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qfont.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qfontmetrics.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qfontinfo.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qsizepolicy.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qcursor.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qkeysequence.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qevent.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qvariant.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qmap.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qdebug.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qtextstream.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qlocale.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qset.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qcontiguouscache.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qurl.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qurlquery.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qfile.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore/qfiledevice.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qvector2d.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qtouchdevice.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/QMenu \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qmenu.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui/qicon.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qaction.h \
D:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets/qactiongroup.h \
osd.h
D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\bin\moc.exe $(DEFINES) -D__GNUC__ -DWIN32 -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/mkspecs/win32-g++ -I"F:/important/Programming/Multiplayer/2015-02-02 - QYoutubeDownloader/QYoutubeDownloader" -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtWidgets -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtGui -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtANGLE -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtNetwork -ID:/x64/Qt/qt-5.4.0-x64-mingw492r0-sjlj/include/QtCore osd.h -o build\tmp\moc_osd.cpp
compiler_moc_source_make_all:
compiler_moc_source_clean:
compiler_uic_make_all: build/ui/ui_mainwindow.h build/ui/ui_dialognewdownload.h build/ui/ui_settingswindow.h build/ui/ui_aboutwindow.h build/ui/ui_osd.h
compiler_uic_clean:
-$(DEL_FILE) build\ui\ui_mainwindow.h build\ui\ui_dialognewdownload.h build\ui\ui_settingswindow.h build\ui\ui_aboutwindow.h build\ui\ui_osd.h
build/ui/ui_mainwindow.h: mainwindow.ui
D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\bin\uic.exe mainwindow.ui -o build\ui\ui_mainwindow.h
build/ui/ui_dialognewdownload.h: dialognewdownload.ui
D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\bin\uic.exe dialognewdownload.ui -o build\ui\ui_dialognewdownload.h
build/ui/ui_settingswindow.h: settingswindow.ui
D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\bin\uic.exe settingswindow.ui -o build\ui\ui_settingswindow.h
build/ui/ui_aboutwindow.h: aboutwindow.ui
D:\x64\Qt\qt-5.4.0-x64-mingw492r0-sjlj\bin\uic.exe aboutwindow.ui -o build\ui\ui_aboutwindow.h
build/ui/ui_osd.h: osd.ui