-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.Debug
13412 lines (13297 loc) · 849 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: MobileCheck
# Generated by qmake (3.0) (Qt 5.6.3)
# Project: MainWidget.pro
# Template: app
#############################################################################
MAKEFILE = Makefile.Debug
####### Compiler, tools and options
CC = cl
CXX = cl
DEFINES = -DUNICODE -DWIN32 -DQT_QML_DEBUG -DQT_PRINTSUPPORT_LIB -DQT_AXCONTAINER_LIB -DQT_AXBASE_LIB -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_CORE_LIB
CFLAGS = -nologo -Zc:wchar_t -FS -Zi -MDd -W3 /Fddebug\MobileCheck.vc.pdb $(DEFINES)
CXXFLAGS = -nologo -Zc:wchar_t -FS -Zi -MDd -GR -W3 -w34100 -w34189 -w44996 -EHsc /Fddebug\MobileCheck.vc.pdb $(DEFINES)
INCPATH = -I. -Iinclude -IProtocal -Iinclude -IparseJson -Iinclude -IDatabase -Iinclude -ICommon -Iinclude -IMesgbox -Iinclude -Iexportword -Iinclude -ILoginWidget -Iinclude -IQrcodeGenerate -Iinclude -IQPrintQcrode -IE:\QtX86\Qt5.6.3\5.6.3\msvc2013\include -IE:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtPrintSupport -IE:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\ActiveQt -IE:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtWidgets -IE:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui -IE:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtANGLE -IE:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtNetwork -IE:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtScript -IE:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtSql -IE:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore -Idebug -IE:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\win32-msvc2013
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 = /LIBPATH:E:\QtX86\Qt5.6.3\5.6.3\msvc2013\lib E:\QtX86\Qt5.6.3\5.6.3\msvc2013\lib\qtmaind.lib shell32.lib /LIBPATH:C:\Utils\my_sql\my_sqlx86\lib /LIBPATH:C:\Utils\postgresqlx86\pgsql\lib User32.LIB hid\hid.lib qrcodelib.lib E:\QtX86\Qt5.6.3\5.6.3\msvc2013\lib\Qt5PrintSupportd.lib E:\QtX86\Qt5.6.3\5.6.3\msvc2013\lib\Qt5AxContainerd.lib /LIBPATH:E:\QtX86\Qt5.6.3\5.6.3\msvc2013\lib E:\QtX86\Qt5.6.3\5.6.3\msvc2013\lib\Qt5AxBased.lib E:\QtX86\Qt5.6.3\5.6.3\msvc2013\lib\Qt5Widgetsd.lib E:\QtX86\Qt5.6.3\5.6.3\msvc2013\lib\Qt5Guid.lib E:\QtX86\Qt5.6.3\5.6.3\msvc2013\lib\Qt5Cored.lib ole32.lib oleaut32.lib user32.lib gdi32.lib advapi32.lib E:\QtX86\Qt5.6.3\5.6.3\msvc2013\lib\Qt5Widgetsd.lib E:\QtX86\Qt5.6.3\5.6.3\msvc2013\lib\Qt5Guid.lib E:\QtX86\Qt5.6.3\5.6.3\msvc2013\lib\Qt5Networkd.lib E:\QtX86\Qt5.6.3\5.6.3\msvc2013\lib\Qt5Scriptd.lib E:\QtX86\Qt5.6.3\5.6.3\msvc2013\lib\Qt5Sqld.lib E:\QtX86\Qt5.6.3\5.6.3\msvc2013\lib\Qt5Cored.lib debug\MobileCheck_resource.res
QMAKE = E:\QtX86\Qt5.6.3\5.6.3\msvc2013\bin\qmake.exe
IDC = idc
IDL = midl
ZIP = zip -r -9
DEF_FILE =
RES_FILE = debug\MobileCheck_resource.res
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
####### Output directory
OBJECTS_DIR = debug
####### Files
SOURCES = Protocal\protocal.cpp \
Protocal\executecmd.cpp \
parseJson\parsejson.cpp \
Database\mdatabase.cpp \
Database\cmddata.cpp \
Common\applist.cpp \
Common\stackwidget.cpp \
Mesgbox\msgbox.cpp \
exportword\qword.cpp \
LoginWidget\loginwidget.cpp \
LoginWidget\mybutton.cpp \
LoginWidget\authoriza.cpp \
QrcodeGenerate\qrcodegenerate.cpp \
QPrintQcrode\qprintqcrode.cpp \
main.cpp \
mainwidget.cpp \
upwidget.cpp \
downwidget.cpp \
maskmainwidget.cpp \
mybutton.cpp \
adb.cpp \
socket.cpp \
mainwidgetfunc.cpp \
homewidgetfun.cpp \
safecheckfun.cpp \
safecheckreslult.cpp \
checkallinfowidget.cpp \
countcheckinfo.cpp \
qrcodecheckinfo.cpp \
tcpthread.cpp \
homethread.cpp debug\qrc_pic.cpp \
debug\qrc_source.cpp \
debug\moc_protocal.cpp \
debug\moc_executecmd.cpp \
debug\moc_parsejson.cpp \
debug\moc_mdatabase.cpp \
debug\moc_cmddata.cpp \
debug\moc_stackwidget.cpp \
debug\moc_msgbox.cpp \
debug\moc_qword.cpp \
debug\moc_loginwidget.cpp \
debug\moc_mybutton.cpp \
debug\moc_authoriza.cpp \
debug\moc_qrcodegenerate.cpp \
debug\moc_qprintqcrode.cpp \
debug\moc_mainwidget.cpp \
debug\moc_upwidget.cpp \
debug\moc_downwidget.cpp \
debug\moc_maskmainwidget.cpp \
debug\moc_adb.cpp \
debug\moc_socket.cpp \
debug\moc_tcpthread.cpp
OBJECTS = debug\protocal.obj \
debug\executecmd.obj \
debug\parsejson.obj \
debug\mdatabase.obj \
debug\cmddata.obj \
debug\applist.obj \
debug\stackwidget.obj \
debug\msgbox.obj \
debug\qword.obj \
debug\loginwidget.obj \
debug\mybutton.obj \
debug\authoriza.obj \
debug\qrcodegenerate.obj \
debug\qprintqcrode.obj \
debug\main.obj \
debug\mainwidget.obj \
debug\upwidget.obj \
debug\downwidget.obj \
debug\maskmainwidget.obj \
debug\mybutton.obj \
debug\adb.obj \
debug\socket.obj \
debug\mainwidgetfunc.obj \
debug\homewidgetfun.obj \
debug\safecheckfun.obj \
debug\safecheckreslult.obj \
debug\checkallinfowidget.obj \
debug\countcheckinfo.obj \
debug\qrcodecheckinfo.obj \
debug\tcpthread.obj \
debug\homethread.obj \
debug\qrc_pic.obj \
debug\qrc_source.obj \
debug\moc_protocal.obj \
debug\moc_executecmd.obj \
debug\moc_parsejson.obj \
debug\moc_mdatabase.obj \
debug\moc_cmddata.obj \
debug\moc_stackwidget.obj \
debug\moc_msgbox.obj \
debug\moc_qword.obj \
debug\moc_loginwidget.obj \
debug\moc_mybutton.obj \
debug\moc_authoriza.obj \
debug\moc_qrcodegenerate.obj \
debug\moc_qprintqcrode.obj \
debug\moc_mainwidget.obj \
debug\moc_upwidget.obj \
debug\moc_downwidget.obj \
debug\moc_maskmainwidget.obj \
debug\moc_adb.obj \
debug\moc_socket.obj \
debug\moc_tcpthread.obj
DIST = Protocal\protocal.h \
Protocal\executecmd.h \
parseJson\parsejson.h \
Database\mdatabase.h \
Database\cmddata.h \
Common\applist.h \
Common\stackwidget.h \
Mesgbox\msgbox.h \
exportword\qword.h \
\ \
LoginWidget\loginwidget.h \
LoginWidget\mybutton.h \
LoginWidget\authoriza.h \
QrcodeGenerate\qrcodegenerate.h \
QPrintQcrode\qprintqcrode.h \
mainwidget.h \
upwidget.h \
downwidget.h \
maskmainwidget.h \
mybutton.h \
adb.h \
socket.h \
tcpthread.h Protocal\protocal.cpp \
Protocal\executecmd.cpp \
parseJson\parsejson.cpp \
Database\mdatabase.cpp \
Database\cmddata.cpp \
Common\applist.cpp \
Common\stackwidget.cpp \
Mesgbox\msgbox.cpp \
exportword\qword.cpp \
LoginWidget\loginwidget.cpp \
LoginWidget\mybutton.cpp \
LoginWidget\authoriza.cpp \
QrcodeGenerate\qrcodegenerate.cpp \
QPrintQcrode\qprintqcrode.cpp \
main.cpp \
mainwidget.cpp \
upwidget.cpp \
downwidget.cpp \
maskmainwidget.cpp \
mybutton.cpp \
adb.cpp \
socket.cpp \
mainwidgetfunc.cpp \
homewidgetfun.cpp \
safecheckfun.cpp \
safecheckreslult.cpp \
checkallinfowidget.cpp \
countcheckinfo.cpp \
qrcodecheckinfo.cpp \
tcpthread.cpp \
homethread.cpp
QMAKE_TARGET = MobileCheck
DESTDIR = debug\ #avoid trailing-slash linebreak
TARGET = MobileCheck.exe
DESTDIR_TARGET = debug\MobileCheck.exe
####### Implicit rules
.SUFFIXES: .c .cpp .cc .cxx
.cpp.obj:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fo$@ $<
.cc.obj:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fo$@ $<
.cxx.obj:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fo$@ $<
.c.obj:
$(CC) -c $(CFLAGS) $(INCPATH) -Fo$@ $<
####### Build rules
first: all
all: Makefile.Debug $(DESTDIR_TARGET)
$(DESTDIR_TARGET): E:\QtX86\Qt5.6.3\5.6.3\msvc2013\lib\Qt5AxContainerd.lib E:\QtX86\Qt5.6.3\5.6.3\msvc2013\lib\Qt5AxBased.lib $(OBJECTS) debug\MobileCheck_resource.res
$(LINKER) $(LFLAGS) /MANIFEST:embed /OUT:$(DESTDIR_TARGET) @<<
$(OBJECTS) $(LIBS)
<<
debug\MobileCheck_resource.res: MobileCheck_resource.rc
rc -D_DEBUG $(DEFINES) -fo debug\MobileCheck_resource.res MobileCheck_resource.rc
qmake: FORCE
@$(QMAKE) -spec win32-msvc2013 "CONFIG+=debug" "CONFIG+=qml_debug" -o Makefile.Debug MainWidget.pro
qmake_all: FORCE
dist:
$(ZIP) MobileCheck.zip $(SOURCES) $(DIST) MainWidget.pro E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\features\spec_pre.prf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\common\angle.conf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\common\msvc-base.conf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\common\msvc-desktop.conf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\qconfig.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_3dcore.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_3dcore_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_3dinput.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_3dinput_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_3dlogic.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_3dlogic_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_3dquick.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_3dquick_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_3dquickinput.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_3dquickinput_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_3dquickrender.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_3dquickrender_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_3drender.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_3drender_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_axbase.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_axbase_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_axcontainer.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_axcontainer_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_axserver.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_axserver_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_bluetooth.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_bluetooth_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_bootstrap_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_clucene_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_concurrent.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_concurrent_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_core.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_core_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_dbus.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_dbus_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_designer.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_designer_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_designercomponents_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_gui.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_gui_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_help.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_help_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_labscontrols_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_labstemplates_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_location.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_location_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_multimedia.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_multimedia_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_multimediawidgets.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_multimediawidgets_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_network.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_network_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_nfc.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_nfc_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_opengl.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_opengl_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_openglextensions.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_openglextensions_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_platformsupport_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_positioning.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_positioning_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_printsupport.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_printsupport_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_qml.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_qml_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_qmldevtools_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_qmltest.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_qmltest_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_qtmultimediaquicktools_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_quick.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_quick_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_quickparticles_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_quickwidgets.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_quickwidgets_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_script.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_script_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_scripttools.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_scripttools_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_sensors.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_sensors_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_serialbus.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_serialbus_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_serialport.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_serialport_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_sql.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_sql_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_svg.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_svg_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_testlib.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_testlib_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_uiplugin.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_uitools.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_uitools_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_webchannel.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_webchannel_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_webengine.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_webengine_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_webenginecore.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_webenginecore_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_webenginecoreheaders_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_webenginewidgets.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_webenginewidgets_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_websockets.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_websockets_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_webview.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_webview_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_widgets.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_widgets_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_winextras.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_winextras_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_xml.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_xml_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_xmlpatterns.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_xmlpatterns_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\modules\qt_lib_zlib_private.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\features\qt_functions.prf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\features\qt_config.prf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\features\win32\qt_config.prf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\win32-msvc2013\qmake.conf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\features\spec_post.prf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\features\exclusive_builds.prf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\features\default_pre.prf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\features\win32\default_pre.prf Protocal\Protocal.pri parseJson\parseJson.pri Database\Database.pri Common\Common.pri Mesgbox\MsgBox.pri exportword\QWord.pri LoginWidget\LoginWidget.pri QrcodeGenerate\QrcodeGenerate.pri QPrintQcrode\QPrintQcrode.pri E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\features\resolve_config.prf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\features\exclusive_builds_post.prf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\features\default_post.prf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\features\build_pass.prf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\features\qml_debug.prf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\features\win32\rtti.prf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\features\precompile_header.prf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\features\warn_on.prf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\features\qt.prf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\features\resources.prf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\features\moc.prf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\features\win32\opengl.prf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\features\uic.prf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\features\win32\dumpcpp.prf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\features\file_copies.prf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\features\win32\windows.prf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\features\testcase_targets.prf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\features\exceptions.prf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\features\yacc.prf E:\QtX86\Qt5.6.3\5.6.3\msvc2013\mkspecs\features\lex.prf MainWidget.pro Mesgbox\pic.qrc LoginWidget\pic.qrc source.qrc pic.qrc E:\QtX86\Qt5.6.3\5.6.3\msvc2013\lib\qtmaind.prl E:\QtX86\Qt5.6.3\5.6.3\msvc2013\lib\Qt5PrintSupportd.prl E:\QtX86\Qt5.6.3\5.6.3\msvc2013\lib\Qt5AxContainerd.prl E:\QtX86\Qt5.6.3\5.6.3\msvc2013\lib\Qt5AxBased.prl E:\QtX86\Qt5.6.3\5.6.3\msvc2013\lib\Qt5Widgetsd.prl E:\QtX86\Qt5.6.3\5.6.3\msvc2013\lib\Qt5Guid.prl E:\QtX86\Qt5.6.3\5.6.3\msvc2013\lib\Qt5Networkd.prl E:\QtX86\Qt5.6.3\5.6.3\msvc2013\lib\Qt5Scriptd.prl E:\QtX86\Qt5.6.3\5.6.3\msvc2013\lib\Qt5Sqld.prl E:\QtX86\Qt5.6.3\5.6.3\msvc2013\lib\Qt5Cored.prl Mesgbox\pic.qrc LoginWidget\pic.qrc source.qrc pic.qrc Protocal\protocal.h Protocal\executecmd.h parseJson\parsejson.h Database\mdatabase.h Database\cmddata.h Common\applist.h Common\stackwidget.h Mesgbox\msgbox.h exportword\qword.h \ LoginWidget\loginwidget.h LoginWidget\mybutton.h LoginWidget\authoriza.h QrcodeGenerate\qrcodegenerate.h QPrintQcrode\qprintqcrode.h mainwidget.h upwidget.h downwidget.h maskmainwidget.h mybutton.h adb.h socket.h tcpthread.h Protocal\protocal.cpp Protocal\executecmd.cpp parseJson\parsejson.cpp Database\mdatabase.cpp Database\cmddata.cpp Common\applist.cpp Common\stackwidget.cpp Mesgbox\msgbox.cpp exportword\qword.cpp LoginWidget\loginwidget.cpp LoginWidget\mybutton.cpp LoginWidget\authoriza.cpp QrcodeGenerate\qrcodegenerate.cpp QPrintQcrode\qprintqcrode.cpp main.cpp mainwidget.cpp upwidget.cpp downwidget.cpp maskmainwidget.cpp mybutton.cpp adb.cpp socket.cpp mainwidgetfunc.cpp homewidgetfun.cpp safecheckfun.cpp safecheckreslult.cpp checkallinfowidget.cpp countcheckinfo.cpp qrcodecheckinfo.cpp tcpthread.cpp homethread.cpp
clean: compiler_clean
-$(DEL_FILE) debug\protocal.obj debug\executecmd.obj debug\parsejson.obj debug\mdatabase.obj debug\cmddata.obj debug\applist.obj debug\stackwidget.obj debug\msgbox.obj debug\qword.obj debug\loginwidget.obj debug\mybutton.obj debug\authoriza.obj debug\qrcodegenerate.obj debug\qprintqcrode.obj debug\main.obj debug\mainwidget.obj debug\upwidget.obj debug\downwidget.obj debug\maskmainwidget.obj debug\mybutton.obj debug\adb.obj debug\socket.obj debug\mainwidgetfunc.obj debug\homewidgetfun.obj debug\safecheckfun.obj debug\safecheckreslult.obj debug\checkallinfowidget.obj debug\countcheckinfo.obj debug\qrcodecheckinfo.obj debug\tcpthread.obj debug\homethread.obj debug\qrc_pic.obj debug\qrc_source.obj debug\moc_protocal.obj debug\moc_executecmd.obj debug\moc_parsejson.obj debug\moc_mdatabase.obj debug\moc_cmddata.obj debug\moc_stackwidget.obj debug\moc_msgbox.obj debug\moc_qword.obj debug\moc_loginwidget.obj debug\moc_mybutton.obj debug\moc_authoriza.obj debug\moc_qrcodegenerate.obj debug\moc_qprintqcrode.obj debug\moc_mainwidget.obj debug\moc_upwidget.obj debug\moc_downwidget.obj debug\moc_maskmainwidget.obj debug\moc_adb.obj debug\moc_socket.obj debug\moc_tcpthread.obj
-$(DEL_FILE) debug\MobileCheck.exp debug\MobileCheck.vc.pdb debug\MobileCheck.ilk debug\MobileCheck.idb
-$(DEL_FILE) debug\MobileCheck_resource.res
distclean: clean
-$(DEL_FILE) debug\MobileCheck.lib debug\MobileCheck.pdb
-$(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
$(OBJECTS):
check: first
benchmark: first
compiler_no_pch_compiler_make_all:
compiler_no_pch_compiler_clean:
compiler_rcc_make_all: debug\qrc_pic.cpp debug\qrc_pic.cpp debug\qrc_source.cpp debug\qrc_pic.cpp
compiler_rcc_clean:
-$(DEL_FILE) debug\qrc_pic.cpp debug\qrc_pic.cpp debug\qrc_source.cpp debug\qrc_pic.cpp
debug\qrc_pic.cpp: Mesgbox\pic.qrc \
Mesgbox\pic\close.png \
Mesgbox\pic\export.png \
Mesgbox\pic\cancel.png \
Mesgbox\pic\close1.jpg \
Mesgbox\pic\min.png \
Mesgbox\pic\modify.png
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\bin\rcc.exe -name pic Mesgbox\pic.qrc -o debug\qrc_pic.cpp
debug\qrc_pic.cpp: LoginWidget\pic.qrc \
LoginWidget\pic\close.png \
LoginWidget\pic\labelic.jpg \
LoginWidget\pic\logo.ico \
LoginWidget\pic\labericon.jpg \
LoginWidget\pic\titlelabel.bmp \
LoginWidget\pic\close1.jpg \
LoginWidget\pic\MessCheckDo.png \
LoginWidget\pic\titlelabel.jpg \
LoginWidget\pic\min.png \
sourceskin\loginInitial.png \
sourceskin\loginpress.png \
sourceskin\loginhover.png
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\bin\rcc.exe -name pic LoginWidget\pic.qrc -o debug\qrc_pic.cpp
debug\qrc_source.cpp: source.qrc \
main.qss \
screen\select.ico \
sourceskin\exportcanpress.png \
sourceskin\callhisinit.png \
sourceskin\messagehover.png \
sourceskin\messageinit.png \
sourceskin\unpress.png \
sourceskin\safeinfohover.png \
sourceskin\contactinit.png \
sourceskin\mesaagepress.png \
sourceskin\callhishover.png \
sourceskin\safeInfopress.png \
sourceskin\safeinfoInit.png \
sourceskin\exinfoinit.png \
sourceskin\exportmsgpress.png \
sourceskin\exinfopress.png \
sourceskin\checkmohover.png \
sourceskin\uninit.png \
sourceskin\exportmsginit.png \
sourceskin\setwhitehover.png \
sourceskin\setwhiteinit.png \
sourceskin\callhispress.png \
sourceskin\filehover.png \
sourceskin\unhover.png \
sourceskin\checkmopress.png \
sourceskin\exporthover.png \
sourceskin\fileinit.png \
sourceskin\exportcaninit.png \
sourceskin\contactpress.png \
sourceskin\exportmsghover.png \
sourceskin\checkmoinit.png \
sourceskin\exinfohover.png \
sourceskin\filepress.png \
sourceskin\setwhitepress.png \
source\mainbackgroud.png \
source\title_zg.png \
source\Image\title.png \
source\icon\min.png \
source\icon\resultUp.png \
source\icon\safeUp.png \
source\icon\close.png \
source\icon\logo.ico \
source\icon\Btn_MainForm_Normal.png \
source\icon\home1.png \
source\icon\countUp.png \
source\icon\erweiUp.png \
source\icon\result.png \
source\icon\safe.png \
source\icon\erwei.png \
source\icon\safe1.png \
source\icon\skin.png \
source\icon\close_normal.png \
source\icon\contect.png \
source\icon\max.png \
source\icon\menu.png \
source\icon\count.png \
source\icon\result1.png \
source\icon\close_hover.png \
source\icon\net.png \
source\icon\vrius.png \
source\icon\Info.png \
source\icon\Btn_MainForm_Max.png \
source\icon\power.png \
source\icon\home.png \
source\icon\InfoUp.png \
source\icon1\close.png \
source\icon1\save.png \
source\icon1\menu.png \
source\icon1\SafeResut.png \
source\icon1\export.png \
source\icon1\skin.png \
source\icon1\safeCheck.png \
source\icon1\SafeRepro.png \
source\icon1\ContactCheck.png \
source\icon1\min.png \
sourceskin\selectuserhover.png \
sourceskin\adduserpress.png \
sourceskin\swepinit.png \
sourceskin\checkcountinit.png \
sourceskin\Infomenupress.png \
sourceskin\homehover.png \
sourceskin\exportcanpress.png \
sourceskin\printcheckpress.png \
sourceskin\modifypasshover.png \
sourceskin\countmenuinit.png \
sourceskin\homemenu.png \
sourceskin\safePohover.png \
sourceskin\flaginit.png \
sourceskin\selelctuserinit.png \
sourceskin\safeRehover.png \
sourceskin\whitedehover.png \
sourceskin\selectuserpress.png \
sourceskin\Infomenuinit.png \
sourceskin\flaghover.png \
sourceskin\setwhpress.png \
sourceskin\viewinit.png \
sourceskin\homeinit.png \
sourceskin\saveqrhover.png \
sourceskin\viewpress.png \
sourceskin\swephover.png \
sourceskin\passmodifyhover.png \
sourceskin\modifyinfohover.png \
sourceskin\homepress.png \
sourceskin\titlelogin.png \
sourceskin\countallhover.png \
sourceskin\selectinit.png \
sourceskin\exporthover.png \
sourceskin\setwhinit.png \
sourceskin\deleteinfohover.png \
sourceskin\homemenuhover.png \
sourceskin\safeRepress.png \
sourceskin\qrmenuinit.png \
sourceskin\whitedepress.png \
sourceskin\adduserinit.png \
sourceskin\flagpress.png \
sourceskin\modifypasspress.png \
sourceskin\countmenuhover.png \
sourceskin\safePopress.png \
sourceskin\mobilecheckhover.png \
sourceskin\mobilecheckInit.png \
sourceskin\modifyinfopress.png \
sourceskin\countallpress.png \
sourceskin\selecthover.png \
sourceskin\whitedeinit.png \
sourceskin\safecheck.png \
sourceskin\countallinit.png \
sourceskin\homemenucheck.png \
sourceskin\saveqrpress.png \
sourceskin\deleteinfopress.png \
sourceskin\sweppress.png \
sourceskin\passmodifypress.png \
sourceskin\qrmenuhover.png \
sourceskin\modifyinfoinit.png \
sourceskin\checkcounthover.png \
sourceskin\safecheckhover.png \
sourceskin\titleitem.png \
sourceskin\modifypassinit.png \
sourceskin\mobilecheckpress.png \
sourceskin\deleteinfoinit.png \
sourceskin\loginhover.png \
sourceskin\printcheckinit.png \
sourceskin\countmenupress.png \
sourceskin\safeReInit.png \
sourceskin\safePoinit.png \
sourceskin\adduserhover.png \
sourceskin\selectpress.png \
sourceskin\exportcaninit.png \
sourceskin\checkcountpress.png \
sourceskin\safecheckpress.png \
sourceskin\Infomenuhover.png \
sourceskin\saveqrinit.png \
sourceskin\loginpress.png \
sourceskin\loginback.png \
sourceskin\printcheckhover.png \
sourceskin\setwhhover.png \
sourceskin\qrmenupress.png \
sourceskin\loginInitial.png \
sourceskin\viewhover.png \
sourceskin\passmodifyinit.png \
sourceskin\prehover.png \
sourceskin\lastpress.png \
sourceskin\preress.png \
sourceskin\goinit.png \
sourceskin\useraddpress.png \
sourceskin\nextpress.png \
sourceskin\gopress.png \
sourceskin\shortmsghover.png \
sourceskin\firsthover.png \
sourceskin\lasthover.png \
sourceskin\nextinit.png \
sourceskin\shortmsginit.png \
sourceskin\preinit.png \
sourceskin\nexthover.png \
sourceskin\lastinit.png \
sourceskin\useraddinit.png \
sourceskin\shortmsgpress.png \
sourceskin\firstinit.png \
sourceskin\useraddhover.png \
sourceskin\firtstprss.png \
sourceskin\gohover.png \
LoginWidget\pic\titlelabel.jpg \
source\Image\cutoff1.jpg \
source\Image\IconNo.png \
source\Image\jiance.png \
source\Image\androidint.png \
source\Image\black.jpg \
source\Image\cutoff.jpg \
source\Image\trans.jpg \
source\Image\anzhuo.jpg \
source\icon\close4.png \
source\icon\close_normal.png \
source\icon1\exportup.png \
source\icon1\callhis.png \
source\icon1\Fileup.png \
source\icon1\MessCheck.png \
source\icon1\MessageEx.png \
source\icon1\FileDownDo.png \
source\icon1\MessCheckDo.png \
source\icon1\contactDo.png \
source\icon1\checkup.png \
source\icon1\contactup.png \
source\icon1\123.png \
source\icon1\567.jpg \
source\icon1\containfoDo.png \
source\icon1\messageup.png \
source\icon1\82.png \
source\icon1\callhistoryup.png \
source\icon1\CallDown.png \
source\icon1\MessageExDo.png \
source\icon1\84.png \
source\icon1\85.png \
source\icon1\MessageDownDo.png \
source\icon1\MessageDown.png \
source\icon1\containfo.png
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\bin\rcc.exe -name source source.qrc -o debug\qrc_source.cpp
debug\qrc_pic.cpp: pic.qrc \
sourceskin\useraddpress.png \
sourceskin\useraddhover.png \
sourceskin\useraddinit.png
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\bin\rcc.exe -name pic pic.qrc -o debug\qrc_pic.cpp
compiler_dumpcpp_decl_make_all:
compiler_dumpcpp_decl_clean:
compiler_moc_header_make_all: debug\moc_protocal.cpp debug\moc_executecmd.cpp debug\moc_parsejson.cpp debug\moc_mdatabase.cpp debug\moc_cmddata.cpp debug\moc_stackwidget.cpp debug\moc_msgbox.cpp debug\moc_qword.cpp debug\moc_loginwidget.cpp debug\moc_mybutton.cpp debug\moc_authoriza.cpp debug\moc_qrcodegenerate.cpp debug\moc_qprintqcrode.cpp debug\moc_mainwidget.cpp debug\moc_upwidget.cpp debug\moc_downwidget.cpp debug\moc_maskmainwidget.cpp debug\moc_mybutton.cpp debug\moc_adb.cpp debug\moc_socket.cpp debug\moc_tcpthread.cpp
compiler_moc_header_clean:
-$(DEL_FILE) debug\moc_protocal.cpp debug\moc_executecmd.cpp debug\moc_parsejson.cpp debug\moc_mdatabase.cpp debug\moc_cmddata.cpp debug\moc_stackwidget.cpp debug\moc_msgbox.cpp debug\moc_qword.cpp debug\moc_loginwidget.cpp debug\moc_mybutton.cpp debug\moc_authoriza.cpp debug\moc_qrcodegenerate.cpp debug\moc_qprintqcrode.cpp debug\moc_mainwidget.cpp debug\moc_upwidget.cpp debug\moc_downwidget.cpp debug\moc_maskmainwidget.cpp debug\moc_mybutton.cpp debug\moc_adb.cpp debug\moc_socket.cpp debug\moc_tcpthread.cpp
debug\moc_protocal.cpp: E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\QObject \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qobject.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qobjectdefs.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qnamespace.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qglobal.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qconfig.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qfeatures.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qsystemdetection.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qprocessordetection.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qcompilerdetection.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qtypeinfo.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qtypetraits.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qisenum.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qsysinfo.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qlogging.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qflags.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qbasicatomic.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_bootstrap.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qgenericatomic.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_cxx11.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_gcc.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_msvc.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_armv7.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_armv6.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_armv5.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_ia64.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_x86.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_unix.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qglobalstatic.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qmutex.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qnumeric.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qversiontagging.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qobjectdefs_impl.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qstring.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qchar.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qbytearray.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qrefcount.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qarraydata.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qstringbuilder.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qlist.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qalgorithms.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qiterator.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qhashfunctions.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qpair.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qbytearraylist.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qstringlist.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qregexp.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qstringmatcher.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qcoreevent.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qscopedpointer.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qmetatype.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qvarlengtharray.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qcontainerfwd.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qobject_impl.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\QString \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qmath.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtWidgets\QMessageBox \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtWidgets\qmessagebox.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtWidgets\qdialog.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtWidgets\qwidget.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qwindowdefs.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qwindowdefs_win.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qmargins.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qpaintdevice.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qrect.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qsize.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qpoint.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qpalette.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qcolor.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qrgb.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qrgba64.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qbrush.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qvector.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qmatrix.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qpolygon.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qregion.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qdatastream.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qiodevice.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qline.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qtransform.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qpainterpath.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qimage.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qpixelformat.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qpixmap.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qsharedpointer.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qshareddata.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qhash.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qsharedpointer_impl.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qfont.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qfontmetrics.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qfontinfo.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtWidgets\qsizepolicy.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qcursor.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qkeysequence.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qevent.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qvariant.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qmap.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qdebug.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qtextstream.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qlocale.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qset.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qcontiguouscache.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qurl.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qurlquery.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qfile.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qfiledevice.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qvector2d.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qtouchdevice.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\QDataStream \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\QByteArray \
Protocal\protocal.h
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\bin\moc.exe $(DEFINES) -D_MSC_VER=1800 -D_WIN32 -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/mkspecs/win32-msvc2013 -ID:/MobileCheck -ID:/MobileCheck/include -ID:/MobileCheck/Protocal -ID:/MobileCheck/include -ID:/MobileCheck/parseJson -ID:/MobileCheck/include -ID:/MobileCheck/Database -ID:/MobileCheck/include -ID:/MobileCheck/Common -ID:/MobileCheck/include -ID:/MobileCheck/Mesgbox -ID:/MobileCheck/include -ID:/MobileCheck/exportword -ID:/MobileCheck/include -ID:/MobileCheck/LoginWidget -ID:/MobileCheck/include -ID:/MobileCheck/QrcodeGenerate -ID:/MobileCheck/include -ID:/MobileCheck/QPrintQcrode -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtPrintSupport -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/ActiveQt -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtWidgets -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtGui -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtANGLE -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtNetwork -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtScript -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtSql -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtCore Protocal\protocal.h -o debug\moc_protocal.cpp
debug\moc_executecmd.cpp: E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\QObject \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qobject.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qobjectdefs.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qnamespace.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qglobal.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qconfig.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qfeatures.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qsystemdetection.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qprocessordetection.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qcompilerdetection.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qtypeinfo.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qtypetraits.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qisenum.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qsysinfo.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qlogging.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qflags.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qbasicatomic.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_bootstrap.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qgenericatomic.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_cxx11.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_gcc.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_msvc.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_armv7.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_armv6.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_armv5.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_ia64.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_x86.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_unix.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qglobalstatic.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qmutex.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qnumeric.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qversiontagging.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qobjectdefs_impl.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qstring.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qchar.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qbytearray.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qrefcount.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qarraydata.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qstringbuilder.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qlist.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qalgorithms.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qiterator.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qhashfunctions.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qpair.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qbytearraylist.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qstringlist.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qregexp.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qstringmatcher.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qcoreevent.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qscopedpointer.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qmetatype.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qvarlengtharray.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qcontainerfwd.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qobject_impl.h \
Protocal\protocal.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\QString \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qmath.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtWidgets\QMessageBox \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtWidgets\qmessagebox.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtWidgets\qdialog.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtWidgets\qwidget.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qwindowdefs.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qwindowdefs_win.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qmargins.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qpaintdevice.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qrect.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qsize.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qpoint.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qpalette.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qcolor.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qrgb.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qrgba64.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qbrush.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qvector.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qmatrix.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qpolygon.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qregion.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qdatastream.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qiodevice.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qline.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qtransform.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qpainterpath.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qimage.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qpixelformat.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qpixmap.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qsharedpointer.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qshareddata.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qhash.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qsharedpointer_impl.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qfont.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qfontmetrics.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qfontinfo.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtWidgets\qsizepolicy.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qcursor.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qkeysequence.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qevent.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qvariant.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qmap.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qdebug.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qtextstream.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qlocale.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qset.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qcontiguouscache.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qurl.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qurlquery.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qfile.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qfiledevice.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qvector2d.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qtouchdevice.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\QDataStream \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\QByteArray \
Protocal\executecmd.h
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\bin\moc.exe $(DEFINES) -D_MSC_VER=1800 -D_WIN32 -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/mkspecs/win32-msvc2013 -ID:/MobileCheck -ID:/MobileCheck/include -ID:/MobileCheck/Protocal -ID:/MobileCheck/include -ID:/MobileCheck/parseJson -ID:/MobileCheck/include -ID:/MobileCheck/Database -ID:/MobileCheck/include -ID:/MobileCheck/Common -ID:/MobileCheck/include -ID:/MobileCheck/Mesgbox -ID:/MobileCheck/include -ID:/MobileCheck/exportword -ID:/MobileCheck/include -ID:/MobileCheck/LoginWidget -ID:/MobileCheck/include -ID:/MobileCheck/QrcodeGenerate -ID:/MobileCheck/include -ID:/MobileCheck/QPrintQcrode -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtPrintSupport -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/ActiveQt -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtWidgets -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtGui -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtANGLE -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtNetwork -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtScript -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtSql -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtCore Protocal\executecmd.h -o debug\moc_executecmd.cpp
debug\moc_parsejson.cpp: E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\QObject \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qobject.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qobjectdefs.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qnamespace.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qglobal.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qconfig.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qfeatures.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qsystemdetection.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qprocessordetection.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qcompilerdetection.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qtypeinfo.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qtypetraits.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qisenum.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qsysinfo.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qlogging.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qflags.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qbasicatomic.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_bootstrap.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qgenericatomic.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_cxx11.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_gcc.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_msvc.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_armv7.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_armv6.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_armv5.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_ia64.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_x86.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_unix.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qglobalstatic.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qmutex.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qnumeric.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qversiontagging.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qobjectdefs_impl.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qstring.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qchar.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qbytearray.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qrefcount.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qarraydata.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qstringbuilder.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qlist.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qalgorithms.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qiterator.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qhashfunctions.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qpair.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qbytearraylist.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qstringlist.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qregexp.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qstringmatcher.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qcoreevent.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qscopedpointer.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qmetatype.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qvarlengtharray.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qcontainerfwd.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qobject_impl.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\QJsonArray \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qjsonarray.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qjsonvalue.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\QJsonDocument \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qjsondocument.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\QJsonObject \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qjsonobject.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\QJsonParseError \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\QByteArray \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\QJsonValue \
Database\mdatabase.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtSql\QSqlDatabase \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtSql\qsqldatabase.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtSql\qsql.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtSql\QSql \
Database\cmddata.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtSql\QSqlQuery \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtSql\qsqlquery.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtSql\QSqlRecord \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtSql\qsqlrecord.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\QStringList \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\QString \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\QSettings \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qsettings.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qvariant.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qmap.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qdebug.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qhash.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qtextstream.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qiodevice.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qlocale.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qshareddata.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qvector.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qpoint.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qset.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qcontiguouscache.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\QDateTime \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qdatetime.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtWidgets\QLabel \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtWidgets\qlabel.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtWidgets\qframe.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtWidgets\qwidget.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qwindowdefs.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qwindowdefs_win.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qmargins.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qpaintdevice.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qrect.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qsize.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qpalette.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qcolor.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qrgb.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qrgba64.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qbrush.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qmatrix.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qpolygon.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qregion.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qdatastream.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qline.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qtransform.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qpainterpath.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qimage.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qpixelformat.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qpixmap.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qsharedpointer.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qsharedpointer_impl.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qfont.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qfontmetrics.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qfontinfo.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtWidgets\qsizepolicy.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qcursor.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qkeysequence.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qevent.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qurl.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qurlquery.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qfile.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qfiledevice.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qvector2d.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtGui\qtouchdevice.h \
parseJson\parsejson.h
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\bin\moc.exe $(DEFINES) -D_MSC_VER=1800 -D_WIN32 -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/mkspecs/win32-msvc2013 -ID:/MobileCheck -ID:/MobileCheck/include -ID:/MobileCheck/Protocal -ID:/MobileCheck/include -ID:/MobileCheck/parseJson -ID:/MobileCheck/include -ID:/MobileCheck/Database -ID:/MobileCheck/include -ID:/MobileCheck/Common -ID:/MobileCheck/include -ID:/MobileCheck/Mesgbox -ID:/MobileCheck/include -ID:/MobileCheck/exportword -ID:/MobileCheck/include -ID:/MobileCheck/LoginWidget -ID:/MobileCheck/include -ID:/MobileCheck/QrcodeGenerate -ID:/MobileCheck/include -ID:/MobileCheck/QPrintQcrode -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtPrintSupport -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/ActiveQt -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtWidgets -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtGui -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtANGLE -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtNetwork -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtScript -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtSql -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtCore parseJson\parsejson.h -o debug\moc_parsejson.cpp
debug\moc_mdatabase.cpp: E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtSql\QSqlDatabase \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtSql\qsqldatabase.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qstring.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qchar.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qglobal.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qconfig.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qfeatures.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qsystemdetection.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qprocessordetection.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qcompilerdetection.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qtypeinfo.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qtypetraits.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qisenum.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qsysinfo.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qlogging.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qflags.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qbasicatomic.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_bootstrap.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qgenericatomic.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_cxx11.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_gcc.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_msvc.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_armv7.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_armv6.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_armv5.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_ia64.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_x86.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_unix.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qglobalstatic.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qmutex.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qnumeric.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qversiontagging.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qbytearray.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qrefcount.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qnamespace.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qarraydata.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qstringbuilder.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtSql\qsql.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtSql\QSql \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\QObject \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qobject.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qobjectdefs.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qobjectdefs_impl.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qlist.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qalgorithms.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qiterator.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qhashfunctions.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qpair.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qbytearraylist.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qstringlist.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qregexp.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qstringmatcher.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qcoreevent.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qscopedpointer.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qmetatype.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qvarlengtharray.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qcontainerfwd.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qobject_impl.h \
Database\mdatabase.h
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\bin\moc.exe $(DEFINES) -D_MSC_VER=1800 -D_WIN32 -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/mkspecs/win32-msvc2013 -ID:/MobileCheck -ID:/MobileCheck/include -ID:/MobileCheck/Protocal -ID:/MobileCheck/include -ID:/MobileCheck/parseJson -ID:/MobileCheck/include -ID:/MobileCheck/Database -ID:/MobileCheck/include -ID:/MobileCheck/Common -ID:/MobileCheck/include -ID:/MobileCheck/Mesgbox -ID:/MobileCheck/include -ID:/MobileCheck/exportword -ID:/MobileCheck/include -ID:/MobileCheck/LoginWidget -ID:/MobileCheck/include -ID:/MobileCheck/QrcodeGenerate -ID:/MobileCheck/include -ID:/MobileCheck/QPrintQcrode -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtPrintSupport -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/ActiveQt -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtWidgets -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtGui -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtANGLE -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtNetwork -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtScript -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtSql -IE:/QtX86/Qt5.6.3/5.6.3/msvc2013/include/QtCore Database\mdatabase.h -o debug\moc_mdatabase.cpp
debug\moc_cmddata.cpp: E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\QObject \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qobject.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qobjectdefs.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qnamespace.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qglobal.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qconfig.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qfeatures.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qsystemdetection.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qprocessordetection.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qcompilerdetection.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qtypeinfo.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qtypetraits.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qisenum.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qsysinfo.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qlogging.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qflags.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qbasicatomic.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_bootstrap.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qgenericatomic.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_cxx11.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_gcc.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_msvc.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_armv7.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_armv6.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_armv5.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_ia64.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_x86.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qatomic_unix.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qglobalstatic.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qmutex.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qnumeric.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qversiontagging.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qobjectdefs_impl.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qstring.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qchar.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qbytearray.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qrefcount.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qarraydata.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qstringbuilder.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qlist.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qalgorithms.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qiterator.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qhashfunctions.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qpair.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qbytearraylist.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qstringlist.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qregexp.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qstringmatcher.h \
E:\QtX86\Qt5.6.3\5.6.3\msvc2013\include\QtCore\qcoreevent.h \