-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.Debug
4085 lines (3999 loc) · 279 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: OTCHENASHKOTORYNANEBESAH
# Generated by qmake (3.1) (Qt 5.12.12)
# Project: OTCHENASHKOTORYNANEBESAH.pro
# Template: app
#############################################################################
MAKEFILE = Makefile.Debug
EQ = =
####### Compiler, tools and options
CC = gcc
CXX = g++
DEFINES = -DUNICODE -D_UNICODE -DWIN32 -DMINGW_HAS_SECURE_API=1 -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_SQL_LIB -DQT_CORE_LIB -DQT_NEEDS_QMAIN
CFLAGS = -fno-keep-inline-dllexport -g -Wall -W -Wextra $(DEFINES)
CXXFLAGS = -fno-keep-inline-dllexport -g -std=gnu++11 -Wall -W -Wextra -fexceptions -mthreads $(DEFINES)
INCPATH = -I. -ID:\PROGRAM\Q_T\5.12.12\mingw73_32\include -ID:\PROGRAM\Q_T\5.12.12\mingw73_32\include\QtWidgets -ID:\PROGRAM\Q_T\5.12.12\mingw73_32\include\QtGui -ID:\PROGRAM\Q_T\5.12.12\mingw73_32\include\QtANGLE -ID:\PROGRAM\Q_T\5.12.12\mingw73_32\include\QtSql -ID:\PROGRAM\Q_T\5.12.12\mingw73_32\include\QtCore -Idebug -I. -ID:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\win32-g++
LINKER = g++
LFLAGS = -Wl,-subsystem,windows -mthreads
LIBS = D:\PROGRAM\Q_T\5.12.12\mingw73_32\lib\libQt5Widgetsd.a D:\PROGRAM\Q_T\5.12.12\mingw73_32\lib\libQt5Guid.a D:\PROGRAM\Q_T\5.12.12\mingw73_32\lib\libQt5Sqld.a D:\PROGRAM\Q_T\5.12.12\mingw73_32\lib\libQt5Cored.a -lmingw32 D:\PROGRAM\Q_T\5.12.12\mingw73_32\lib\libqtmaind.a -LC:\openssl\lib -LC:\Utils\my_sql\mysql-5.6.11-win32\lib -LC:\Utils\postgresql\pgsql\lib -lshell32
QMAKE = D:\PROGRAM\Q_T\5.12.12\mingw73_32\bin\qmake.exe
IDC = idc
IDL = midl
ZIP = zip -r -9
DEF_FILE =
RES_FILE =
COPY = copy /y
SED = $(QMAKE) -install sed
COPY_FILE = copy /y
COPY_DIR = xcopy /s /q /y /i
DEL_FILE = del
DEL_DIR = rmdir
MOVE = move
CHK_DIR_EXISTS= if not exist
MKDIR = mkdir
INSTALL_FILE = copy /y
INSTALL_PROGRAM = copy /y
INSTALL_DIR = xcopy /s /q /y /i
QINSTALL = D:\PROGRAM\Q_T\5.12.12\mingw73_32\bin\qmake.exe -install qinstall
QINSTALL_PROGRAM = D:\PROGRAM\Q_T\5.12.12\mingw73_32\bin\qmake.exe -install qinstall -exe
####### Output directory
OBJECTS_DIR = debug
####### Files
SOURCES = admins.cpp \
avtorizat.cpp \
dobclient.cpp \
dobinfo.cpp \
dobotv.cpp \
dobpolzovat.cpp \
dobsotrudn.cpp \
dobvoprOTV.cpp \
inform.cpp \
main.cpp \
nachokno.cpp \
polzovat.cpp \
support.cpp \
vohod.cpp debug\qrc_img.cpp \
debug\moc_admins.cpp \
debug\moc_avtorizat.cpp \
debug\moc_dobclient.cpp \
debug\moc_dobinfo.cpp \
debug\moc_dobotv.cpp \
debug\moc_dobpolzovat.cpp \
debug\moc_dobsotrudn.cpp \
debug\moc_dobvoprOTV.cpp \
debug\moc_inform.cpp \
debug\moc_nachokno.cpp \
debug\moc_polzovat.cpp \
debug\moc_support.cpp \
debug\moc_vohod.cpp
OBJECTS = debug/admins.o \
debug/avtorizat.o \
debug/dobclient.o \
debug/dobinfo.o \
debug/dobotv.o \
debug/dobpolzovat.o \
debug/dobsotrudn.o \
debug/dobvoprOTV.o \
debug/inform.o \
debug/main.o \
debug/nachokno.o \
debug/polzovat.o \
debug/support.o \
debug/vohod.o \
debug/qrc_img.o \
debug/moc_admins.o \
debug/moc_avtorizat.o \
debug/moc_dobclient.o \
debug/moc_dobinfo.o \
debug/moc_dobotv.o \
debug/moc_dobpolzovat.o \
debug/moc_dobsotrudn.o \
debug/moc_dobvoprOTV.o \
debug/moc_inform.o \
debug/moc_nachokno.o \
debug/moc_polzovat.o \
debug/moc_support.o \
debug/moc_vohod.o
DIST = LP.txt admins.h \
avtorizat.h \
dobclient.h \
dobinfo.h \
dobotv.h \
dobpolzovat.h \
dobsotrudn.h \
dobvoprOTV.h \
inform.h \
nachokno.h \
polzovat.h \
support.h \
vohod.h admins.cpp \
avtorizat.cpp \
dobclient.cpp \
dobinfo.cpp \
dobotv.cpp \
dobpolzovat.cpp \
dobsotrudn.cpp \
dobvoprOTV.cpp \
inform.cpp \
main.cpp \
nachokno.cpp \
polzovat.cpp \
support.cpp \
vohod.cpp
QMAKE_TARGET = OTCHENASHKOTORYNANEBESAH
DESTDIR = debug\ #avoid trailing-slash linebreak
TARGET = OTCHENASHKOTORYNANEBESAH.exe
DESTDIR_TARGET = debug\OTCHENASHKOTORYNANEBESAH.exe
####### Build rules
first: all
all: Makefile.Debug debug/OTCHENASHKOTORYNANEBESAH.exe
debug/OTCHENASHKOTORYNANEBESAH.exe: D:/PROGRAM/Q_T/5.12.12/mingw73_32/lib/libQt5Widgetsd.a D:/PROGRAM/Q_T/5.12.12/mingw73_32/lib/libQt5Guid.a D:/PROGRAM/Q_T/5.12.12/mingw73_32/lib/libQt5Sqld.a D:/PROGRAM/Q_T/5.12.12/mingw73_32/lib/libQt5Cored.a D:/PROGRAM/Q_T/5.12.12/mingw73_32/lib/libqtmaind.a ui_admins.h ui_avtorizat.h ui_dobclient.h ui_dobinfo.h ui_dobotv.h ui_dobpolzovat.h ui_dobsotrudn.h ui_dobvoprOTV.h ui_inform.h ui_nachokno.h ui_polzovat.h ui_support.h ui_vohod.h $(OBJECTS)
$(LINKER) $(LFLAGS) -o $(DESTDIR_TARGET) @object_script.OTCHENASHKOTORYNANEBESAH.Debug $(LIBS)
qmake: FORCE
@$(QMAKE) -o Makefile.Debug OTCHENASHKOTORYNANEBESAH.pro -spec win32-g++ "CONFIG+=qtquickcompiler"
qmake_all: FORCE
dist:
$(ZIP) OTCHENASHKOTORYNANEBESAH.zip $(SOURCES) $(DIST) OTCHENASHKOTORYNANEBESAH.pro D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\spec_pre.prf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\qdevice.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\device_config.prf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\common\sanitize.conf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\common\gcc-base.conf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\common\g++-base.conf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\common\angle.conf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\win32\windows_vulkan_sdk.prf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\common\windows-vulkan.conf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\common\g++-win32.conf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\qconfig.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_3danimation.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_3danimation_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_3dcore.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_3dcore_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_3dextras.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_3dextras_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_3dinput.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_3dinput_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_3dlogic.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_3dlogic_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_3dquick.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_3dquick_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_3dquickanimation.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_3dquickanimation_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_3dquickextras.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_3dquickextras_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_3dquickinput.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_3dquickinput_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_3dquickrender.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_3dquickrender_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_3dquickscene2d.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_3dquickscene2d_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_3drender.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_3drender_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_accessibility_support_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_axbase.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_axbase_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_axcontainer.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_axcontainer_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_axserver.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_axserver_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_bluetooth.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_bluetooth_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_bootstrap_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_charts.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_charts_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_concurrent.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_concurrent_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_core.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_core_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_datavisualization.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_datavisualization_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_dbus.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_dbus_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_designer.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_designer_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_designercomponents_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_devicediscovery_support_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_edid_support_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_egl_support_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_eventdispatcher_support_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_fb_support_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_fontdatabase_support_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_gamepad.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_gamepad_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_gui.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_gui_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_help.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_help_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_location.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_location_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_multimedia.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_multimedia_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_multimediawidgets.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_multimediawidgets_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_network.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_network_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_networkauth.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_networkauth_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_nfc.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_nfc_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_opengl.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_opengl_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_openglextensions.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_openglextensions_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_packetprotocol_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_platformcompositor_support_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_positioning.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_positioning_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_positioningquick.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_positioningquick_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_printsupport.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_printsupport_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_purchasing.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_purchasing_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_qml.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_qml_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_qmldebug_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_qmldevtools_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_qmltest.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_qmltest_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_qtmultimediaquicktools_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_quick.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_quick_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_quickcontrols2.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_quickcontrols2_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_quickparticles_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_quickshapes_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_quicktemplates2.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_quicktemplates2_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_quickwidgets.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_quickwidgets_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_remoteobjects.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_remoteobjects_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_repparser.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_repparser_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_script.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_script_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_scripttools.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_scripttools_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_scxml.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_scxml_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_sensors.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_sensors_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_serialbus.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_serialbus_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_serialport.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_serialport_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_sql.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_sql_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_svg.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_svg_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_testlib.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_testlib_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_texttospeech.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_texttospeech_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_theme_support_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_uiplugin.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_uitools.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_uitools_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_virtualkeyboard.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_virtualkeyboard_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_webchannel.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_webchannel_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_websockets.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_websockets_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_widgets.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_widgets_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_windowsuiautomation_support_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_winextras.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_winextras_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_xml.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_xml_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_xmlpatterns.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\modules\qt_lib_xmlpatterns_private.pri D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\qt_functions.prf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\qt_config.prf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\win32-g++\qmake.conf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\spec_post.prf .qmake.stash D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\exclusive_builds.prf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\toolchain.prf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\default_pre.prf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\win32\default_pre.prf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\resolve_config.prf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\exclusive_builds_post.prf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\default_post.prf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\build_pass.prf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\resources.prf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\qtquickcompiler.prf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\precompile_header.prf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\warn_on.prf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\qt.prf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\moc.prf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\win32\opengl.prf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\uic.prf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\qmake_use.prf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\file_copies.prf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\win32\windows.prf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\testcase_targets.prf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\exceptions.prf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\yacc.prf D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\lex.prf OTCHENASHKOTORYNANEBESAH.pro img.qrc D:\PROGRAM\Q_T\5.12.12\mingw73_32\lib\Qt5Widgetsd.prl D:\PROGRAM\Q_T\5.12.12\mingw73_32\lib\Qt5Guid.prl D:\PROGRAM\Q_T\5.12.12\mingw73_32\lib\Qt5Sqld.prl D:\PROGRAM\Q_T\5.12.12\mingw73_32\lib\Qt5Cored.prl D:\PROGRAM\Q_T\5.12.12\mingw73_32\lib\qtmaind.prl img.qrc D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\data\dummy.cpp admins.h avtorizat.h dobclient.h dobinfo.h dobotv.h dobpolzovat.h dobsotrudn.h dobvoprOTV.h inform.h nachokno.h polzovat.h support.h vohod.h admins.cpp avtorizat.cpp dobclient.cpp dobinfo.cpp dobotv.cpp dobpolzovat.cpp dobsotrudn.cpp dobvoprOTV.cpp inform.cpp main.cpp nachokno.cpp polzovat.cpp support.cpp vohod.cpp admins.ui avtorizat.ui dobclient.ui dobinfo.ui dobotv.ui dobpolzovat.ui dobsotrudn.ui dobvoprOTV.ui inform.ui nachokno.ui polzovat.ui support.ui vohod.ui
clean: compiler_clean
-$(DEL_FILE) debug\admins.o debug\avtorizat.o debug\dobclient.o debug\dobinfo.o debug\dobotv.o debug\dobpolzovat.o debug\dobsotrudn.o debug\dobvoprOTV.o debug\inform.o debug\main.o debug\nachokno.o debug\polzovat.o debug\support.o debug\vohod.o debug\qrc_img.o debug\moc_admins.o debug\moc_avtorizat.o debug\moc_dobclient.o debug\moc_dobinfo.o debug\moc_dobotv.o debug\moc_dobpolzovat.o debug\moc_dobsotrudn.o debug\moc_dobvoprOTV.o debug\moc_inform.o debug\moc_nachokno.o debug\moc_polzovat.o debug\moc_support.o debug\moc_vohod.o
distclean: clean
-$(DEL_FILE) .qmake.stash
-$(DEL_FILE) $(DESTDIR_TARGET)
-$(DEL_FILE) Makefile.Debug
mocclean: compiler_moc_header_clean compiler_moc_objc_header_clean compiler_moc_source_clean
mocables: compiler_moc_header_make_all compiler_moc_objc_header_make_all compiler_moc_source_make_all
check: first
benchmark: first
compiler_rcc_make_all: debug/qrc_img.cpp
compiler_rcc_clean:
-$(DEL_FILE) debug\qrc_img.cpp
debug/qrc_img.cpp: img.qrc \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/bin/rcc.exe \
img/free-icon-speech-bubble-3884256.png \
img/free-icon-clock-3884295.png \
img/free-icon-reminders-3884383.png \
img/free-icon-settings-3884429.png \
img/free-icon-pin-3884564.png \
img/free-icon-mail-inbox-app-3884252.png \
img/free-icon-telegram-3884597.png \
img/free-icon-house-3884324.png
D:\PROGRAM\Q_T\5.12.12\mingw73_32\bin\rcc.exe -name img img.qrc -o debug\qrc_img.cpp
compiler_qmlcache_make_all:
compiler_qmlcache_clean:
compiler_qmlcache_loader_make_all: debug/qmlcache_loader.cpp
compiler_qmlcache_loader_clean:
-$(DEL_FILE) debug\qmlcache_loader.cpp
compiler_no_pch_compiler_make_all:
compiler_no_pch_compiler_clean:
compiler_moc_predefs_make_all: debug/moc_predefs.h
compiler_moc_predefs_clean:
-$(DEL_FILE) debug\moc_predefs.h
debug/moc_predefs.h: D:/PROGRAM/Q_T/5.12.12/mingw73_32/mkspecs/features/data/dummy.cpp
g++ -fno-keep-inline-dllexport -g -std=gnu++11 -Wall -W -Wextra -dM -E -o debug\moc_predefs.h D:\PROGRAM\Q_T\5.12.12\mingw73_32\mkspecs\features\data\dummy.cpp
compiler_moc_header_make_all: debug/moc_admins.cpp debug/moc_avtorizat.cpp debug/moc_dobclient.cpp debug/moc_dobinfo.cpp debug/moc_dobotv.cpp debug/moc_dobpolzovat.cpp debug/moc_dobsotrudn.cpp debug/moc_dobvoprOTV.cpp debug/moc_inform.cpp debug/moc_nachokno.cpp debug/moc_polzovat.cpp debug/moc_support.cpp debug/moc_vohod.cpp
compiler_moc_header_clean:
-$(DEL_FILE) debug\moc_admins.cpp debug\moc_avtorizat.cpp debug\moc_dobclient.cpp debug\moc_dobinfo.cpp debug\moc_dobotv.cpp debug\moc_dobpolzovat.cpp debug\moc_dobsotrudn.cpp debug\moc_dobvoprOTV.cpp debug\moc_inform.cpp debug\moc_nachokno.cpp debug\moc_polzovat.cpp debug\moc_support.cpp debug\moc_vohod.cpp
debug/moc_admins.cpp: admins.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/QMainWindow \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qmainwindow.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qtwidgetsglobal.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qtguiglobal.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qglobal.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qconfig-bootstrapped.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qconfig.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qtcore-config.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsystemdetection.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qprocessordetection.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qcompilerdetection.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qtypeinfo.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsysinfo.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qlogging.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qflags.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qatomic.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qbasicatomic.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qatomic_bootstrap.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qgenericatomic.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qatomic_cxx11.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qatomic_msvc.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qglobalstatic.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qmutex.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qnumeric.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qversiontagging.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qtgui-config.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qtwidgets-config.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qwidget.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qwindowdefs.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qobjectdefs.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qnamespace.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qobjectdefs_impl.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qwindowdefs_win.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qobject.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstring.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qchar.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qbytearray.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qrefcount.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qarraydata.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringliteral.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringalgorithms.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringview.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringbuilder.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qlist.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qalgorithms.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qiterator.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qhashfunctions.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qpair.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qbytearraylist.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringlist.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qregexp.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringmatcher.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qcoreevent.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qscopedpointer.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qmetatype.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qvarlengtharray.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qcontainerfwd.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qobject_impl.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qmargins.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpaintdevice.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qrect.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsize.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qpoint.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpalette.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qcolor.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qrgb.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qrgba64.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qbrush.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qvector.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qmatrix.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpolygon.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qregion.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qdatastream.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qiodevice.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qline.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qtransform.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpainterpath.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qimage.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpixelformat.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpixmap.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsharedpointer.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qshareddata.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qhash.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsharedpointer_impl.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qfont.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qfontmetrics.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qfontinfo.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qsizepolicy.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qcursor.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qkeysequence.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qevent.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qvariant.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qmap.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qdebug.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qtextstream.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qlocale.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qset.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qcontiguouscache.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qurl.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qurlquery.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qfile.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qfiledevice.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qvector2d.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qtouchdevice.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qtabwidget.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qicon.h \
dobpolzovat.h \
vohod.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/QWidget \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql/QSqlDatabase \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql/qsqldatabase.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql/qtsqlglobal.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql/qtsql-config.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql/QSqlQuery \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql/qsqlquery.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql/QSqlTableModel \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql/qsqltablemodel.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql/qsqlquerymodel.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qabstractitemmodel.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/QtDebug \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql/QSqlError \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql/qsqlerror.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql/QSqlRecord \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql/qsqlrecord.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/QString \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/QTableView \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qtableview.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qabstractitemview.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qabstractscrollarea.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qframe.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qitemselectionmodel.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qabstractitemdelegate.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qstyleoption.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qabstractspinbox.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qvalidator.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qregularexpression.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qslider.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qabstractslider.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qstyle.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qtabbar.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qrubberband.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/QHeaderView \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qheaderview.h \
dobinfo.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/QDataWidgetMapper \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qdatawidgetmapper.h \
dobsotrudn.h \
dobotv.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql/QSqlQueryModel \
debug/moc_predefs.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/bin/moc.exe
D:\PROGRAM\Q_T\5.12.12\mingw73_32\bin\moc.exe $(DEFINES) --include C:/Users/Marsi/Desktop/OTCHENASHKOTORYNANEBESAH/debug/moc_predefs.h -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/mkspecs/win32-g++ -IC:/Users/Marsi/Desktop/OTCHENASHKOTORYNANEBESAH -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtANGLE -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++ -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++/i686-w64-mingw32 -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++/backward -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include-fixed -ID:/PROGRAM/Q_T/Tools/mingw730_32/i686-w64-mingw32/include admins.h -o debug\moc_admins.cpp
debug/moc_avtorizat.cpp: avtorizat.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/QMainWindow \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qmainwindow.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qtwidgetsglobal.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qtguiglobal.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qglobal.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qconfig-bootstrapped.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qconfig.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qtcore-config.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsystemdetection.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qprocessordetection.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qcompilerdetection.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qtypeinfo.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsysinfo.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qlogging.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qflags.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qatomic.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qbasicatomic.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qatomic_bootstrap.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qgenericatomic.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qatomic_cxx11.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qatomic_msvc.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qglobalstatic.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qmutex.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qnumeric.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qversiontagging.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qtgui-config.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qtwidgets-config.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qwidget.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qwindowdefs.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qobjectdefs.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qnamespace.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qobjectdefs_impl.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qwindowdefs_win.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qobject.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstring.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qchar.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qbytearray.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qrefcount.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qarraydata.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringliteral.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringalgorithms.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringview.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringbuilder.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qlist.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qalgorithms.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qiterator.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qhashfunctions.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qpair.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qbytearraylist.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringlist.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qregexp.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringmatcher.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qcoreevent.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qscopedpointer.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qmetatype.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qvarlengtharray.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qcontainerfwd.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qobject_impl.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qmargins.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpaintdevice.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qrect.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsize.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qpoint.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpalette.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qcolor.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qrgb.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qrgba64.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qbrush.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qvector.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qmatrix.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpolygon.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qregion.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qdatastream.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qiodevice.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qline.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qtransform.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpainterpath.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qimage.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpixelformat.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpixmap.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsharedpointer.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qshareddata.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qhash.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsharedpointer_impl.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qfont.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qfontmetrics.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qfontinfo.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qsizepolicy.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qcursor.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qkeysequence.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qevent.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qvariant.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qmap.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qdebug.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qtextstream.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qlocale.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qset.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qcontiguouscache.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qurl.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qurlquery.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qfile.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qfiledevice.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qvector2d.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qtouchdevice.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qtabwidget.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qicon.h \
vohod.h \
dobpolzovat.h \
polzovat.h \
support.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/QWidget \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql/QSqlDatabase \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql/qsqldatabase.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql/qtsqlglobal.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql/qtsql-config.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql/QSqlQuery \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql/qsqlquery.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql/QSqlTableModel \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql/qsqltablemodel.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql/qsqlquerymodel.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qabstractitemmodel.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/QtDebug \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql/QSqlError \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql/qsqlerror.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql/QSqlRecord \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql/qsqlrecord.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/QString \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/QTableView \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qtableview.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qabstractitemview.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qabstractscrollarea.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qframe.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qitemselectionmodel.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qabstractitemdelegate.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qstyleoption.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qabstractspinbox.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qvalidator.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qregularexpression.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qslider.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qabstractslider.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qstyle.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qtabbar.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qrubberband.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/QHeaderView \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qheaderview.h \
dobvoprOTV.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/QDataWidgetMapper \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qdatawidgetmapper.h \
inform.h \
dobclient.h \
admins.h \
dobinfo.h \
dobsotrudn.h \
dobotv.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql/QSqlQueryModel \
debug/moc_predefs.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/bin/moc.exe
D:\PROGRAM\Q_T\5.12.12\mingw73_32\bin\moc.exe $(DEFINES) --include C:/Users/Marsi/Desktop/OTCHENASHKOTORYNANEBESAH/debug/moc_predefs.h -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/mkspecs/win32-g++ -IC:/Users/Marsi/Desktop/OTCHENASHKOTORYNANEBESAH -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtANGLE -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++ -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++/i686-w64-mingw32 -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++/backward -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include-fixed -ID:/PROGRAM/Q_T/Tools/mingw730_32/i686-w64-mingw32/include avtorizat.h -o debug\moc_avtorizat.cpp
debug/moc_dobclient.cpp: dobclient.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/QMainWindow \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qmainwindow.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qtwidgetsglobal.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qtguiglobal.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qglobal.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qconfig-bootstrapped.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qconfig.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qtcore-config.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsystemdetection.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qprocessordetection.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qcompilerdetection.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qtypeinfo.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsysinfo.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qlogging.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qflags.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qatomic.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qbasicatomic.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qatomic_bootstrap.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qgenericatomic.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qatomic_cxx11.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qatomic_msvc.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qglobalstatic.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qmutex.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qnumeric.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qversiontagging.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qtgui-config.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qtwidgets-config.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qwidget.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qwindowdefs.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qobjectdefs.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qnamespace.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qobjectdefs_impl.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qwindowdefs_win.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qobject.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstring.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qchar.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qbytearray.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qrefcount.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qarraydata.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringliteral.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringalgorithms.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringview.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringbuilder.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qlist.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qalgorithms.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qiterator.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qhashfunctions.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qpair.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qbytearraylist.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringlist.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qregexp.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringmatcher.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qcoreevent.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qscopedpointer.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qmetatype.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qvarlengtharray.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qcontainerfwd.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qobject_impl.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qmargins.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpaintdevice.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qrect.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsize.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qpoint.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpalette.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qcolor.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qrgb.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qrgba64.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qbrush.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qvector.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qmatrix.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpolygon.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qregion.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qdatastream.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qiodevice.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qline.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qtransform.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpainterpath.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qimage.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpixelformat.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpixmap.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsharedpointer.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qshareddata.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qhash.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsharedpointer_impl.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qfont.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qfontmetrics.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qfontinfo.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qsizepolicy.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qcursor.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qkeysequence.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qevent.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qvariant.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qmap.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qdebug.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qtextstream.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qlocale.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qset.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qcontiguouscache.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qurl.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qurlquery.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qfile.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qfiledevice.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qvector2d.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qtouchdevice.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qtabwidget.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qicon.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/QDataWidgetMapper \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qdatawidgetmapper.h \
debug/moc_predefs.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/bin/moc.exe
D:\PROGRAM\Q_T\5.12.12\mingw73_32\bin\moc.exe $(DEFINES) --include C:/Users/Marsi/Desktop/OTCHENASHKOTORYNANEBESAH/debug/moc_predefs.h -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/mkspecs/win32-g++ -IC:/Users/Marsi/Desktop/OTCHENASHKOTORYNANEBESAH -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtANGLE -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++ -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++/i686-w64-mingw32 -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++/backward -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include-fixed -ID:/PROGRAM/Q_T/Tools/mingw730_32/i686-w64-mingw32/include dobclient.h -o debug\moc_dobclient.cpp
debug/moc_dobinfo.cpp: dobinfo.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/QMainWindow \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qmainwindow.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qtwidgetsglobal.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qtguiglobal.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qglobal.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qconfig-bootstrapped.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qconfig.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qtcore-config.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsystemdetection.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qprocessordetection.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qcompilerdetection.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qtypeinfo.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsysinfo.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qlogging.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qflags.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qatomic.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qbasicatomic.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qatomic_bootstrap.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qgenericatomic.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qatomic_cxx11.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qatomic_msvc.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qglobalstatic.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qmutex.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qnumeric.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qversiontagging.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qtgui-config.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qtwidgets-config.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qwidget.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qwindowdefs.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qobjectdefs.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qnamespace.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qobjectdefs_impl.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qwindowdefs_win.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qobject.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstring.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qchar.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qbytearray.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qrefcount.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qarraydata.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringliteral.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringalgorithms.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringview.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringbuilder.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qlist.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qalgorithms.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qiterator.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qhashfunctions.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qpair.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qbytearraylist.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringlist.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qregexp.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringmatcher.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qcoreevent.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qscopedpointer.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qmetatype.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qvarlengtharray.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qcontainerfwd.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qobject_impl.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qmargins.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpaintdevice.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qrect.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsize.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qpoint.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpalette.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qcolor.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qrgb.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qrgba64.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qbrush.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qvector.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qmatrix.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpolygon.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qregion.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qdatastream.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qiodevice.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qline.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qtransform.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpainterpath.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qimage.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpixelformat.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpixmap.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsharedpointer.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qshareddata.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qhash.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsharedpointer_impl.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qfont.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qfontmetrics.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qfontinfo.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qsizepolicy.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qcursor.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qkeysequence.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qevent.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qvariant.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qmap.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qdebug.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qtextstream.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qlocale.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qset.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qcontiguouscache.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qurl.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qurlquery.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qfile.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qfiledevice.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qvector2d.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qtouchdevice.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qtabwidget.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qicon.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/QDataWidgetMapper \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qdatawidgetmapper.h \
debug/moc_predefs.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/bin/moc.exe
D:\PROGRAM\Q_T\5.12.12\mingw73_32\bin\moc.exe $(DEFINES) --include C:/Users/Marsi/Desktop/OTCHENASHKOTORYNANEBESAH/debug/moc_predefs.h -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/mkspecs/win32-g++ -IC:/Users/Marsi/Desktop/OTCHENASHKOTORYNANEBESAH -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtANGLE -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++ -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++/i686-w64-mingw32 -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++/backward -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include-fixed -ID:/PROGRAM/Q_T/Tools/mingw730_32/i686-w64-mingw32/include dobinfo.h -o debug\moc_dobinfo.cpp
debug/moc_dobotv.cpp: dobotv.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/QMainWindow \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qmainwindow.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qtwidgetsglobal.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qtguiglobal.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qglobal.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qconfig-bootstrapped.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qconfig.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qtcore-config.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsystemdetection.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qprocessordetection.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qcompilerdetection.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qtypeinfo.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsysinfo.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qlogging.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qflags.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qatomic.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qbasicatomic.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qatomic_bootstrap.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qgenericatomic.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qatomic_cxx11.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qatomic_msvc.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qglobalstatic.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qmutex.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qnumeric.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qversiontagging.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qtgui-config.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qtwidgets-config.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qwidget.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qwindowdefs.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qobjectdefs.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qnamespace.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qobjectdefs_impl.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qwindowdefs_win.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qobject.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstring.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qchar.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qbytearray.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qrefcount.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qarraydata.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringliteral.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringalgorithms.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringview.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringbuilder.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qlist.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qalgorithms.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qiterator.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qhashfunctions.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qpair.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qbytearraylist.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringlist.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qregexp.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringmatcher.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qcoreevent.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qscopedpointer.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qmetatype.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qvarlengtharray.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qcontainerfwd.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qobject_impl.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qmargins.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpaintdevice.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qrect.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsize.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qpoint.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpalette.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qcolor.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qrgb.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qrgba64.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qbrush.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qvector.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qmatrix.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpolygon.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qregion.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qdatastream.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qiodevice.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qline.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qtransform.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpainterpath.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qimage.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpixelformat.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpixmap.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsharedpointer.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qshareddata.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qhash.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsharedpointer_impl.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qfont.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qfontmetrics.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qfontinfo.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qsizepolicy.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qcursor.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qkeysequence.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qevent.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qvariant.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qmap.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qdebug.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qtextstream.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qlocale.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qset.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qcontiguouscache.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qurl.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qurlquery.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qfile.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qfiledevice.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qvector2d.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qtouchdevice.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qtabwidget.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qicon.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/QDataWidgetMapper \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qdatawidgetmapper.h \
debug/moc_predefs.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/bin/moc.exe
D:\PROGRAM\Q_T\5.12.12\mingw73_32\bin\moc.exe $(DEFINES) --include C:/Users/Marsi/Desktop/OTCHENASHKOTORYNANEBESAH/debug/moc_predefs.h -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/mkspecs/win32-g++ -IC:/Users/Marsi/Desktop/OTCHENASHKOTORYNANEBESAH -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtANGLE -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++ -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++/i686-w64-mingw32 -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++/backward -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include-fixed -ID:/PROGRAM/Q_T/Tools/mingw730_32/i686-w64-mingw32/include dobotv.h -o debug\moc_dobotv.cpp
debug/moc_dobpolzovat.cpp: dobpolzovat.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/QMainWindow \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qmainwindow.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qtwidgetsglobal.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qtguiglobal.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qglobal.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qconfig-bootstrapped.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qconfig.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qtcore-config.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsystemdetection.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qprocessordetection.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qcompilerdetection.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qtypeinfo.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsysinfo.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qlogging.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qflags.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qatomic.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qbasicatomic.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qatomic_bootstrap.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qgenericatomic.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qatomic_cxx11.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qatomic_msvc.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qglobalstatic.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qmutex.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qnumeric.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qversiontagging.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qtgui-config.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qtwidgets-config.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qwidget.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qwindowdefs.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qobjectdefs.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qnamespace.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qobjectdefs_impl.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qwindowdefs_win.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qobject.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstring.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qchar.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qbytearray.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qrefcount.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qarraydata.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringliteral.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringalgorithms.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringview.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringbuilder.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qlist.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qalgorithms.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qiterator.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qhashfunctions.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qpair.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qbytearraylist.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringlist.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qregexp.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstringmatcher.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qcoreevent.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qscopedpointer.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qmetatype.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qvarlengtharray.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qcontainerfwd.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qobject_impl.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qmargins.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpaintdevice.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qrect.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsize.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qpoint.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpalette.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qcolor.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qrgb.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qrgba64.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qbrush.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qvector.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qmatrix.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpolygon.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qregion.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qdatastream.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qiodevice.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qline.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qtransform.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpainterpath.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qimage.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpixelformat.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qpixmap.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsharedpointer.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qshareddata.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qhash.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsharedpointer_impl.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qfont.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qfontmetrics.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qfontinfo.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qsizepolicy.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qcursor.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qkeysequence.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qevent.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qvariant.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qmap.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qdebug.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qtextstream.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qlocale.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qset.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qcontiguouscache.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qurl.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qurlquery.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qfile.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qfiledevice.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qvector2d.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qtouchdevice.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qtabwidget.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qicon.h \
debug/moc_predefs.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/bin/moc.exe
D:\PROGRAM\Q_T\5.12.12\mingw73_32\bin\moc.exe $(DEFINES) --include C:/Users/Marsi/Desktop/OTCHENASHKOTORYNANEBESAH/debug/moc_predefs.h -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/mkspecs/win32-g++ -IC:/Users/Marsi/Desktop/OTCHENASHKOTORYNANEBESAH -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtANGLE -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtSql -ID:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++ -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++/i686-w64-mingw32 -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++/backward -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include -ID:/PROGRAM/Q_T/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include-fixed -ID:/PROGRAM/Q_T/Tools/mingw730_32/i686-w64-mingw32/include dobpolzovat.h -o debug\moc_dobpolzovat.cpp
debug/moc_dobsotrudn.cpp: dobsotrudn.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/QMainWindow \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qmainwindow.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qtwidgetsglobal.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qtguiglobal.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qglobal.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qconfig-bootstrapped.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qconfig.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qtcore-config.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsystemdetection.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qprocessordetection.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qcompilerdetection.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qtypeinfo.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qsysinfo.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qlogging.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qflags.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qatomic.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qbasicatomic.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qatomic_bootstrap.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qgenericatomic.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qatomic_cxx11.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qatomic_msvc.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qglobalstatic.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qmutex.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qnumeric.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qversiontagging.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qtgui-config.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qtwidgets-config.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtWidgets/qwidget.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qwindowdefs.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qobjectdefs.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qnamespace.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qobjectdefs_impl.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtGui/qwindowdefs_win.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qobject.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qstring.h \
D:/PROGRAM/Q_T/5.12.12/mingw73_32/include/QtCore/qchar.h \