-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.Release
2247 lines (2135 loc) · 144 KB
/
Makefile.Release
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: CloudDisk
# Generated by qmake (3.1) (Qt 5.15.2)
# Project: CloudDisk.pro
# Template: app
#############################################################################
MAKEFILE = Makefile.Release
EQ = =
####### Compiler, tools and options
CC = cl
CXX = cl
DEFINES = -DUNICODE -D_UNICODE -DWIN32 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -DNDEBUG -DQT_NO_DEBUG -DQT_QUICK_LIB -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB
CFLAGS = -nologo -Zc:wchar_t -FS -Zc:strictStrings -O2 -MD -W3 -w44456 -w44457 -w44458 $(DEFINES)
CXXFLAGS = -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -O2 -MD -W3 -w34100 -w34189 -w44996 -w44456 -w44457 -w44458 -wd4577 -wd4467 -EHsc $(DEFINES)
INCPATH = -I. -Ithird\libcurl\include -I..\..\QT5\5.15.2\msvc2019\include -I..\..\QT5\5.15.2\msvc2019\include\QtQuick -I..\..\QT5\5.15.2\msvc2019\include\QtWidgets -I..\..\QT5\5.15.2\msvc2019\include\QtGui -I..\..\QT5\5.15.2\msvc2019\include\QtANGLE -I..\..\QT5\5.15.2\msvc2019\include\QtQmlModels -I..\..\QT5\5.15.2\msvc2019\include\QtQml -I..\..\QT5\5.15.2\msvc2019\include\QtNetwork -I..\..\QT5\5.15.2\msvc2019\include\QtCore -Itmp\release\moc -I/include -I..\..\QT5\5.15.2\msvc2019\mkspecs\win32-msvc
LINKER = link
LFLAGS = /NOLOGO /DYNAMICBASE /NXCOMPAT /OPT:REF /INCREMENTAL:NO /SUBSYSTEM:WINDOWS "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'"
LIBS = /LIBPATH:D:\src_cloud\cloud_disk\third\libcurl\libs\x86 D:\src_cloud\cloud_disk\third\libcurl\libs\x86\libcurl_imp.lib D:\QT5\5.15.2\msvc2019\lib\Qt5Quick.lib D:\QT5\5.15.2\msvc2019\lib\Qt5Widgets.lib D:\QT5\5.15.2\msvc2019\lib\Qt5Gui.lib D:\QT5\5.15.2\msvc2019\lib\Qt5QmlModels.lib D:\QT5\5.15.2\msvc2019\lib\Qt5Qml.lib D:\QT5\5.15.2\msvc2019\lib\Qt5Network.lib D:\QT5\5.15.2\msvc2019\lib\Qt5Core.lib D:\src_cloud\cloud_disk\tmp\release\obj\main.res D:\QT5\5.15.2\msvc2019\lib\qtmain.lib /LIBPATH:C:\opensslx86\lib /LIBPATH:C:\Utils\my_sql\mysql-5.7.25-win32\lib /LIBPATH:C:\Utils\postgresqlx86\pgsql\lib shell32.lib
QMAKE = D:\QT5\5.15.2\msvc2019\bin\qmake.exe
DEL_FILE = del
CHK_DIR_EXISTS= if not exist
MKDIR = mkdir
COPY = copy /y
COPY_FILE = copy /y
COPY_DIR = xcopy /s /q /y /i
INSTALL_FILE = copy /y
INSTALL_PROGRAM = copy /y
INSTALL_DIR = xcopy /s /q /y /i
QINSTALL = D:\QT5\5.15.2\msvc2019\bin\qmake.exe -install qinstall
QINSTALL_PROGRAM = D:\QT5\5.15.2\msvc2019\bin\qmake.exe -install qinstall -exe
DEL_FILE = del
SYMLINK = $(QMAKE) -install ln -f -s
DEL_DIR = rmdir
MOVE = move
IDC = idc
IDL = midl
ZIP = zip -r -9
DEF_FILE =
RES_FILE = D:\src_cloud\cloud_disk\tmp\release\obj\main.res
SED = $(QMAKE) -install sed
MOVE = move
####### Output directory
OBJECTS_DIR = tmp\release\obj
####### Files
SOURCES = allfileslistmodel.cpp \
completelistmodel.cpp \
downloadlistmodel.cpp \
ftpclient.cpp \
main.cpp \
qaesencryption.cpp \
qftp.cpp \
qurlinfo.cpp \
selectpathlistmodel.cpp \
uploadlistmodel.cpp release\main_qml.cpp \
release\qmls_DownloadTableView_qml.cpp \
release\qmls_LeftMenus_qml.cpp \
release\qmls_DownloadPage_qml.cpp \
release\qmls_CompletePage_qml.cpp \
release\qmls_UploadPage_qml.cpp \
release\qmls_AllFilesPage_qml.cpp \
release\qmls_AllFilesTableView_qml.cpp \
release\qmls_MessagePopup_qml.cpp \
release\qmls_UploadTableView_qml.cpp \
release\qmls_CompleteTableView_qml.cpp \
release\qmls_AllFilesGridView_qml.cpp \
release\qmls_AddFolderPopup_qml.cpp \
release\qmlcache_loader.cpp \
tmp\release\rcc\qrc_qml_qmlcache.cpp \
tmp\release\rcc\qrc_images.cpp \
tmp\release\moc\moc_allfileslistmodel.cpp \
tmp\release\moc\moc_completelistmodel.cpp \
tmp\release\moc\moc_downloadlistmodel.cpp \
tmp\release\moc\moc_ftpclient.cpp \
tmp\release\moc\moc_qaesencryption.cpp \
tmp\release\moc\moc_selectpathlistmodel.cpp \
tmp\release\moc\moc_uploadlistmodel.cpp
OBJECTS = tmp\release\obj\allfileslistmodel.obj \
tmp\release\obj\completelistmodel.obj \
tmp\release\obj\downloadlistmodel.obj \
tmp\release\obj\ftpclient.obj \
tmp\release\obj\main.obj \
tmp\release\obj\qaesencryption.obj \
tmp\release\obj\qftp.obj \
tmp\release\obj\qurlinfo.obj \
tmp\release\obj\selectpathlistmodel.obj \
tmp\release\obj\uploadlistmodel.obj \
tmp\release\obj\main_qml.obj \
tmp\release\obj\qmls_DownloadTableView_qml.obj \
tmp\release\obj\qmls_LeftMenus_qml.obj \
tmp\release\obj\qmls_DownloadPage_qml.obj \
tmp\release\obj\qmls_CompletePage_qml.obj \
tmp\release\obj\qmls_UploadPage_qml.obj \
tmp\release\obj\qmls_AllFilesPage_qml.obj \
tmp\release\obj\qmls_AllFilesTableView_qml.obj \
tmp\release\obj\qmls_MessagePopup_qml.obj \
tmp\release\obj\qmls_UploadTableView_qml.obj \
tmp\release\obj\qmls_CompleteTableView_qml.obj \
tmp\release\obj\qmls_AllFilesGridView_qml.obj \
tmp\release\obj\qmls_AddFolderPopup_qml.obj \
tmp\release\obj\qmlcache_loader.obj \
tmp\release\obj\qrc_qml_qmlcache.obj \
tmp\release\obj\qrc_images.obj \
tmp\release\obj\moc_allfileslistmodel.obj \
tmp\release\obj\moc_completelistmodel.obj \
tmp\release\obj\moc_downloadlistmodel.obj \
tmp\release\obj\moc_ftpclient.obj \
tmp\release\obj\moc_qaesencryption.obj \
tmp\release\obj\moc_selectpathlistmodel.obj \
tmp\release\obj\moc_uploadlistmodel.obj
DIST = aesni\aesni-enc-cbc.h \
aesni\aesni-enc-ecb.h \
aesni\aesni-key-exp.h \
aesni\aesni-key-init.h \
allfileslistmodel.h \
completelistmodel.h \
downloadlistmodel.h \
ftpclient.h \
qaesencryption.h \
qftp.h \
qurlinfo.h \
selectpathlistmodel.h \
uploadlistmodel.h allfileslistmodel.cpp \
completelistmodel.cpp \
downloadlistmodel.cpp \
ftpclient.cpp \
main.cpp \
qaesencryption.cpp \
qftp.cpp \
qurlinfo.cpp \
selectpathlistmodel.cpp \
uploadlistmodel.cpp
QMAKE_TARGET = CloudDisk
DESTDIR = Bin86\CloudDisk\ #avoid trailing-slash linebreak
TARGET = CloudDisk.exe
DESTDIR_TARGET = Bin86\CloudDisk\CloudDisk.exe
####### Implicit rules
.SUFFIXES: .c .cpp .cc .cxx
{D:/src_cloud/cloud_disk/tmp/release/ui}.cpp{tmp\release\obj\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fotmp\release\obj\ @<<
$<
<<
{D:/src_cloud/cloud_disk/tmp/release/ui}.cc{tmp\release\obj\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fotmp\release\obj\ @<<
$<
<<
{D:/src_cloud/cloud_disk/tmp/release/ui}.cxx{tmp\release\obj\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fotmp\release\obj\ @<<
$<
<<
{D:/src_cloud/cloud_disk/tmp/release/ui}.c{tmp\release\obj\}.obj::
$(CC) -c $(CFLAGS) $(INCPATH) -Fotmp\release\obj\ @<<
$<
<<
{tmp\release\moc}.cpp{tmp\release\obj\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fotmp\release\obj\ @<<
$<
<<
{tmp\release\moc}.cc{tmp\release\obj\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fotmp\release\obj\ @<<
$<
<<
{tmp\release\moc}.cxx{tmp\release\obj\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fotmp\release\obj\ @<<
$<
<<
{tmp\release\moc}.c{tmp\release\obj\}.obj::
$(CC) -c $(CFLAGS) $(INCPATH) -Fotmp\release\obj\ @<<
$<
<<
{release}.cpp{tmp\release\obj\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fotmp\release\obj\ @<<
$<
<<
{release}.cc{tmp\release\obj\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fotmp\release\obj\ @<<
$<
<<
{release}.cxx{tmp\release\obj\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fotmp\release\obj\ @<<
$<
<<
{release}.c{tmp\release\obj\}.obj::
$(CC) -c $(CFLAGS) $(INCPATH) -Fotmp\release\obj\ @<<
$<
<<
{.}.cpp{tmp\release\obj\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fotmp\release\obj\ @<<
$<
<<
{.}.cc{tmp\release\obj\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fotmp\release\obj\ @<<
$<
<<
{.}.cxx{tmp\release\obj\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fotmp\release\obj\ @<<
$<
<<
{.}.c{tmp\release\obj\}.obj::
$(CC) -c $(CFLAGS) $(INCPATH) -Fotmp\release\obj\ @<<
$<
<<
{tmp\release\rcc}.cpp{tmp\release\obj\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fotmp\release\obj\ @<<
$<
<<
{tmp\release\rcc}.cc{tmp\release\obj\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fotmp\release\obj\ @<<
$<
<<
{tmp\release\rcc}.cxx{tmp\release\obj\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fotmp\release\obj\ @<<
$<
<<
{tmp\release\rcc}.c{tmp\release\obj\}.obj::
$(CC) -c $(CFLAGS) $(INCPATH) -Fotmp\release\obj\ @<<
$<
<<
####### Build rules
first: all
all: Makefile.Release Bin86\CloudDisk\CloudDisk.exe
Bin86\CloudDisk\CloudDisk.exe: D:\QT5\5.15.2\msvc2019\lib\Qt5Quick.lib D:\QT5\5.15.2\msvc2019\lib\Qt5Widgets.lib D:\QT5\5.15.2\msvc2019\lib\Qt5Gui.lib D:\QT5\5.15.2\msvc2019\lib\Qt5QmlModels.lib D:\QT5\5.15.2\msvc2019\lib\Qt5Qml.lib D:\QT5\5.15.2\msvc2019\lib\Qt5Network.lib D:\QT5\5.15.2\msvc2019\lib\Qt5Core.lib D:\QT5\5.15.2\msvc2019\lib\qtmain.lib $(OBJECTS) D:\src_cloud\cloud_disk\tmp\release\obj\main.res
$(LINKER) $(LFLAGS) /MANIFEST:embed /OUT:$(DESTDIR_TARGET) @<<
tmp\release\obj\allfileslistmodel.obj tmp\release\obj\completelistmodel.obj tmp\release\obj\downloadlistmodel.obj tmp\release\obj\ftpclient.obj tmp\release\obj\main.obj tmp\release\obj\qaesencryption.obj tmp\release\obj\qftp.obj tmp\release\obj\qurlinfo.obj tmp\release\obj\selectpathlistmodel.obj tmp\release\obj\uploadlistmodel.obj tmp\release\obj\main_qml.obj tmp\release\obj\qmls_DownloadTableView_qml.obj tmp\release\obj\qmls_LeftMenus_qml.obj tmp\release\obj\qmls_DownloadPage_qml.obj tmp\release\obj\qmls_CompletePage_qml.obj tmp\release\obj\qmls_UploadPage_qml.obj tmp\release\obj\qmls_AllFilesPage_qml.obj tmp\release\obj\qmls_AllFilesTableView_qml.obj tmp\release\obj\qmls_MessagePopup_qml.obj tmp\release\obj\qmls_UploadTableView_qml.obj tmp\release\obj\qmls_CompleteTableView_qml.obj tmp\release\obj\qmls_AllFilesGridView_qml.obj tmp\release\obj\qmls_AddFolderPopup_qml.obj tmp\release\obj\qmlcache_loader.obj tmp\release\obj\qrc_qml_qmlcache.obj tmp\release\obj\qrc_images.obj
tmp\release\obj\moc_allfileslistmodel.obj tmp\release\obj\moc_completelistmodel.obj tmp\release\obj\moc_downloadlistmodel.obj tmp\release\obj\moc_ftpclient.obj tmp\release\obj\moc_qaesencryption.obj tmp\release\obj\moc_selectpathlistmodel.obj tmp\release\obj\moc_uploadlistmodel.obj
$(LIBS)
<<
D:\src_cloud\cloud_disk\tmp\release\obj\main.res: main.rc
rc /NOLOGO $(DEFINES) -fo D:\src_cloud\cloud_disk\tmp\release\obj\main.res main.rc
qmake: FORCE
@$(QMAKE) -o Makefile.Release CloudDisk.pro -spec win32-msvc "CONFIG+=qtquickcompiler"
qmake_all: FORCE
dist:
$(ZIP) CloudDisk.zip $(SOURCES) $(DIST) CloudDisk.pro ..\..\QT5\5.15.2\msvc2019\mkspecs\features\spec_pre.prf ..\..\QT5\5.15.2\msvc2019\mkspecs\common\angle.conf ..\..\QT5\5.15.2\msvc2019\mkspecs\common\windows-desktop.conf ..\..\QT5\5.15.2\msvc2019\mkspecs\features\win32\windows_vulkan_sdk.prf ..\..\QT5\5.15.2\msvc2019\mkspecs\common\windows-vulkan.conf ..\..\QT5\5.15.2\msvc2019\mkspecs\common\msvc-desktop.conf ..\..\QT5\5.15.2\msvc2019\mkspecs\qconfig.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_3danimation.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_3danimation_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_3dcore.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_3dcore_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_3dextras.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_3dextras_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_3dinput.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_3dinput_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_3dlogic.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_3dlogic_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_3dquick.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_3dquick_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_3dquickanimation.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_3dquickanimation_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_3dquickextras.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_3dquickextras_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_3dquickinput.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_3dquickinput_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_3dquickrender.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_3dquickrender_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_3dquickscene2d.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_3dquickscene2d_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_3drender.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_3drender_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_accessibility_support_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_axbase.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_axbase_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_axcontainer.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_axcontainer_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_axserver.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_axserver_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_bluetooth.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_bluetooth_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_bodymovin_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_bootstrap_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_charts.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_charts_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_concurrent.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_concurrent_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_core.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_core_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_datavisualization.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_datavisualization_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_dbus.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_dbus_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_designer.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_designer_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_designercomponents_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_devicediscovery_support_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_edid_support_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_egl_support_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_eventdispatcher_support_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_fb_support_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_fontdatabase_support_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_gamepad.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_gamepad_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_gui.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_gui_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_help.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_help_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_location.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_location_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_multimedia.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_multimedia_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_multimediawidgets.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_multimediawidgets_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_network.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_network_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_networkauth.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_networkauth_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_nfc.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_nfc_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_opengl.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_opengl_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_openglextensions.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_openglextensions_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_packetprotocol_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_platformcompositor_support_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_positioning.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_positioning_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_positioningquick.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_positioningquick_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_printsupport.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_printsupport_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_purchasing.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_purchasing_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_qml.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_qml_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_qmldebug_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_qmldevtools_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_qmlmodels.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_qmlmodels_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_qmltest.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_qmltest_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_qmlworkerscript.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_qmlworkerscript_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_qtmultimediaquicktools_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_quick.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_quick3d.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_quick3d_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_quick3dassetimport.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_quick3dassetimport_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_quick3drender.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_quick3drender_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_quick3druntimerender.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_quick3druntimerender_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_quick3dutils.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_quick3dutils_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_quick_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_quickcontrols2.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_quickcontrols2_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_quickparticles_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_quickshapes_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_quicktemplates2.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_quicktemplates2_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_quickwidgets.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_quickwidgets_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_remoteobjects.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_remoteobjects_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_repparser.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_repparser_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_script.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_script_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_scripttools.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_scripttools_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_scxml.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_scxml_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_sensors.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_sensors_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_serialbus.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_serialbus_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_serialport.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_serialport_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_sql.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_sql_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_svg.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_svg_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_testlib.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_testlib_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_texttospeech.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_texttospeech_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_theme_support_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_uiplugin.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_uitools.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_uitools_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_virtualkeyboard.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_virtualkeyboard_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_vulkan_support_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_webchannel.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_webchannel_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_webengine.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_webengine_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_webenginecore.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_webenginecore_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_webenginecoreheaders_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_webenginewidgets.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_webenginewidgets_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_websockets.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_websockets_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_webview.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_webview_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_widgets.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_widgets_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_windowsuiautomation_support_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_winextras.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_winextras_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_xml.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_xml_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_xmlpatterns.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_xmlpatterns_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\modules\qt_lib_zlib_private.pri ..\..\QT5\5.15.2\msvc2019\mkspecs\features\qt_functions.prf ..\..\QT5\5.15.2\msvc2019\mkspecs\features\qt_config.prf ..\..\QT5\5.15.2\msvc2019\mkspecs\win32-msvc\qmake.conf ..\..\QT5\5.15.2\msvc2019\mkspecs\features\spec_post.prf .qmake.stash ..\..\QT5\5.15.2\msvc2019\mkspecs\features\exclusive_builds.prf ..\..\QT5\5.15.2\msvc2019\mkspecs\common\msvc-version.conf ..\..\QT5\5.15.2\msvc2019\mkspecs\features\toolchain.prf ..\..\QT5\5.15.2\msvc2019\mkspecs\features\default_pre.prf ..\..\QT5\5.15.2\msvc2019\mkspecs\features\win32\default_pre.prf ..\..\QT5\5.15.2\msvc2019\mkspecs\features\resolve_config.prf ..\..\QT5\5.15.2\msvc2019\mkspecs\features\exclusive_builds_post.prf ..\..\QT5\5.15.2\msvc2019\mkspecs\features\default_post.prf ..\..\QT5\5.15.2\msvc2019\mkspecs\features\build_pass.prf ..\..\QT5\5.15.2\msvc2019\mkspecs\features\resources_functions.prf ..\..\QT5\5.15.2\msvc2019\mkspecs\features\qtquickcompiler.prf ..\..\QT5\5.15.2\msvc2019\mkspecs\features\precompile_header.prf ..\..\QT5\5.15.2\msvc2019\mkspecs\features\warn_on.prf ..\..\QT5\5.15.2\msvc2019\mkspecs\features\qt.prf ..\..\QT5\5.15.2\msvc2019\mkspecs\features\resources.prf ..\..\QT5\5.15.2\msvc2019\mkspecs\features\moc.prf ..\..\QT5\5.15.2\msvc2019\mkspecs\features\win32\opengl.prf ..\..\QT5\5.15.2\msvc2019\mkspecs\features\uic.prf ..\..\QT5\5.15.2\msvc2019\mkspecs\features\qmake_use.prf ..\..\QT5\5.15.2\msvc2019\mkspecs\features\file_copies.prf ..\..\QT5\5.15.2\msvc2019\mkspecs\features\win32\windows.prf ..\..\QT5\5.15.2\msvc2019\mkspecs\features\testcase_targets.prf ..\..\QT5\5.15.2\msvc2019\mkspecs\features\exceptions.prf ..\..\QT5\5.15.2\msvc2019\mkspecs\features\yacc.prf ..\..\QT5\5.15.2\msvc2019\mkspecs\features\lex.prf CloudDisk.pro qml_qmlcache.qrc images.qrc ..\..\QT5\5.15.2\msvc2019\lib\Qt5Quick.prl ..\..\QT5\5.15.2\msvc2019\lib\Qt5Widgets.prl ..\..\QT5\5.15.2\msvc2019\lib\Qt5Gui.prl ..\..\QT5\5.15.2\msvc2019\lib\Qt5QmlModels.prl ..\..\QT5\5.15.2\msvc2019\lib\Qt5Qml.prl ..\..\QT5\5.15.2\msvc2019\lib\Qt5Network.prl ..\..\QT5\5.15.2\msvc2019\lib\Qt5Core.prl ..\..\QT5\5.15.2\msvc2019\lib\qtmain.prl main.qml qmls\DownloadTableView.qml qmls\LeftMenus.qml qmls\DownloadPage.qml qmls\CompletePage.qml qmls\UploadPage.qml qmls\AllFilesPage.qml qmls\AllFilesTableView.qml qmls\MessagePopup.qml qmls\UploadTableView.qml qmls\CompleteTableView.qml qmls\AllFilesGridView.qml qmls\AddFolderPopup.qml qml.qrc qml_qmlcache.qrc images.qrc ..\..\QT5\5.15.2\msvc2019\mkspecs\features\data\dummy.cpp aesni\aesni-enc-cbc.h aesni\aesni-enc-ecb.h aesni\aesni-key-exp.h aesni\aesni-key-init.h allfileslistmodel.h completelistmodel.h downloadlistmodel.h ftpclient.h qaesencryption.h qftp.h qurlinfo.h selectpathlistmodel.h uploadlistmodel.h allfileslistmodel.cpp completelistmodel.cpp downloadlistmodel.cpp ftpclient.cpp main.cpp qaesencryption.cpp qftp.cpp qurlinfo.cpp selectpathlistmodel.cpp uploadlistmodel.cpp
clean: compiler_clean
-$(DEL_FILE) tmp\release\obj\allfileslistmodel.obj tmp\release\obj\completelistmodel.obj tmp\release\obj\downloadlistmodel.obj tmp\release\obj\ftpclient.obj tmp\release\obj\main.obj tmp\release\obj\qaesencryption.obj tmp\release\obj\qftp.obj tmp\release\obj\qurlinfo.obj tmp\release\obj\selectpathlistmodel.obj tmp\release\obj\uploadlistmodel.obj tmp\release\obj\main_qml.obj tmp\release\obj\qmls_DownloadTableView_qml.obj tmp\release\obj\qmls_LeftMenus_qml.obj tmp\release\obj\qmls_DownloadPage_qml.obj tmp\release\obj\qmls_CompletePage_qml.obj tmp\release\obj\qmls_UploadPage_qml.obj tmp\release\obj\qmls_AllFilesPage_qml.obj tmp\release\obj\qmls_AllFilesTableView_qml.obj tmp\release\obj\qmls_MessagePopup_qml.obj tmp\release\obj\qmls_UploadTableView_qml.obj tmp\release\obj\qmls_CompleteTableView_qml.obj tmp\release\obj\qmls_AllFilesGridView_qml.obj tmp\release\obj\qmls_AddFolderPopup_qml.obj tmp\release\obj\qmlcache_loader.obj tmp\release\obj\qrc_qml_qmlcache.obj tmp\release\obj\qrc_images.obj tmp\release\obj\moc_allfileslistmodel.obj tmp\release\obj\moc_completelistmodel.obj tmp\release\obj\moc_downloadlistmodel.obj tmp\release\obj\moc_ftpclient.obj tmp\release\obj\moc_qaesencryption.obj tmp\release\obj\moc_selectpathlistmodel.obj tmp\release\obj\moc_uploadlistmodel.obj
-$(DEL_FILE) D:\src_cloud\cloud_disk\tmp\release\obj\main.res
distclean: clean
-$(DEL_FILE) .qmake.stash
-$(DEL_FILE) $(DESTDIR_TARGET)
-$(DEL_FILE) Makefile.Release
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_qmlcache_make_all: release\main_qml.cpp release\qmls_DownloadTableView_qml.cpp release\qmls_LeftMenus_qml.cpp release\qmls_DownloadPage_qml.cpp release\qmls_CompletePage_qml.cpp release\qmls_UploadPage_qml.cpp release\qmls_AllFilesPage_qml.cpp release\qmls_AllFilesTableView_qml.cpp release\qmls_MessagePopup_qml.cpp release\qmls_UploadTableView_qml.cpp release\qmls_CompleteTableView_qml.cpp release\qmls_AllFilesGridView_qml.cpp release\qmls_AddFolderPopup_qml.cpp
compiler_qmlcache_clean:
-$(DEL_FILE) release\main_qml.cpp release\qmls_DownloadTableView_qml.cpp release\qmls_LeftMenus_qml.cpp release\qmls_DownloadPage_qml.cpp release\qmls_CompletePage_qml.cpp release\qmls_UploadPage_qml.cpp release\qmls_AllFilesPage_qml.cpp release\qmls_AllFilesTableView_qml.cpp release\qmls_MessagePopup_qml.cpp release\qmls_UploadTableView_qml.cpp release\qmls_CompleteTableView_qml.cpp release\qmls_AllFilesGridView_qml.cpp release\qmls_AddFolderPopup_qml.cpp
release\main_qml.cpp: main.qml
D:\QT5\5.15.2\msvc2019\bin\qmlcachegen.exe --resource=D:/src_cloud/cloud_disk/qml.qrc -o release\main_qml.cpp main.qml
release\qmls_DownloadTableView_qml.cpp: qmls\DownloadTableView.qml
D:\QT5\5.15.2\msvc2019\bin\qmlcachegen.exe --resource=D:/src_cloud/cloud_disk/qml.qrc -o release\qmls_DownloadTableView_qml.cpp qmls\DownloadTableView.qml
release\qmls_LeftMenus_qml.cpp: qmls\LeftMenus.qml
D:\QT5\5.15.2\msvc2019\bin\qmlcachegen.exe --resource=D:/src_cloud/cloud_disk/qml.qrc -o release\qmls_LeftMenus_qml.cpp qmls\LeftMenus.qml
release\qmls_DownloadPage_qml.cpp: qmls\DownloadPage.qml
D:\QT5\5.15.2\msvc2019\bin\qmlcachegen.exe --resource=D:/src_cloud/cloud_disk/qml.qrc -o release\qmls_DownloadPage_qml.cpp qmls\DownloadPage.qml
release\qmls_CompletePage_qml.cpp: qmls\CompletePage.qml
D:\QT5\5.15.2\msvc2019\bin\qmlcachegen.exe --resource=D:/src_cloud/cloud_disk/qml.qrc -o release\qmls_CompletePage_qml.cpp qmls\CompletePage.qml
release\qmls_UploadPage_qml.cpp: qmls\UploadPage.qml
D:\QT5\5.15.2\msvc2019\bin\qmlcachegen.exe --resource=D:/src_cloud/cloud_disk/qml.qrc -o release\qmls_UploadPage_qml.cpp qmls\UploadPage.qml
release\qmls_AllFilesPage_qml.cpp: qmls\AllFilesPage.qml
D:\QT5\5.15.2\msvc2019\bin\qmlcachegen.exe --resource=D:/src_cloud/cloud_disk/qml.qrc -o release\qmls_AllFilesPage_qml.cpp qmls\AllFilesPage.qml
release\qmls_AllFilesTableView_qml.cpp: qmls\AllFilesTableView.qml
D:\QT5\5.15.2\msvc2019\bin\qmlcachegen.exe --resource=D:/src_cloud/cloud_disk/qml.qrc -o release\qmls_AllFilesTableView_qml.cpp qmls\AllFilesTableView.qml
release\qmls_MessagePopup_qml.cpp: qmls\MessagePopup.qml
D:\QT5\5.15.2\msvc2019\bin\qmlcachegen.exe --resource=D:/src_cloud/cloud_disk/qml.qrc -o release\qmls_MessagePopup_qml.cpp qmls\MessagePopup.qml
release\qmls_UploadTableView_qml.cpp: qmls\UploadTableView.qml
D:\QT5\5.15.2\msvc2019\bin\qmlcachegen.exe --resource=D:/src_cloud/cloud_disk/qml.qrc -o release\qmls_UploadTableView_qml.cpp qmls\UploadTableView.qml
release\qmls_CompleteTableView_qml.cpp: qmls\CompleteTableView.qml
D:\QT5\5.15.2\msvc2019\bin\qmlcachegen.exe --resource=D:/src_cloud/cloud_disk/qml.qrc -o release\qmls_CompleteTableView_qml.cpp qmls\CompleteTableView.qml
release\qmls_AllFilesGridView_qml.cpp: qmls\AllFilesGridView.qml
D:\QT5\5.15.2\msvc2019\bin\qmlcachegen.exe --resource=D:/src_cloud/cloud_disk/qml.qrc -o release\qmls_AllFilesGridView_qml.cpp qmls\AllFilesGridView.qml
release\qmls_AddFolderPopup_qml.cpp: qmls\AddFolderPopup.qml
D:\QT5\5.15.2\msvc2019\bin\qmlcachegen.exe --resource=D:/src_cloud/cloud_disk/qml.qrc -o release\qmls_AddFolderPopup_qml.cpp qmls\AddFolderPopup.qml
compiler_qmlcache_loader_make_all: release\qmlcache_loader.cpp
compiler_qmlcache_loader_clean:
-$(DEL_FILE) release\qmlcache_loader.cpp
release\qmlcache_loader.cpp: qml.qrc
D:\QT5\5.15.2\msvc2019\bin\qmlcachegen.exe --resource-file-mapping="D:/src_cloud/cloud_disk/qml.qrc=D:/src_cloud/cloud_disk/qml_qmlcache.qrc" -o release\qmlcache_loader.cpp qml.qrc
compiler_no_pch_compiler_make_all:
compiler_no_pch_compiler_clean:
compiler_rcc_make_all: tmp\release\rcc\qrc_qml_qmlcache.cpp tmp\release\rcc\qrc_images.cpp
compiler_rcc_clean:
-$(DEL_FILE) tmp\release\rcc\qrc_qml_qmlcache.cpp tmp\release\rcc\qrc_images.cpp
tmp\release\rcc\qrc_qml_qmlcache.cpp: qml_qmlcache.qrc \
..\..\QT5\5.15.2\msvc2019\bin\rcc.exe \
main.qml \
qmls\DownloadTableView.qml \
qmls\LeftMenus.qml \
qmls\DownloadPage.qml \
qmls\CompletePage.qml \
qmls\UploadPage.qml \
qmls\AllFilesPage.qml \
qmls\AllFilesTableView.qml \
qmls\MessagePopup.qml \
qmls\UploadTableView.qml \
qmls\CompleteTableView.qml \
qmls\AllFilesGridView.qml \
qmls\AddFolderPopup.qml
D:\QT5\5.15.2\msvc2019\bin\rcc.exe -name qml_qmlcache qml_qmlcache.qrc -o tmp\release\rcc\qrc_qml_qmlcache.cpp
tmp\release\rcc\qrc_images.cpp: images.qrc \
..\..\QT5\5.15.2\msvc2019\bin\rcc.exe \
res\icon_check_sel.png \
res\main.ico \
res\icon_min.png \
res\icon_arrow.png \
res\icon_del_min.png \
res\icon_download.png \
res\icon_min_down.png \
res\icon_list_hover.png \
res\icon_clear_hover.png \
res\icon_forward_hover.png \
res\icon_cancel.png \
res\icon_zip_big.png \
res\logo.png \
res\icon_grid_hover.png \
res\icon_upload_min_hover.png \
res\icon_upload.png \
res\icon_add_folder.png \
res\icon_iso_big.png \
res\icon_path_hover.png \
res\icon_folder_big.png \
res\icon_clear.png \
res\icon_cancel_hover.png \
res\icon_close.png \
res\icon_folder.png \
res\icon_add_min_hover.png \
res\icon_min_upload.png \
res\icon_folder_sel.png \
res\icon_pdf_big.png \
res\icon_image_big.png \
res\icon_back.png \
res\icon_min_del.png \
res\icon_word_big.png \
res\icon_download_sel.png \
res\icon_path.png \
res\icon_txt_big.png \
res\icon_del_min_hover.png \
res\icon_checked.png \
res\icon_complete.png \
res\icon_upload_min.png \
res\error.png \
res\icon_back_hover.png \
res\icon_grid.png \
res\info.png \
res\icon_download_min.png \
res\icon_ppt_big.png \
res\icon_xls_big.png \
res\icon_complete_sel.png \
res\icon_refresh.png \
res\icon_download_min_hover.png \
res\icon_upload_sel.png \
res\icon_exe_big.png \
res\no-head-logo.png \
res\icon_unknow_big.png \
res\icon_refresh_hover.png \
res\icon_close_min.png \
res\icon_add_min.png \
res\icon_check_unsel.png \
res\icon_forward.png \
res\icon_arrow_hover.png \
res\icon_uncheck.png \
res\icon_list.png \
res\icon_video_big.png \
res\icon_dll_big.png
D:\QT5\5.15.2\msvc2019\bin\rcc.exe -name images images.qrc -o tmp\release\rcc\qrc_images.cpp
compiler_moc_predefs_make_all: tmp\release\moc\moc_predefs.h
compiler_moc_predefs_clean:
-$(DEL_FILE) tmp\release\moc\moc_predefs.h
tmp\release\moc\moc_predefs.h: ..\..\QT5\5.15.2\msvc2019\mkspecs\features\data\dummy.cpp
cl -BxD:\QT5\5.15.2\msvc2019\bin\qmake.exe -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -O2 -MD -W3 -w34100 -w34189 -w44996 -w44456 -w44457 -w44458 -wd4577 -wd4467 -E ..\..\QT5\5.15.2\msvc2019\mkspecs\features\data\dummy.cpp 2>NUL >tmp\release\moc\moc_predefs.h
compiler_moc_header_make_all: tmp\release\moc\moc_allfileslistmodel.cpp tmp\release\moc\moc_completelistmodel.cpp tmp\release\moc\moc_downloadlistmodel.cpp tmp\release\moc\moc_ftpclient.cpp tmp\release\moc\moc_qaesencryption.cpp tmp\release\moc\moc_qftp.cpp tmp\release\moc\moc_selectpathlistmodel.cpp tmp\release\moc\moc_uploadlistmodel.cpp
compiler_moc_header_clean:
-$(DEL_FILE) tmp\release\moc\moc_allfileslistmodel.cpp tmp\release\moc\moc_completelistmodel.cpp tmp\release\moc\moc_downloadlistmodel.cpp tmp\release\moc\moc_ftpclient.cpp tmp\release\moc\moc_qaesencryption.cpp tmp\release\moc\moc_qftp.cpp tmp\release\moc\moc_selectpathlistmodel.cpp tmp\release\moc\moc_uploadlistmodel.cpp
tmp\release\moc\moc_allfileslistmodel.cpp: allfileslistmodel.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\QAbstractListModel \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qabstractitemmodel.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qvariant.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qglobal.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qconfig-bootstrapped.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qconfig.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qtcore-config.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qsystemdetection.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qprocessordetection.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcompilerdetection.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qtypeinfo.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qsysinfo.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qlogging.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qflags.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qglobalstatic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qmutex.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qnumeric.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qversiontagging.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qbasicatomic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic_bootstrap.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qgenericatomic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic_cxx11.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic_msvc.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qbytearray.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qrefcount.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qnamespace.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qarraydata.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qlist.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qalgorithms.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qiterator.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qhashfunctions.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstring.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qchar.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringliteral.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringalgorithms.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringview.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringbuilder.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qpair.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qvector.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcontainertools_impl.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qpoint.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qbytearraylist.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringlist.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qregexp.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringmatcher.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qmetatype.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qvarlengtharray.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcontainerfwd.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qobjectdefs.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qobjectdefs_impl.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qmap.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qdebug.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qhash.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qtextstream.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qiodevice.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qobject.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcoreevent.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qscopedpointer.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qobject_impl.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qlocale.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qshareddata.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qset.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcontiguouscache.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qsharedpointer.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qsharedpointer_impl.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\QJsonArray \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qjsonarray.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qjsonvalue.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcborvalue.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qdatetime.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcborcommon.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qregularexpression.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qurl.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qurlquery.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\quuid.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\QJsonObject \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qjsonobject.h \
tmp\release\moc\moc_predefs.h \
..\..\QT5\5.15.2\msvc2019\bin\moc.exe
D:\QT5\5.15.2\msvc2019\bin\moc.exe $(DEFINES) --compiler-flavor=msvc --include D:/src_cloud/cloud_disk/tmp/release/moc/moc_predefs.h -ID:/QT5/5.15.2/msvc2019/mkspecs/win32-msvc -ID:/src_cloud/cloud_disk -ID:/src_cloud/cloud_disk/third/libcurl/include -ID:/QT5/5.15.2/msvc2019/include -ID:/QT5/5.15.2/msvc2019/include/QtQuick -ID:/QT5/5.15.2/msvc2019/include/QtWidgets -ID:/QT5/5.15.2/msvc2019/include/QtGui -ID:/QT5/5.15.2/msvc2019/include/QtANGLE -ID:/QT5/5.15.2/msvc2019/include/QtQmlModels -ID:/QT5/5.15.2/msvc2019/include/QtQml -ID:/QT5/5.15.2/msvc2019/include/QtNetwork -ID:/QT5/5.15.2/msvc2019/include/QtCore -I"D:\Visual Studio 2019\VC\Tools\MSVC\14.29.30133\ATLMFC\include" -I"D:\Visual Studio 2019\VC\Tools\MSVC\14.29.30133\include" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\winrt" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\cppwinrt" allfileslistmodel.h -o tmp\release\moc\moc_allfileslistmodel.cpp
tmp\release\moc\moc_completelistmodel.cpp: completelistmodel.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\QAbstractListModel \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qabstractitemmodel.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qvariant.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qglobal.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qconfig-bootstrapped.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qconfig.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qtcore-config.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qsystemdetection.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qprocessordetection.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcompilerdetection.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qtypeinfo.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qsysinfo.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qlogging.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qflags.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qglobalstatic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qmutex.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qnumeric.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qversiontagging.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qbasicatomic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic_bootstrap.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qgenericatomic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic_cxx11.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic_msvc.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qbytearray.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qrefcount.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qnamespace.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qarraydata.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qlist.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qalgorithms.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qiterator.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qhashfunctions.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstring.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qchar.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringliteral.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringalgorithms.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringview.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringbuilder.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qpair.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qvector.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcontainertools_impl.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qpoint.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qbytearraylist.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringlist.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qregexp.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringmatcher.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qmetatype.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qvarlengtharray.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcontainerfwd.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qobjectdefs.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qobjectdefs_impl.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qmap.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qdebug.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qhash.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qtextstream.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qiodevice.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qobject.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcoreevent.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qscopedpointer.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qobject_impl.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qlocale.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qshareddata.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qset.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcontiguouscache.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qsharedpointer.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qsharedpointer_impl.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\QJsonObject \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qjsonobject.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qjsonvalue.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcborvalue.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qdatetime.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcborcommon.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qregularexpression.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qurl.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qurlquery.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\quuid.h \
tmp\release\moc\moc_predefs.h \
..\..\QT5\5.15.2\msvc2019\bin\moc.exe
D:\QT5\5.15.2\msvc2019\bin\moc.exe $(DEFINES) --compiler-flavor=msvc --include D:/src_cloud/cloud_disk/tmp/release/moc/moc_predefs.h -ID:/QT5/5.15.2/msvc2019/mkspecs/win32-msvc -ID:/src_cloud/cloud_disk -ID:/src_cloud/cloud_disk/third/libcurl/include -ID:/QT5/5.15.2/msvc2019/include -ID:/QT5/5.15.2/msvc2019/include/QtQuick -ID:/QT5/5.15.2/msvc2019/include/QtWidgets -ID:/QT5/5.15.2/msvc2019/include/QtGui -ID:/QT5/5.15.2/msvc2019/include/QtANGLE -ID:/QT5/5.15.2/msvc2019/include/QtQmlModels -ID:/QT5/5.15.2/msvc2019/include/QtQml -ID:/QT5/5.15.2/msvc2019/include/QtNetwork -ID:/QT5/5.15.2/msvc2019/include/QtCore -I"D:\Visual Studio 2019\VC\Tools\MSVC\14.29.30133\ATLMFC\include" -I"D:\Visual Studio 2019\VC\Tools\MSVC\14.29.30133\include" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\winrt" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\cppwinrt" completelistmodel.h -o tmp\release\moc\moc_completelistmodel.cpp
tmp\release\moc\moc_downloadlistmodel.cpp: downloadlistmodel.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\QAbstractListModel \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qabstractitemmodel.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qvariant.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qglobal.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qconfig-bootstrapped.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qconfig.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qtcore-config.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qsystemdetection.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qprocessordetection.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcompilerdetection.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qtypeinfo.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qsysinfo.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qlogging.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qflags.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qglobalstatic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qmutex.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qnumeric.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qversiontagging.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qbasicatomic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic_bootstrap.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qgenericatomic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic_cxx11.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic_msvc.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qbytearray.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qrefcount.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qnamespace.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qarraydata.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qlist.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qalgorithms.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qiterator.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qhashfunctions.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstring.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qchar.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringliteral.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringalgorithms.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringview.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringbuilder.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qpair.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qvector.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcontainertools_impl.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qpoint.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qbytearraylist.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringlist.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qregexp.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringmatcher.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qmetatype.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qvarlengtharray.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcontainerfwd.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qobjectdefs.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qobjectdefs_impl.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qmap.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qdebug.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qhash.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qtextstream.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qiodevice.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qobject.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcoreevent.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qscopedpointer.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qobject_impl.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qlocale.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qshareddata.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qset.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcontiguouscache.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qsharedpointer.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qsharedpointer_impl.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\QJsonObject \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qjsonobject.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qjsonvalue.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcborvalue.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qdatetime.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcborcommon.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qregularexpression.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qurl.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qurlquery.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\quuid.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\QJsonArray \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qjsonarray.h \
tmp\release\moc\moc_predefs.h \
..\..\QT5\5.15.2\msvc2019\bin\moc.exe
D:\QT5\5.15.2\msvc2019\bin\moc.exe $(DEFINES) --compiler-flavor=msvc --include D:/src_cloud/cloud_disk/tmp/release/moc/moc_predefs.h -ID:/QT5/5.15.2/msvc2019/mkspecs/win32-msvc -ID:/src_cloud/cloud_disk -ID:/src_cloud/cloud_disk/third/libcurl/include -ID:/QT5/5.15.2/msvc2019/include -ID:/QT5/5.15.2/msvc2019/include/QtQuick -ID:/QT5/5.15.2/msvc2019/include/QtWidgets -ID:/QT5/5.15.2/msvc2019/include/QtGui -ID:/QT5/5.15.2/msvc2019/include/QtANGLE -ID:/QT5/5.15.2/msvc2019/include/QtQmlModels -ID:/QT5/5.15.2/msvc2019/include/QtQml -ID:/QT5/5.15.2/msvc2019/include/QtNetwork -ID:/QT5/5.15.2/msvc2019/include/QtCore -I"D:\Visual Studio 2019\VC\Tools\MSVC\14.29.30133\ATLMFC\include" -I"D:\Visual Studio 2019\VC\Tools\MSVC\14.29.30133\include" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\winrt" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\cppwinrt" downloadlistmodel.h -o tmp\release\moc\moc_downloadlistmodel.cpp
tmp\release\moc\moc_ftpclient.cpp: ftpclient.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\QObject \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qobject.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qobjectdefs.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qnamespace.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qglobal.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qconfig-bootstrapped.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qconfig.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qtcore-config.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qsystemdetection.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qprocessordetection.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcompilerdetection.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qtypeinfo.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qsysinfo.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qlogging.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qflags.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qbasicatomic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic_bootstrap.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qgenericatomic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic_cxx11.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic_msvc.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qglobalstatic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qmutex.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qnumeric.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qversiontagging.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qobjectdefs_impl.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstring.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qchar.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qbytearray.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qrefcount.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qarraydata.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringliteral.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringalgorithms.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringview.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringbuilder.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qlist.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qalgorithms.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qiterator.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qhashfunctions.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qpair.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qvector.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcontainertools_impl.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qpoint.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qbytearraylist.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringlist.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qregexp.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringmatcher.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcoreevent.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qscopedpointer.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qmetatype.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qvarlengtharray.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcontainerfwd.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qobject_impl.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\QHash \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qhash.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\QTimer \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qtimer.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qbasictimer.h \
qurlinfo.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qdatetime.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qshareddata.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qiodevice.h \
third\libcurl\include\curl\curl.h \
third\libcurl\include\curl\curlver.h \
third\libcurl\include\curl\system.h \
third\libcurl\include\curl\easy.h \
third\libcurl\include\curl\multi.h \
third\libcurl\include\curl\urlapi.h \
third\libcurl\include\curl\options.h \
third\libcurl\include\curl\header.h \
third\libcurl\include\curl\websockets.h \
third\libcurl\include\curl\mprintf.h \
third\libcurl\include\curl\typecheck-gcc.h \
tmp\release\moc\moc_predefs.h \
..\..\QT5\5.15.2\msvc2019\bin\moc.exe
D:\QT5\5.15.2\msvc2019\bin\moc.exe $(DEFINES) --compiler-flavor=msvc --include D:/src_cloud/cloud_disk/tmp/release/moc/moc_predefs.h -ID:/QT5/5.15.2/msvc2019/mkspecs/win32-msvc -ID:/src_cloud/cloud_disk -ID:/src_cloud/cloud_disk/third/libcurl/include -ID:/QT5/5.15.2/msvc2019/include -ID:/QT5/5.15.2/msvc2019/include/QtQuick -ID:/QT5/5.15.2/msvc2019/include/QtWidgets -ID:/QT5/5.15.2/msvc2019/include/QtGui -ID:/QT5/5.15.2/msvc2019/include/QtANGLE -ID:/QT5/5.15.2/msvc2019/include/QtQmlModels -ID:/QT5/5.15.2/msvc2019/include/QtQml -ID:/QT5/5.15.2/msvc2019/include/QtNetwork -ID:/QT5/5.15.2/msvc2019/include/QtCore -I"D:\Visual Studio 2019\VC\Tools\MSVC\14.29.30133\ATLMFC\include" -I"D:\Visual Studio 2019\VC\Tools\MSVC\14.29.30133\include" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\winrt" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\cppwinrt" ftpclient.h -o tmp\release\moc\moc_ftpclient.cpp
tmp\release\moc\moc_qaesencryption.cpp: qaesencryption.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\QObject \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qobject.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qobjectdefs.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qnamespace.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qglobal.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qconfig-bootstrapped.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qconfig.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qtcore-config.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qsystemdetection.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qprocessordetection.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcompilerdetection.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qtypeinfo.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qsysinfo.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qlogging.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qflags.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qbasicatomic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic_bootstrap.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qgenericatomic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic_cxx11.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic_msvc.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qglobalstatic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qmutex.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qnumeric.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qversiontagging.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qobjectdefs_impl.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstring.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qchar.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qbytearray.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qrefcount.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qarraydata.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringliteral.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringalgorithms.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringview.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringbuilder.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qlist.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qalgorithms.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qiterator.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qhashfunctions.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qpair.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qvector.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcontainertools_impl.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qpoint.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qbytearraylist.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringlist.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qregexp.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringmatcher.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcoreevent.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qscopedpointer.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qmetatype.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qvarlengtharray.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcontainerfwd.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qobject_impl.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\QByteArray \
tmp\release\moc\moc_predefs.h \
..\..\QT5\5.15.2\msvc2019\bin\moc.exe
D:\QT5\5.15.2\msvc2019\bin\moc.exe $(DEFINES) --compiler-flavor=msvc --include D:/src_cloud/cloud_disk/tmp/release/moc/moc_predefs.h -ID:/QT5/5.15.2/msvc2019/mkspecs/win32-msvc -ID:/src_cloud/cloud_disk -ID:/src_cloud/cloud_disk/third/libcurl/include -ID:/QT5/5.15.2/msvc2019/include -ID:/QT5/5.15.2/msvc2019/include/QtQuick -ID:/QT5/5.15.2/msvc2019/include/QtWidgets -ID:/QT5/5.15.2/msvc2019/include/QtGui -ID:/QT5/5.15.2/msvc2019/include/QtANGLE -ID:/QT5/5.15.2/msvc2019/include/QtQmlModels -ID:/QT5/5.15.2/msvc2019/include/QtQml -ID:/QT5/5.15.2/msvc2019/include/QtNetwork -ID:/QT5/5.15.2/msvc2019/include/QtCore -I"D:\Visual Studio 2019\VC\Tools\MSVC\14.29.30133\ATLMFC\include" -I"D:\Visual Studio 2019\VC\Tools\MSVC\14.29.30133\include" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\winrt" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\cppwinrt" qaesencryption.h -o tmp\release\moc\moc_qaesencryption.cpp
tmp\release\moc\moc_qftp.cpp: qftp.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstring.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qchar.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qglobal.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qconfig-bootstrapped.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qconfig.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qtcore-config.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qsystemdetection.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qprocessordetection.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcompilerdetection.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qtypeinfo.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qsysinfo.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qlogging.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qflags.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qbasicatomic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic_bootstrap.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qgenericatomic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic_cxx11.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic_msvc.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qglobalstatic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qmutex.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qnumeric.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qversiontagging.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qbytearray.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qrefcount.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qnamespace.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qarraydata.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringliteral.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringalgorithms.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringview.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringbuilder.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qobject.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qobjectdefs.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qobjectdefs_impl.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qlist.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qalgorithms.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qiterator.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qhashfunctions.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qpair.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qvector.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcontainertools_impl.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qpoint.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qbytearraylist.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringlist.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qregexp.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringmatcher.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcoreevent.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qscopedpointer.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qmetatype.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qvarlengtharray.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcontainerfwd.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qobject_impl.h \
qurlinfo.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qdatetime.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qshareddata.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qhash.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qiodevice.h \
tmp\release\moc\moc_predefs.h \
..\..\QT5\5.15.2\msvc2019\bin\moc.exe
D:\QT5\5.15.2\msvc2019\bin\moc.exe $(DEFINES) --compiler-flavor=msvc --include D:/src_cloud/cloud_disk/tmp/release/moc/moc_predefs.h -ID:/QT5/5.15.2/msvc2019/mkspecs/win32-msvc -ID:/src_cloud/cloud_disk -ID:/src_cloud/cloud_disk/third/libcurl/include -ID:/QT5/5.15.2/msvc2019/include -ID:/QT5/5.15.2/msvc2019/include/QtQuick -ID:/QT5/5.15.2/msvc2019/include/QtWidgets -ID:/QT5/5.15.2/msvc2019/include/QtGui -ID:/QT5/5.15.2/msvc2019/include/QtANGLE -ID:/QT5/5.15.2/msvc2019/include/QtQmlModels -ID:/QT5/5.15.2/msvc2019/include/QtQml -ID:/QT5/5.15.2/msvc2019/include/QtNetwork -ID:/QT5/5.15.2/msvc2019/include/QtCore -I"D:\Visual Studio 2019\VC\Tools\MSVC\14.29.30133\ATLMFC\include" -I"D:\Visual Studio 2019\VC\Tools\MSVC\14.29.30133\include" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\winrt" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\cppwinrt" qftp.h -o tmp\release\moc\moc_qftp.cpp
tmp\release\moc\moc_selectpathlistmodel.cpp: selectpathlistmodel.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\QAbstractListModel \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qabstractitemmodel.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qvariant.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qglobal.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qconfig-bootstrapped.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qconfig.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qtcore-config.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qsystemdetection.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qprocessordetection.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcompilerdetection.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qtypeinfo.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qsysinfo.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qlogging.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qflags.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qglobalstatic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qmutex.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qnumeric.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qversiontagging.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qbasicatomic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic_bootstrap.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qgenericatomic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic_cxx11.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic_msvc.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qbytearray.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qrefcount.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qnamespace.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qarraydata.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qlist.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qalgorithms.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qiterator.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qhashfunctions.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstring.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qchar.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringliteral.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringalgorithms.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringview.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringbuilder.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qpair.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qvector.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcontainertools_impl.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qpoint.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qbytearraylist.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringlist.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qregexp.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringmatcher.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qmetatype.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qvarlengtharray.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcontainerfwd.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qobjectdefs.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qobjectdefs_impl.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qmap.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qdebug.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qhash.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qtextstream.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qiodevice.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qobject.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcoreevent.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qscopedpointer.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qobject_impl.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qlocale.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qshareddata.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qset.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcontiguouscache.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qsharedpointer.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qsharedpointer_impl.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\QJsonArray \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qjsonarray.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qjsonvalue.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcborvalue.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qdatetime.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcborcommon.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qregularexpression.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qurl.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qurlquery.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\quuid.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\QJsonObject \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qjsonobject.h \
tmp\release\moc\moc_predefs.h \
..\..\QT5\5.15.2\msvc2019\bin\moc.exe
D:\QT5\5.15.2\msvc2019\bin\moc.exe $(DEFINES) --compiler-flavor=msvc --include D:/src_cloud/cloud_disk/tmp/release/moc/moc_predefs.h -ID:/QT5/5.15.2/msvc2019/mkspecs/win32-msvc -ID:/src_cloud/cloud_disk -ID:/src_cloud/cloud_disk/third/libcurl/include -ID:/QT5/5.15.2/msvc2019/include -ID:/QT5/5.15.2/msvc2019/include/QtQuick -ID:/QT5/5.15.2/msvc2019/include/QtWidgets -ID:/QT5/5.15.2/msvc2019/include/QtGui -ID:/QT5/5.15.2/msvc2019/include/QtANGLE -ID:/QT5/5.15.2/msvc2019/include/QtQmlModels -ID:/QT5/5.15.2/msvc2019/include/QtQml -ID:/QT5/5.15.2/msvc2019/include/QtNetwork -ID:/QT5/5.15.2/msvc2019/include/QtCore -I"D:\Visual Studio 2019\VC\Tools\MSVC\14.29.30133\ATLMFC\include" -I"D:\Visual Studio 2019\VC\Tools\MSVC\14.29.30133\include" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\winrt" -I"C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\cppwinrt" selectpathlistmodel.h -o tmp\release\moc\moc_selectpathlistmodel.cpp
tmp\release\moc\moc_uploadlistmodel.cpp: uploadlistmodel.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\QAbstractListModel \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qabstractitemmodel.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qvariant.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qglobal.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qconfig-bootstrapped.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qconfig.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qtcore-config.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qsystemdetection.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qprocessordetection.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qcompilerdetection.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qtypeinfo.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qsysinfo.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qlogging.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qflags.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qglobalstatic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qmutex.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qnumeric.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qversiontagging.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qbasicatomic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic_bootstrap.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qgenericatomic.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic_cxx11.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qatomic_msvc.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qbytearray.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qrefcount.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qnamespace.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qarraydata.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qlist.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qalgorithms.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qiterator.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qhashfunctions.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstring.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qchar.h \
..\..\QT5\5.15.2\msvc2019\include\QtCore\qstringliteral.h \