-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.Debug
1829 lines (1765 loc) · 121 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: Power
# Generated by qmake (3.1) (Qt 5.12.0)
# Project: Power.pro
# Template: app
#############################################################################
MAKEFILE = Makefile.Debug
####### Compiler, tools and options
CC = clang-cl
CXX = clang-cl
DEFINES = -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DQT_DEPRECATED_WARNINGS -DQT_QML_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB
CFLAGS = -nologo -Zc:wchar_t -Wno-microsoft-enum-value -Zi -MDd -W3 /Fddebug\Power.vc.pdb $(DEFINES)
CXXFLAGS = -nologo -Zc:wchar_t -Wno-microsoft-enum-value -Zi -MDd -W3 -w34100 -w34189 -w44996 -EHsc /Fddebug\Power.vc.pdb $(DEFINES)
INCPATH = -I. -I..\..\..\Qt\5.12.0\msvc2017_64\include -I..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets -I..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui -I..\..\..\Qt\5.12.0\msvc2017_64\include\QtANGLE -I..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore -Idebug -I. -I\include -I..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\win32-clang-msvc
LINKER = link
LFLAGS = /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:WINDOWS "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'"
LIBS = Kernel32.lib Dxva2.lib PowrProf.lib Psapi.lib /LIBPATH:C:\Qt\5.12.0\msvc2017_64\lib C:\Qt\5.12.0\msvc2017_64\lib\Qt5Widgetsd.lib C:\Qt\5.12.0\msvc2017_64\lib\Qt5Guid.lib C:\Qt\5.12.0\msvc2017_64\lib\Qt5Cored.lib C:\Qt\5.12.0\msvc2017_64\lib\qtmaind.lib /LIBPATH:C:\openssl\lib /LIBPATH:C:\Utils\my_sql\mysql-5.6.11-winx64\lib /LIBPATH:C:\Utils\postgresql\pgsql\lib shell32.lib /LIBPATH:C:\Qt\5.12.0\msvc2017_64\lib C:\Qt\5.12.0\msvc2017_64\lib\Qt5Cored.lib
QMAKE = C:\Qt\5.12.0\msvc2017_64\bin\qmake.exe
IDC = idc
IDL = midl /NOLOGO
ZIP = zip -r -9
DEF_FILE =
RES_FILE =
COPY = copy /y
SED = $(QMAKE) -install sed
COPY_FILE = copy /y
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 /y
INSTALL_PROGRAM = copy /y
INSTALL_DIR = xcopy /s /q /y /i
QINSTALL = C:\Qt\5.12.0\msvc2017_64\bin\qmake.exe -install qinstall
QINSTALL_PROGRAM = C:\Qt\5.12.0\msvc2017_64\bin\qmake.exe -install qinstall -exe
####### Output directory
OBJECTS_DIR = debug
####### Files
SOURCES = main.cpp \
mainwindow.cpp \
dialog.cpp \
auto.cpp \
informativewindow.cpp \
userinfo.cpp debug\qrc_resources.cpp \
debug\moc_mainwindow.cpp \
debug\moc_dialog.cpp \
debug\moc_auto.cpp \
debug\moc_informativewindow.cpp \
debug\moc_userinfo.cpp
OBJECTS = debug\main.obj \
debug\mainwindow.obj \
debug\dialog.obj \
debug\auto.obj \
debug\informativewindow.obj \
debug\userinfo.obj \
debug\qrc_resources.obj \
debug\moc_mainwindow.obj \
debug\moc_dialog.obj \
debug\moc_auto.obj \
debug\moc_informativewindow.obj \
debug\moc_userinfo.obj
DIST = mainwindow.h \
dialog.h \
auto.h \
informativewindow.h \
userinfo.h main.cpp \
mainwindow.cpp \
dialog.cpp \
auto.cpp \
informativewindow.cpp \
userinfo.cpp
QMAKE_TARGET = Power
DESTDIR = debug\ #avoid trailing-slash linebreak
TARGET = Power.exe
DESTDIR_TARGET = debug\Power.exe
####### Implicit rules
.SUFFIXES: .c .cpp .cc .cxx
{debug}.cpp{debug\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{debug}.cc{debug\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{debug}.cxx{debug\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{debug}.c{debug\}.obj::
$(CC) -c $(CFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{.}.cpp{debug\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{.}.cc{debug\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{.}.cxx{debug\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{.}.c{debug\}.obj::
$(CC) -c $(CFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
####### Build rules
first: all
all: Makefile.Debug debug\Power.exe
debug\Power.exe: ui_mainwindow.h ui_dialog.h ui_auto.h ui_informativewindow.h ui_userinfo.h $(OBJECTS)
echo 1 /* CREATEPROCESS_MANIFEST_RESOURCE_ID */ 24 /* RT_MANIFEST */ "debug\\Power.exe.embed.manifest">debug\Power.exe_manifest.rc
if not exist $(DESTDIR_TARGET) if exist debug\Power.exe.embed.manifest del debug\Power.exe.embed.manifest
if exist debug\Power.exe.embed.manifest copy /Y debug\Power.exe.embed.manifest debug\Power.exe_manifest.bak
$(LINKER) $(LFLAGS) /MANIFEST /MANIFESTFILE:debug\Power.exe.embed.manifest /OUT:$(DESTDIR_TARGET) @<<
debug\main.obj debug\mainwindow.obj debug\dialog.obj debug\auto.obj debug\informativewindow.obj debug\userinfo.obj debug\qrc_resources.obj debug\moc_mainwindow.obj debug\moc_dialog.obj debug\moc_auto.obj debug\moc_informativewindow.obj debug\moc_userinfo.obj
$(LIBS)
!IF EXIST(debug\Power.exe_manifest.res)
debug\Power.exe_manifest.res
!ENDIF
<<
if exist debug\Power.exe_manifest.bak fc /b debug\Power.exe.embed.manifest debug\Power.exe_manifest.bak >NUL || del debug\Power.exe_manifest.bak
if not exist debug\Power.exe_manifest.bak rc.exe /fodebug\Power.exe_manifest.res debug\Power.exe_manifest.rc
if not exist debug\Power.exe_manifest.bak $(LINKER) $(LFLAGS) /MANIFEST /MANIFESTFILE:debug\Power.exe.embed.manifest /OUT:$(DESTDIR_TARGET) @<<
debug\main.obj debug\mainwindow.obj debug\dialog.obj debug\auto.obj debug\informativewindow.obj debug\userinfo.obj debug\qrc_resources.obj debug\moc_mainwindow.obj debug\moc_dialog.obj debug\moc_auto.obj debug\moc_informativewindow.obj debug\moc_userinfo.obj
$(LIBS)
debug\Power.exe_manifest.res
<<
if exist debug\Power.exe_manifest.bak del debug\Power.exe_manifest.bak
qmake: FORCE
@$(QMAKE) -o Makefile.Debug Power.pro -spec win32-clang-msvc "CONFIG+=debug" "CONFIG+=qml_debug"
qmake_all: FORCE
dist:
$(ZIP) Power.zip $(SOURCES) $(DIST) Power.pro ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\features\spec_pre.prf ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\common\angle.conf ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\common\windows-vulkan.conf ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\common\msvc-desktop.conf ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\qconfig.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_3danimation.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_3danimation_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_3dcore.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_3dcore_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_3dextras.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_3dextras_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_3dinput.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_3dinput_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_3dlogic.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_3dlogic_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_3dquick.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_3dquick_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_3dquickanimation.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_3dquickanimation_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_3dquickextras.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_3dquickextras_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_3dquickinput.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_3dquickinput_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_3dquickrender.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_3dquickrender_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_3dquickscene2d.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_3dquickscene2d_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_3drender.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_3drender_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_accessibility_support_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_axbase.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_axbase_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_axcontainer.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_axcontainer_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_axserver.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_axserver_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_bluetooth.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_bluetooth_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_bootstrap_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_charts.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_charts_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_concurrent.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_concurrent_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_core.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_core_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_datavisualization.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_datavisualization_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_dbus.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_dbus_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_designer.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_designer_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_designercomponents_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_devicediscovery_support_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_edid_support_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_egl_support_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_eventdispatcher_support_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_fb_support_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_fontdatabase_support_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_gamepad.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_gamepad_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_gui.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_gui_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_help.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_help_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_location.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_location_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_multimedia.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_multimedia_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_multimediawidgets.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_multimediawidgets_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_network.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_network_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_networkauth.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_networkauth_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_nfc.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_nfc_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_opengl.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_opengl_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_openglextensions.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_openglextensions_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_packetprotocol_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_platformcompositor_support_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_positioning.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_positioning_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_positioningquick.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_positioningquick_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_printsupport.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_printsupport_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_purchasing.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_purchasing_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_qml.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_qml_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_qmldebug_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_qmldevtools_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_qmltest.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_qmltest_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_qtmultimediaquicktools_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_quick.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_quick_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_quickcontrols2.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_quickcontrols2_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_quickparticles_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_quickshapes_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_quicktemplates2_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_quickwidgets.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_quickwidgets_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_remoteobjects.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_remoteobjects_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_repparser.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_repparser_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_script.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_script_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_scripttools.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_scripttools_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_scxml.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_scxml_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_sensors.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_sensors_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_serialbus.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_serialbus_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_serialport.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_serialport_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_sql.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_sql_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_svg.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_svg_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_testlib.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_testlib_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_texttospeech.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_texttospeech_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_theme_support_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_uiplugin.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_uitools.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_uitools_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_virtualkeyboard.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_virtualkeyboard_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_vulkan_support_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_webchannel.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_webchannel_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_webengine.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_webengine_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_webenginecore.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_webenginecore_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_webenginecoreheaders_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_webenginewidgets.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_webenginewidgets_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_websockets.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_websockets_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_webview.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_webview_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_widgets.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_widgets_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_windowsuiautomation_support_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_winextras.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_winextras_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_xml.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_xml_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_xmlpatterns.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_xmlpatterns_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\modules\qt_lib_zlib_private.pri ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\features\qt_functions.prf ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\features\qt_config.prf ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\win32-clang-msvc\qmake.conf ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\features\spec_post.prf .qmake.stash ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\features\exclusive_builds.prf ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\features\toolchain.prf ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\features\default_pre.prf ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\features\win32\default_pre.prf ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\features\resolve_config.prf ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\features\exclusive_builds_post.prf ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\features\default_post.prf ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\features\build_pass.prf ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\features\qml_debug.prf ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\features\warn_on.prf ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\features\qt.prf ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\features\resources.prf ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\features\moc.prf ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\features\win32\opengl.prf ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\features\uic.prf ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\features\qmake_use.prf ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\features\file_copies.prf ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\features\win32\windows.prf ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\features\testcase_targets.prf ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\features\exceptions.prf ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\features\yacc.prf ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\features\lex.prf Power.pro resources.qrc ..\..\..\Qt\5.12.0\msvc2017_64\lib\Qt5Widgetsd.prl ..\..\..\Qt\5.12.0\msvc2017_64\lib\Qt5Guid.prl ..\..\..\Qt\5.12.0\msvc2017_64\lib\Qt5Cored.prl ..\..\..\Qt\5.12.0\msvc2017_64\lib\qtmaind.prl resources.qrc ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\features\data\dummy.cpp mainwindow.h dialog.h auto.h informativewindow.h userinfo.h main.cpp mainwindow.cpp dialog.cpp auto.cpp informativewindow.cpp userinfo.cpp mainwindow.ui dialog.ui auto.ui informativewindow.ui userinfo.ui
clean: compiler_clean
-$(DEL_FILE) debug\main.obj debug\mainwindow.obj debug\dialog.obj debug\auto.obj debug\informativewindow.obj debug\userinfo.obj debug\qrc_resources.obj debug\moc_mainwindow.obj debug\moc_dialog.obj debug\moc_auto.obj debug\moc_informativewindow.obj debug\moc_userinfo.obj
-$(DEL_FILE) debug\Power.exp debug\Power.vc.pdb debug\Power.ilk debug\Power.idb debug\Power.exe.embed.manifest debug\Power.exe_manifest.rc debug\Power.exe_manifest.res debug\Power.exe_manifest.bak
distclean: clean
-$(DEL_FILE) .qmake.stash debug\Power.lib debug\Power.pdb
-$(DEL_FILE) $(DESTDIR_TARGET)
-$(DEL_FILE) Makefile.Debug
mocclean: compiler_moc_header_clean compiler_moc_objc_header_clean compiler_moc_source_clean
mocables: compiler_moc_header_make_all compiler_moc_objc_header_make_all compiler_moc_source_make_all
check: first
benchmark: first
compiler_rcc_make_all: debug\qrc_resources.cpp
compiler_rcc_clean:
-$(DEL_FILE) debug\qrc_resources.cpp
debug\qrc_resources.cpp: resources.qrc \
..\..\..\Qt\5.12.0\msvc2017_64\bin\rcc.exe \
img\icons8-??????????-50.png \
img\battery.png \
img\50.png \
img\creative-idea.png \
img\b20.png \
img\b80.png \
img\icons8-??????-filled-50.png \
img\plug2.png \
img\40.png \
img\feedback.png \
img\30.png \
img\90.png \
img\plug.png \
img\b60.png \
img\icons8-????-filled-50.png \
img\cog.png \
img\icons8-????????-52.png \
img\20.png \
img\icons8-c????????-???????-50.png \
img\80.png \
img\wrench.png \
img\100.png \
img\0.png \
img\web-settings.png \
img\10.png \
img\70.png \
img\178365.png \
img\b100.png \
img\b0.png \
img\icons8-??????-50.png \
img\b40.png \
img\182446.png \
img\icons8-?????-52.png \
img\152226.png \
img\60.png
C:\Qt\5.12.0\msvc2017_64\bin\rcc.exe -name resources resources.qrc -o debug\qrc_resources.cpp
compiler_moc_predefs_make_all: debug\moc_predefs.h
compiler_moc_predefs_clean:
-$(DEL_FILE) debug\moc_predefs.h
debug\moc_predefs.h: ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\features\data\dummy.cpp
clang-cl -BxC:\Qt\5.12.0\msvc2017_64\bin\qmake.exe -nologo -Zc:wchar_t -Wno-microsoft-enum-value -Zi -MDd -W3 -w34100 -w34189 -w44996 -E ..\..\..\Qt\5.12.0\msvc2017_64\mkspecs\features\data\dummy.cpp 2>NUL >debug\moc_predefs.h
compiler_moc_header_make_all: debug\moc_mainwindow.cpp debug\moc_dialog.cpp debug\moc_auto.cpp debug\moc_informativewindow.cpp debug\moc_userinfo.cpp
compiler_moc_header_clean:
-$(DEL_FILE) debug\moc_mainwindow.cpp debug\moc_dialog.cpp debug\moc_auto.cpp debug\moc_informativewindow.cpp debug\moc_userinfo.cpp
debug\moc_mainwindow.cpp: ..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\QMainWindow \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qmainwindow.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qtwidgetsglobal.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qtguiglobal.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qglobal.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qconfig-bootstrapped.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qconfig.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qtcore-config.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsystemdetection.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qprocessordetection.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qcompilerdetection.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qtypeinfo.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsysinfo.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qlogging.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qflags.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qatomic.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qbasicatomic.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qatomic_bootstrap.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qgenericatomic.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qatomic_cxx11.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qatomic_msvc.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qglobalstatic.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qmutex.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qnumeric.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qversiontagging.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qtgui-config.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qtwidgets-config.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qwidget.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qwindowdefs.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qobjectdefs.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qnamespace.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qobjectdefs_impl.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qwindowdefs_win.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qobject.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstring.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qchar.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qbytearray.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qrefcount.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qarraydata.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringliteral.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringalgorithms.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringview.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringbuilder.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qlist.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qalgorithms.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qiterator.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qhashfunctions.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qpair.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qbytearraylist.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringlist.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qregexp.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringmatcher.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qcoreevent.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qscopedpointer.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qmetatype.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qvarlengtharray.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qcontainerfwd.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qobject_impl.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qmargins.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpaintdevice.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qrect.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsize.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qpoint.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpalette.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qcolor.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qrgb.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qrgba64.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qbrush.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qvector.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qmatrix.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpolygon.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qregion.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qdatastream.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qiodevice.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qline.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qtransform.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpainterpath.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qimage.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpixelformat.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpixmap.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsharedpointer.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qshareddata.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qhash.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsharedpointer_impl.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qfont.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qfontmetrics.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qfontinfo.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qsizepolicy.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qcursor.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qkeysequence.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qevent.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qvariant.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qmap.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qdebug.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qtextstream.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qlocale.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qset.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qcontiguouscache.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qurl.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qurlquery.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qfile.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qfiledevice.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qvector2d.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qtouchdevice.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qtabwidget.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qicon.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\QDebug \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\QWidget \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\QTimer \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qtimer.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qbasictimer.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\QTime \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qdatetime.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\QMessageBox \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qmessagebox.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qdialog.h \
auto.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\QDialog \
informativewindow.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\QAction \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qaction.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qactiongroup.h \
dialog.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\QComboBox \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qcombobox.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qabstractitemdelegate.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qstyleoption.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qabstractspinbox.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qvalidator.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qregularexpression.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qslider.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qabstractslider.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qstyle.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qtabbar.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qrubberband.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qframe.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qabstractitemmodel.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\QListView \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qlistview.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qabstractitemview.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qabstractscrollarea.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qitemselectionmodel.h \
userinfo.h \
mainwindow.h \
debug\moc_predefs.h \
..\..\..\Qt\5.12.0\msvc2017_64\bin\moc.exe
C:\Qt\5.12.0\msvc2017_64\bin\moc.exe $(DEFINES) --compiler-flavor=msvc --include C:/Programming/Work/Power/debug/moc_predefs.h -IC:/Qt/5.12.0/msvc2017_64/mkspecs/win32-clang-msvc -IC:/Programming/Work/Power -IC:/Qt/5.12.0/msvc2017_64/include -IC:/Qt/5.12.0/msvc2017_64/include/QtWidgets -IC:/Qt/5.12.0/msvc2017_64/include/QtGui -IC:/Qt/5.12.0/msvc2017_64/include/QtANGLE -IC:/Qt/5.12.0/msvc2017_64/include/QtCore -IC:/Qt/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++ -IC:/Qt/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32 -IC:/Qt/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/backward -IC:/Qt/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include -IC:/Qt/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed -IC:/Qt/Tools/mingw730_64/x86_64-w64-mingw32/include mainwindow.h -o debug\moc_mainwindow.cpp
debug\moc_dialog.cpp: ..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\QDialog \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qdialog.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qtwidgetsglobal.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qtguiglobal.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qglobal.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qconfig-bootstrapped.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qconfig.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qtcore-config.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsystemdetection.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qprocessordetection.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qcompilerdetection.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qtypeinfo.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsysinfo.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qlogging.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qflags.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qatomic.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qbasicatomic.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qatomic_bootstrap.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qgenericatomic.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qatomic_cxx11.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qatomic_msvc.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qglobalstatic.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qmutex.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qnumeric.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qversiontagging.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qtgui-config.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qtwidgets-config.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qwidget.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qwindowdefs.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qobjectdefs.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qnamespace.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qobjectdefs_impl.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qwindowdefs_win.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qobject.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstring.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qchar.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qbytearray.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qrefcount.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qarraydata.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringliteral.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringalgorithms.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringview.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringbuilder.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qlist.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qalgorithms.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qiterator.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qhashfunctions.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qpair.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qbytearraylist.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringlist.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qregexp.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringmatcher.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qcoreevent.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qscopedpointer.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qmetatype.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qvarlengtharray.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qcontainerfwd.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qobject_impl.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qmargins.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpaintdevice.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qrect.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsize.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qpoint.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpalette.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qcolor.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qrgb.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qrgba64.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qbrush.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qvector.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qmatrix.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpolygon.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qregion.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qdatastream.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qiodevice.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qline.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qtransform.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpainterpath.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qimage.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpixelformat.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpixmap.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsharedpointer.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qshareddata.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qhash.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsharedpointer_impl.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qfont.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qfontmetrics.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qfontinfo.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qsizepolicy.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qcursor.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qkeysequence.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qevent.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qvariant.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qmap.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qdebug.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qtextstream.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qlocale.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qset.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qcontiguouscache.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qurl.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qurlquery.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qfile.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qfiledevice.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qvector2d.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qtouchdevice.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\QComboBox \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qcombobox.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qabstractitemdelegate.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qstyleoption.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qabstractspinbox.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qvalidator.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qregularexpression.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qicon.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qslider.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qabstractslider.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qstyle.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qtabbar.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qtabwidget.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qrubberband.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qframe.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qabstractitemmodel.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\QListView \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qlistview.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qabstractitemview.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qabstractscrollarea.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qitemselectionmodel.h \
dialog.h \
debug\moc_predefs.h \
..\..\..\Qt\5.12.0\msvc2017_64\bin\moc.exe
C:\Qt\5.12.0\msvc2017_64\bin\moc.exe $(DEFINES) --compiler-flavor=msvc --include C:/Programming/Work/Power/debug/moc_predefs.h -IC:/Qt/5.12.0/msvc2017_64/mkspecs/win32-clang-msvc -IC:/Programming/Work/Power -IC:/Qt/5.12.0/msvc2017_64/include -IC:/Qt/5.12.0/msvc2017_64/include/QtWidgets -IC:/Qt/5.12.0/msvc2017_64/include/QtGui -IC:/Qt/5.12.0/msvc2017_64/include/QtANGLE -IC:/Qt/5.12.0/msvc2017_64/include/QtCore -IC:/Qt/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++ -IC:/Qt/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32 -IC:/Qt/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/backward -IC:/Qt/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include -IC:/Qt/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed -IC:/Qt/Tools/mingw730_64/x86_64-w64-mingw32/include dialog.h -o debug\moc_dialog.cpp
debug\moc_auto.cpp: ..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\QDialog \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qdialog.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qtwidgetsglobal.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qtguiglobal.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qglobal.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qconfig-bootstrapped.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qconfig.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qtcore-config.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsystemdetection.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qprocessordetection.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qcompilerdetection.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qtypeinfo.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsysinfo.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qlogging.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qflags.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qatomic.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qbasicatomic.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qatomic_bootstrap.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qgenericatomic.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qatomic_cxx11.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qatomic_msvc.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qglobalstatic.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qmutex.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qnumeric.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qversiontagging.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qtgui-config.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qtwidgets-config.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qwidget.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qwindowdefs.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qobjectdefs.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qnamespace.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qobjectdefs_impl.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qwindowdefs_win.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qobject.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstring.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qchar.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qbytearray.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qrefcount.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qarraydata.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringliteral.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringalgorithms.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringview.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringbuilder.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qlist.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qalgorithms.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qiterator.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qhashfunctions.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qpair.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qbytearraylist.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringlist.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qregexp.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringmatcher.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qcoreevent.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qscopedpointer.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qmetatype.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qvarlengtharray.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qcontainerfwd.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qobject_impl.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qmargins.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpaintdevice.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qrect.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsize.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qpoint.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpalette.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qcolor.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qrgb.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qrgba64.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qbrush.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qvector.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qmatrix.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpolygon.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qregion.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qdatastream.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qiodevice.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qline.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qtransform.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpainterpath.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qimage.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpixelformat.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpixmap.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsharedpointer.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qshareddata.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qhash.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsharedpointer_impl.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qfont.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qfontmetrics.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qfontinfo.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qsizepolicy.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qcursor.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qkeysequence.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qevent.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qvariant.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qmap.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qdebug.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qtextstream.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qlocale.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qset.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qcontiguouscache.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qurl.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qurlquery.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qfile.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qfiledevice.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qvector2d.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qtouchdevice.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\QWidget \
auto.h \
debug\moc_predefs.h \
..\..\..\Qt\5.12.0\msvc2017_64\bin\moc.exe
C:\Qt\5.12.0\msvc2017_64\bin\moc.exe $(DEFINES) --compiler-flavor=msvc --include C:/Programming/Work/Power/debug/moc_predefs.h -IC:/Qt/5.12.0/msvc2017_64/mkspecs/win32-clang-msvc -IC:/Programming/Work/Power -IC:/Qt/5.12.0/msvc2017_64/include -IC:/Qt/5.12.0/msvc2017_64/include/QtWidgets -IC:/Qt/5.12.0/msvc2017_64/include/QtGui -IC:/Qt/5.12.0/msvc2017_64/include/QtANGLE -IC:/Qt/5.12.0/msvc2017_64/include/QtCore -IC:/Qt/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++ -IC:/Qt/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32 -IC:/Qt/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/backward -IC:/Qt/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include -IC:/Qt/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed -IC:/Qt/Tools/mingw730_64/x86_64-w64-mingw32/include auto.h -o debug\moc_auto.cpp
debug\moc_informativewindow.cpp: ..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\QDialog \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qdialog.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qtwidgetsglobal.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qtguiglobal.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qglobal.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qconfig-bootstrapped.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qconfig.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qtcore-config.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsystemdetection.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qprocessordetection.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qcompilerdetection.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qtypeinfo.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsysinfo.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qlogging.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qflags.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qatomic.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qbasicatomic.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qatomic_bootstrap.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qgenericatomic.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qatomic_cxx11.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qatomic_msvc.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qglobalstatic.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qmutex.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qnumeric.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qversiontagging.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qtgui-config.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qtwidgets-config.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qwidget.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qwindowdefs.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qobjectdefs.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qnamespace.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qobjectdefs_impl.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qwindowdefs_win.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qobject.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstring.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qchar.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qbytearray.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qrefcount.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qarraydata.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringliteral.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringalgorithms.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringview.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringbuilder.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qlist.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qalgorithms.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qiterator.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qhashfunctions.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qpair.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qbytearraylist.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringlist.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qregexp.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringmatcher.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qcoreevent.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qscopedpointer.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qmetatype.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qvarlengtharray.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qcontainerfwd.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qobject_impl.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qmargins.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpaintdevice.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qrect.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsize.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qpoint.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpalette.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qcolor.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qrgb.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qrgba64.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qbrush.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qvector.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qmatrix.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpolygon.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qregion.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qdatastream.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qiodevice.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qline.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qtransform.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpainterpath.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qimage.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpixelformat.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpixmap.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsharedpointer.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qshareddata.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qhash.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsharedpointer_impl.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qfont.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qfontmetrics.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qfontinfo.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qsizepolicy.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qcursor.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qkeysequence.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qevent.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qvariant.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qmap.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qdebug.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qtextstream.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qlocale.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qset.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qcontiguouscache.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qurl.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qurlquery.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qfile.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qfiledevice.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qvector2d.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qtouchdevice.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\QWidget \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\QAction \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qaction.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qicon.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qactiongroup.h \
informativewindow.h \
debug\moc_predefs.h \
..\..\..\Qt\5.12.0\msvc2017_64\bin\moc.exe
C:\Qt\5.12.0\msvc2017_64\bin\moc.exe $(DEFINES) --compiler-flavor=msvc --include C:/Programming/Work/Power/debug/moc_predefs.h -IC:/Qt/5.12.0/msvc2017_64/mkspecs/win32-clang-msvc -IC:/Programming/Work/Power -IC:/Qt/5.12.0/msvc2017_64/include -IC:/Qt/5.12.0/msvc2017_64/include/QtWidgets -IC:/Qt/5.12.0/msvc2017_64/include/QtGui -IC:/Qt/5.12.0/msvc2017_64/include/QtANGLE -IC:/Qt/5.12.0/msvc2017_64/include/QtCore -IC:/Qt/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++ -IC:/Qt/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32 -IC:/Qt/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/backward -IC:/Qt/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include -IC:/Qt/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed -IC:/Qt/Tools/mingw730_64/x86_64-w64-mingw32/include informativewindow.h -o debug\moc_informativewindow.cpp
debug\moc_userinfo.cpp: ..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\QDialog \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qdialog.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qtwidgetsglobal.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qtguiglobal.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qglobal.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qconfig-bootstrapped.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qconfig.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qtcore-config.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsystemdetection.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qprocessordetection.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qcompilerdetection.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qtypeinfo.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsysinfo.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qlogging.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qflags.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qatomic.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qbasicatomic.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qatomic_bootstrap.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qgenericatomic.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qatomic_cxx11.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qatomic_msvc.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qglobalstatic.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qmutex.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qnumeric.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qversiontagging.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qtgui-config.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qtwidgets-config.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qwidget.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qwindowdefs.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qobjectdefs.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qnamespace.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qobjectdefs_impl.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qwindowdefs_win.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qobject.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstring.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qchar.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qbytearray.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qrefcount.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qarraydata.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringliteral.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringalgorithms.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringview.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringbuilder.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qlist.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qalgorithms.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qiterator.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qhashfunctions.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qpair.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qbytearraylist.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringlist.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qregexp.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringmatcher.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qcoreevent.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qscopedpointer.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qmetatype.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qvarlengtharray.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qcontainerfwd.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qobject_impl.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qmargins.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpaintdevice.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qrect.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsize.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qpoint.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpalette.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qcolor.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qrgb.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qrgba64.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qbrush.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qvector.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qmatrix.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpolygon.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qregion.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qdatastream.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qiodevice.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qline.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qtransform.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpainterpath.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qimage.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpixelformat.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpixmap.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsharedpointer.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qshareddata.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qhash.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsharedpointer_impl.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qfont.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qfontmetrics.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qfontinfo.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qsizepolicy.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qcursor.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qkeysequence.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qevent.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qvariant.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qmap.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qdebug.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qtextstream.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qlocale.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qset.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qcontiguouscache.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qurl.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qurlquery.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qfile.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qfiledevice.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qvector2d.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qtouchdevice.h \
userinfo.h \
debug\moc_predefs.h \
..\..\..\Qt\5.12.0\msvc2017_64\bin\moc.exe
C:\Qt\5.12.0\msvc2017_64\bin\moc.exe $(DEFINES) --compiler-flavor=msvc --include C:/Programming/Work/Power/debug/moc_predefs.h -IC:/Qt/5.12.0/msvc2017_64/mkspecs/win32-clang-msvc -IC:/Programming/Work/Power -IC:/Qt/5.12.0/msvc2017_64/include -IC:/Qt/5.12.0/msvc2017_64/include/QtWidgets -IC:/Qt/5.12.0/msvc2017_64/include/QtGui -IC:/Qt/5.12.0/msvc2017_64/include/QtANGLE -IC:/Qt/5.12.0/msvc2017_64/include/QtCore -IC:/Qt/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++ -IC:/Qt/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/x86_64-w64-mingw32 -IC:/Qt/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include/c++/backward -IC:/Qt/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include -IC:/Qt/Tools/mingw730_64/lib/gcc/x86_64-w64-mingw32/7.3.0/include-fixed -IC:/Qt/Tools/mingw730_64/x86_64-w64-mingw32/include userinfo.h -o debug\moc_userinfo.cpp
compiler_moc_objc_header_make_all:
compiler_moc_objc_header_clean:
compiler_moc_source_make_all:
compiler_moc_source_clean:
compiler_uic_make_all: ui_mainwindow.h ui_dialog.h ui_auto.h ui_informativewindow.h ui_userinfo.h
compiler_uic_clean:
-$(DEL_FILE) ui_mainwindow.h ui_dialog.h ui_auto.h ui_informativewindow.h ui_userinfo.h
ui_mainwindow.h: mainwindow.ui \
..\..\..\Qt\5.12.0\msvc2017_64\bin\uic.exe
C:\Qt\5.12.0\msvc2017_64\bin\uic.exe mainwindow.ui -o ui_mainwindow.h
ui_dialog.h: dialog.ui \
..\..\..\Qt\5.12.0\msvc2017_64\bin\uic.exe
C:\Qt\5.12.0\msvc2017_64\bin\uic.exe dialog.ui -o ui_dialog.h
ui_auto.h: auto.ui \
..\..\..\Qt\5.12.0\msvc2017_64\bin\uic.exe
C:\Qt\5.12.0\msvc2017_64\bin\uic.exe auto.ui -o ui_auto.h
ui_informativewindow.h: informativewindow.ui \
..\..\..\Qt\5.12.0\msvc2017_64\bin\uic.exe
C:\Qt\5.12.0\msvc2017_64\bin\uic.exe informativewindow.ui -o ui_informativewindow.h
ui_userinfo.h: userinfo.ui \
..\..\..\Qt\5.12.0\msvc2017_64\bin\uic.exe
C:\Qt\5.12.0\msvc2017_64\bin\uic.exe userinfo.ui -o ui_userinfo.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_predefs_clean compiler_moc_header_clean compiler_uic_clean
####### Compile
debug\main.obj: main.cpp mainwindow.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\QMainWindow \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qmainwindow.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qtwidgetsglobal.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qtguiglobal.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qglobal.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qconfig-bootstrapped.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qconfig.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qtcore-config.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsystemdetection.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qprocessordetection.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qcompilerdetection.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qtypeinfo.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsysinfo.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qlogging.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qflags.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qatomic.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qbasicatomic.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qatomic_bootstrap.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qgenericatomic.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qatomic_cxx11.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qatomic_msvc.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qglobalstatic.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qmutex.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qnumeric.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qversiontagging.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qtgui-config.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qtwidgets-config.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qwidget.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qwindowdefs.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qobjectdefs.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qnamespace.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qobjectdefs_impl.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qwindowdefs_win.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qobject.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstring.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qchar.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qbytearray.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qrefcount.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qarraydata.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringliteral.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringalgorithms.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringview.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringbuilder.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qlist.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qalgorithms.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qiterator.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qhashfunctions.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qpair.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qbytearraylist.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringlist.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qregexp.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qstringmatcher.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qcoreevent.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qscopedpointer.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qmetatype.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qvarlengtharray.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qcontainerfwd.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qobject_impl.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qmargins.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpaintdevice.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qrect.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsize.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qpoint.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpalette.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qcolor.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qrgb.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qrgba64.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qbrush.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qvector.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qmatrix.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpolygon.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qregion.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qdatastream.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qiodevice.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qline.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qtransform.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpainterpath.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qimage.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpixelformat.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qpixmap.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsharedpointer.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qshareddata.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qhash.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qsharedpointer_impl.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qfont.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qfontmetrics.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qfontinfo.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qsizepolicy.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qcursor.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qkeysequence.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qevent.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qvariant.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qmap.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qdebug.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qtextstream.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qlocale.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qset.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qcontiguouscache.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qurl.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qurlquery.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qfile.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qfiledevice.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qvector2d.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qtouchdevice.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qtabwidget.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtGui\qicon.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\QDebug \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\QWidget \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\QTimer \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qtimer.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qbasictimer.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\QTime \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtCore\qdatetime.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\QMessageBox \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qmessagebox.h \
..\..\..\Qt\5.12.0\msvc2017_64\include\QtWidgets\qdialog.h \
auto.h \