-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile.Debug
More file actions
8511 lines (8411 loc) · 560 KB
/
Makefile.Debug
File metadata and controls
8511 lines (8411 loc) · 560 KB
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: ShadowTalk
# Generated by qmake (3.0) (Qt 5.5.0)
# Project: ShadowTalk-PC.pro
# Template: app
#############################################################################
MAKEFILE = Makefile.Debug
####### Compiler, tools and options
CC = cl
CXX = cl
DEFINES = -DUNICODE -DWIN32 -DQT_QUICK_LIB -DQT_WIDGETS_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB
CFLAGS = -nologo -Zc:wchar_t -FS -Zi -MDd -W3 /Fddebug\ShadowTalk.pdb $(DEFINES)
CXXFLAGS = -nologo -Zc:wchar_t -FS -Zi -MDd -GR -W3 -w34100 -w34189 -w44996 -EHsc /Fddebug\ShadowTalk.pdb $(DEFINES)
INCPATH = -I. -Iinclude -Isrc\core -Isrc\net -Isrc\widget -I..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include -I..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQuick -I..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtWidgets -I..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtMultimedia -I..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui -I..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtANGLE -I..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQml -I..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtNetwork -I..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtXml -I..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore -IGeneratedFiles -I..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\win32-msvc2013
LINKER = link
LFLAGS = /NOLOGO /DYNAMICBASE /NXCOMPAT /NODEFAULTLIB:libcmtd.lib /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'"
LIBS = /LIBPATH:D:\0010GitHub\qt\qt\ShadowTalkPC\lib\x32\debug\boost D:\0010GitHub\qt\qt\ShadowTalkPC\lib\x32\debug\boost\libboost_chrono-vc120-mt-gd-1_57.lib D:\0010GitHub\qt\qt\ShadowTalkPC\lib\x32\debug\boost\libboost_date_time-vc120-mt-gd-1_57.lib D:\0010GitHub\qt\qt\ShadowTalkPC\lib\x32\debug\boost\libboost_filesystem-vc120-mt-gd-1_57.lib D:\0010GitHub\qt\qt\ShadowTalkPC\lib\x32\debug\boost\libboost_program_options-vc120-mt-gd-1_57.lib D:\0010GitHub\qt\qt\ShadowTalkPC\lib\x32\debug\boost\libboost_regex-vc120-mt-gd-1_57.lib D:\0010GitHub\qt\qt\ShadowTalkPC\lib\x32\debug\boost\libboost_system-vc120-mt-gd-1_57.lib D:\0010GitHub\qt\qt\ShadowTalkPC\lib\x32\debug\boost\libboost_thread-vc120-mt-gd-1_57.lib /LIBPATH:D:\0010GitHub\qt\qt\ShadowTalkPC\lib\x32\debug\peersafe D:\0010GitHub\qt\qt\ShadowTalkPC\lib\x32\debug\peersafe\cryptopp.lib D:\0010GitHub\qt\qt\ShadowTalkPC\lib\x32\debug\peersafe\maidsafe_common.lib D:\0010GitHub\qt\qt\ShadowTalkPC\lib\x32\debug\peersafe\maidsafe_passport.lib D:\0010GitHub\qt\qt\ShadowTalkPC\lib\x32\debug\peersafe\peersafe_channel.lib D:\0010GitHub\qt\qt\ShadowTalkPC\lib\x32\debug\peersafe\peersafe_imapi.lib D:\0010GitHub\qt\qt\ShadowTalkPC\lib\x32\debug\peersafe\peersafe_nat.lib D:\0010GitHub\qt\qt\ShadowTalkPC\lib\x32\debug\peersafe\peersafe_network.lib D:\0010GitHub\qt\qt\ShadowTalkPC\lib\x32\debug\peersafe\peersafe_visit.lib D:\0010GitHub\qt\qt\ShadowTalkPC\lib\x32\debug\peersafe\peersafe_oudp.lib D:\0010GitHub\qt\qt\ShadowTalkPC\lib\x32\debug\peersafe\protobuf_lite.lib D:\0010GitHub\qt\qt\ShadowTalkPC\lib\x32\debug\peersafe\torrent-rasterbar.lib D:\0010GitHub\qt\qt\ShadowTalkPC\lib\x32\debug\peersafe\udt.lib /LIBPATH:D:\0010GitHub\qt\qt\ShadowTalkPC\lib\x32\debug\qrcode D:\0010GitHub\qt\qt\ShadowTalkPC\lib\x32\debug\qrcode\libqrcode.lib /LIBPATH:D:\Qt\Qt5.5.0\5.5\msvc2013\lib D:\Qt\Qt5.5.0\5.5\msvc2013\lib\Qt5Quickd.lib D:\Qt\Qt5.5.0\5.5\msvc2013\lib\Qt5Widgetsd.lib D:\Qt\Qt5.5.0\5.5\msvc2013\lib\Qt5Multimediad.lib D:\Qt\Qt5.5.0\5.5\msvc2013\lib\Qt5Guid.lib D:\Qt\Qt5.5.0\5.5\msvc2013\lib\Qt5Qmld.lib D:\Qt\Qt5.5.0\5.5\msvc2013\lib\Qt5Networkd.lib D:\Qt\Qt5.5.0\5.5\msvc2013\lib\Qt5Xmld.lib D:\Qt\Qt5.5.0\5.5\msvc2013\lib\Qt5Cored.lib debug\ShadowTalk.res
QMAKE = D:\Qt\Qt5.5.0\5.5\msvc2013\bin\qmake.exe
IDC = idc
IDL = midl
ZIP = zip -r -9
DEF_FILE =
RES_FILE = debug\ShadowTalk.res
COPY = copy /y
SED = $(QMAKE) -install sed
COPY_FILE = copy /y
COPY_DIR = xcopy /s /q /y /i
DEL_FILE = del
DEL_DIR = rmdir
MOVE = move
CHK_DIR_EXISTS= if not exist
MKDIR = mkdir
INSTALL_FILE = copy /y
INSTALL_PROGRAM = copy /y
INSTALL_DIR = xcopy /s /q /y /i
####### Output directory
OBJECTS_DIR = debug
####### Files
SOURCES = src\main.cpp \
src\net\st_net.cpp \
src\core\st_cache.cpp \
src\core\st_log.cpp \
src\core\st_parsexml.cpp \
src\core\st_pixelsize.cpp \
src\core\st_zebra.cpp \
src\core\st_context.cpp \
src\core\st_base64.cpp \
src\core\st_qrcode.cpp \
src\core\st_thread.cpp \
src\widget\st_utils.cpp \
src\widget\st_friend.cpp \
src\widget\st_group.cpp \
src\widget\st_login.cpp \
src\widget\st_message.cpp \
src\widget\st_trayicon.cpp \
src\widget\st_chat.cpp \
src\widget\st_voice.cpp \
src\widget\st_picture.cpp \
src\widget\st_search.cpp GeneratedFiles\qrc_qml.cpp \
GeneratedFiles\moc_st_cache.cpp \
GeneratedFiles\moc_st_pixelsize.cpp \
GeneratedFiles\moc_st_thread.cpp \
GeneratedFiles\moc_st_utils.cpp \
GeneratedFiles\moc_st_friend.cpp \
GeneratedFiles\moc_st_message.cpp \
GeneratedFiles\moc_st_group.cpp \
GeneratedFiles\moc_st_trayicon.cpp \
GeneratedFiles\moc_st_voice.cpp \
GeneratedFiles\moc_st_picture.cpp \
GeneratedFiles\moc_st_search.cpp
OBJECTS = debug\main.obj \
debug\st_net.obj \
debug\st_cache.obj \
debug\st_log.obj \
debug\st_parsexml.obj \
debug\st_pixelsize.obj \
debug\st_zebra.obj \
debug\st_context.obj \
debug\st_base64.obj \
debug\st_qrcode.obj \
debug\st_thread.obj \
debug\st_utils.obj \
debug\st_friend.obj \
debug\st_group.obj \
debug\st_login.obj \
debug\st_message.obj \
debug\st_trayicon.obj \
debug\st_chat.obj \
debug\st_voice.obj \
debug\st_picture.obj \
debug\st_search.obj \
debug\qrc_qml.obj \
debug\moc_st_cache.obj \
debug\moc_st_pixelsize.obj \
debug\moc_st_thread.obj \
debug\moc_st_utils.obj \
debug\moc_st_friend.obj \
debug\moc_st_message.obj \
debug\moc_st_group.obj \
debug\moc_st_trayicon.obj \
debug\moc_st_voice.obj \
debug\moc_st_picture.obj \
debug\moc_st_search.obj
DIST = include\peersafe\imapi\im.h \
include\qrencode.h \
include\maidsafe\common\active.h \
src\net\st_net.h \
src\core\st_cache.h \
src\core\st_pixelsize.h \
src\core\st_parsexml.h \
src\core\st_log.h \
src\core\st_context.h \
src\core\st_qrcode.h \
src\core\st_thread.h \
src\core\st_zebra.h \
src\core\st_base64.h \
src\widget\st_utils.h \
src\widget\st_friend.h \
src\widget\st_message.h \
src\widget\st_login.h \
src\widget\st_group.h \
src\widget\st_trayicon.h \
src\widget\st_chat.h \
src\widget\st_voice.h \
src\widget\st_picture.h \
src\widget\st_search.h src\main.cpp \
src\net\st_net.cpp \
src\core\st_cache.cpp \
src\core\st_log.cpp \
src\core\st_parsexml.cpp \
src\core\st_pixelsize.cpp \
src\core\st_zebra.cpp \
src\core\st_context.cpp \
src\core\st_base64.cpp \
src\core\st_qrcode.cpp \
src\core\st_thread.cpp \
src\widget\st_utils.cpp \
src\widget\st_friend.cpp \
src\widget\st_group.cpp \
src\widget\st_login.cpp \
src\widget\st_message.cpp \
src\widget\st_trayicon.cpp \
src\widget\st_chat.cpp \
src\widget\st_voice.cpp \
src\widget\st_picture.cpp \
src\widget\st_search.cpp
QMAKE_TARGET = ShadowTalk
DESTDIR = debug\ #avoid trailing-slash linebreak
TARGET = ShadowTalk.exe
DESTDIR_TARGET = debug\ShadowTalk.exe
####### Implicit rules
.SUFFIXES: .c .cpp .cc .cxx
{src\core}.cpp{debug\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{src\core}.cc{debug\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{src\core}.cxx{debug\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{src\core}.c{debug\}.obj::
$(CC) -c $(CFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{src\net}.cpp{debug\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{src\net}.cc{debug\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{src\net}.cxx{debug\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{src\net}.c{debug\}.obj::
$(CC) -c $(CFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{src\widget}.cpp{debug\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{src\widget}.cc{debug\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{src\widget}.cxx{debug\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{src\widget}.c{debug\}.obj::
$(CC) -c $(CFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{GeneratedFiles}.cpp{debug\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{GeneratedFiles}.cc{debug\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{GeneratedFiles}.cxx{debug\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{GeneratedFiles}.c{debug\}.obj::
$(CC) -c $(CFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{src}.cpp{debug\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{src}.cc{debug\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{src}.cxx{debug\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{src}.c{debug\}.obj::
$(CC) -c $(CFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{.}.cpp{debug\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{.}.cc{debug\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{.}.cxx{debug\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
{.}.c{debug\}.obj::
$(CC) -c $(CFLAGS) $(INCPATH) -Fodebug\ @<<
$<
<<
####### Build rules
first: all
all: Makefile.Debug $(DESTDIR_TARGET)
$(DESTDIR_TARGET): $(OBJECTS) debug\ShadowTalk.res
$(LINKER) $(LFLAGS) /MANIFEST:embed /OUT:$(DESTDIR_TARGET) @<<
$(OBJECTS) $(LIBS)
<<
debug\ShadowTalk.res: ShadowTalk.rc
rc -D_DEBUG $(DEFINES) -fo debug\ShadowTalk.res ShadowTalk.rc
qmake: FORCE
@$(QMAKE) -o Makefile.Debug ShadowTalk-PC.pro
qmake_all: FORCE
dist:
$(ZIP) ShadowTalk.zip $(SOURCES) $(DIST) ShadowTalk-PC.pro ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\features\spec_pre.prf ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\common\msvc-desktop.conf ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\qconfig.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_3dcore.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_3dcore_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_3dinput.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_3dinput_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_3dquick.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_3dquick_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_3dquickrenderer.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_3dquickrenderer_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_3drenderer.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_3drenderer_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_axbase.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_axbase_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_axcontainer.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_axcontainer_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_axserver.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_axserver_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_bluetooth.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_bluetooth_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_bootstrap_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_clucene_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_concurrent.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_concurrent_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_core.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_core_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_dbus.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_dbus_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_declarative.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_declarative_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_designer.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_designer_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_designercomponents_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_enginio.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_enginio_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_gui.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_gui_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_help.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_help_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_location.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_location_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_multimedia.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_multimedia_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_multimediawidgets.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_multimediawidgets_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_network.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_network_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_nfc.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_nfc_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_opengl.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_opengl_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_openglextensions.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_openglextensions_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_platformsupport_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_positioning.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_positioning_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_printsupport.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_printsupport_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_qml.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_qml_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_qmldevtools_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_qmltest.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_qmltest_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_qtmultimediaquicktools_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_quick.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_quick_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_quickparticles_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_quickwidgets.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_quickwidgets_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_script.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_script_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_scripttools.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_scripttools_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_sensors.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_sensors_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_serialport.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_serialport_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_sql.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_sql_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_svg.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_svg_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_testlib.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_testlib_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_uiplugin.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_uitools.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_uitools_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_webchannel.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_webchannel_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_webengine.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_webengine_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_webenginecore.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_webenginecore_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_webenginewidgets.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_webenginewidgets_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_webkit.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_webkit_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_webkitwidgets.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_webkitwidgets_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_websockets.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_websockets_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_webview_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_widgets.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_widgets_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_winextras.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_winextras_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_xml.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_xml_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_xmlpatterns.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\modules\qt_lib_xmlpatterns_private.pri ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\features\qt_functions.prf ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\features\qt_config.prf ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\features\win32\qt_config.prf ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\win32-msvc2013\qmake.conf ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\features\spec_post.prf ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\features\exclusive_builds.prf ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\features\default_pre.prf ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\features\win32\default_pre.prf ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\features\resolve_config.prf ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\features\exclusive_builds_post.prf ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\features\default_post.prf ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\features\build_pass.prf ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\features\c++11.prf ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\features\win32\console.prf ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\features\win32\rtti.prf ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\features\precompile_header.prf ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\features\warn_on.prf ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\features\qt.prf ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\features\resources.prf ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\features\moc.prf ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\features\win32\opengl.prf ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\features\uic.prf ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\features\testcase_targets.prf ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\features\exceptions.prf ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\features\yacc.prf ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\mkspecs\features\lex.prf ShadowTalk-PC.pro qml.qrc D:/Qt/Qt5.5.0/5.5/msvc2013/lib/Qt5Quickd.prl D:/Qt/Qt5.5.0/5.5/msvc2013/lib/Qt5Widgetsd.prl D:/Qt/Qt5.5.0/5.5/msvc2013/lib/Qt5Multimediad.prl D:/Qt/Qt5.5.0/5.5/msvc2013/lib/Qt5Guid.prl D:/Qt/Qt5.5.0/5.5/msvc2013/lib/Qt5Qmld.prl D:/Qt/Qt5.5.0/5.5/msvc2013/lib/Qt5Networkd.prl D:/Qt/Qt5.5.0/5.5/msvc2013/lib/Qt5Xmld.prl D:/Qt/Qt5.5.0/5.5/msvc2013/lib/Qt5Cored.prl NO_PCH_SOURCES RESOURCES HEADERS SOURCES OBJECTIVE_SOURCES FORMS YACCSOURCES YACCSOURCES LEXSOURCES
clean: compiler_clean
-$(DEL_FILE) debug\main.obj debug\st_net.obj debug\st_cache.obj debug\st_log.obj debug\st_parsexml.obj debug\st_pixelsize.obj debug\st_zebra.obj debug\st_context.obj debug\st_base64.obj debug\st_qrcode.obj debug\st_thread.obj debug\st_utils.obj debug\st_friend.obj debug\st_group.obj debug\st_login.obj debug\st_message.obj debug\st_trayicon.obj debug\st_chat.obj debug\st_voice.obj debug\st_picture.obj debug\st_search.obj debug\qrc_qml.obj debug\moc_st_cache.obj debug\moc_st_pixelsize.obj debug\moc_st_thread.obj debug\moc_st_utils.obj debug\moc_st_friend.obj debug\moc_st_message.obj debug\moc_st_group.obj debug\moc_st_trayicon.obj debug\moc_st_voice.obj debug\moc_st_picture.obj debug\moc_st_search.obj
-$(DEL_FILE) debug\ShadowTalk.exp debug\ShadowTalk.ilk debug\ShadowTalk.idb
-$(DEL_FILE) debug\ShadowTalk.res
distclean: clean
-$(DEL_FILE) debug\ShadowTalk.lib debug\ShadowTalk.pdb
-$(DEL_FILE) $(DESTDIR_TARGET)
-$(DEL_FILE) Makefile.Debug
mocclean: compiler_moc_header_clean compiler_moc_source_clean
mocables: compiler_moc_header_make_all compiler_moc_source_make_all
check: first
compiler_no_pch_compiler_make_all:
compiler_no_pch_compiler_clean:
compiler_rcc_make_all: GeneratedFiles\qrc_qml.cpp
compiler_rcc_clean:
-$(DEL_FILE) GeneratedFiles\qrc_qml.cpp
GeneratedFiles\qrc_qml.cpp: qml.qrc \
qml\FriendAndContact.qml \
qml\STChatInput.qml \
qml\STChatEmojiView.qml \
qml\ChatList.qml \
qml\js_st_emoji.js \
qml\STChatView.qml \
qml\MainWindowButton.qml \
qml\picture.qml \
qml\FriendList.qml \
qml\STChatEmojiImage.qml \
qml\STChatContentWH.qml \
qml\common.js \
qml\functions.js \
qml\js_st_const.js \
qml\MainWindowSetting.qml \
qml\TextWithImage.qml \
qml\st_EmojiData.xml \
qml\js_st_showemoji.js \
qml\LoginProcess.qml \
qml\login.qml \
qml\STChatScrollBar.qml \
qml\main.qml \
qml\STChatBlank.qml \
qml\SearchList.qml \
qml\STChatItem.qml \
img\st_white_point.png \
img\st_setting_no_sound_1.png \
img\st_setting_no_sound_2.png \
img\st_select_chat.png \
img\st_qr_point.png \
img\st_setting_exit_1.png \
img\st_setting_exit_2.png \
img\st_qr_process.png \
img\st_icon.png \
img\st_setting_lock_screen_1.png \
img\st_setting_lock_screen_2.png \
img\st_qr_hint.png \
img\st_select_chat_t.png \
img\st_setting_sound_1.png \
img\st_green_point.png \
img\st_button_close_1.png \
img\st_setting_sound_2.png \
img\st_button_close_2.png \
img\st_button_max_1.png \
img\st_qr_code.png \
img\st_button_max_2.png \
img\st_button_search.png \
img\st_chat_delivery.png \
img\st_chat_screenshot.png \
img\st_setting.png \
img\st_select_users_t.png \
img\st_button_min_1.png \
img\st_chat_expression.png \
img\st_button_min_2.png \
img\st_button_normal_1.png \
img\st_select_users.png \
img\st_button_normal_2.png \
img\sound\st_m_sound_3.png \
img\sound\st_m_sound_33.png \
img\sound\st_m_sound_2.png \
img\sound\st_m_sound_11.png \
img\sound\st_m_sound_1.png \
img\sound\st_m_sound_22.png \
img\brower\st_pic_save.png \
img\brower\st_pic_next.png \
img\brower\st_pic_roll.png \
img\brower\st_pic_last.png \
img\brower\st_pic_close.png \
img\choice\st_choice_button.png \
img\choice\st_contact_list.png \
img\choice\st_chat_list.png \
img\head\st_message_point.png \
img\head\st_message_frame.png \
img\head\st_ball_white.png \
img\emoji\1f6b6.png \
img\emoji\1f31f.png \
img\emoji\1f4a8.png \
img\emoji\1f525.png \
img\emoji\1f498.png \
img\emoji\270b.png \
img\emoji\1f48f.png \
img\emoji\1f49e.png \
img\emoji\1f469.png \
img\emoji\1f639.png \
img\emoji\1f478.png \
img\emoji\1f4a6.png \
img\emoji\1f46f.png \
img\emoji\1f648.png \
img\emoji\1f63f.png \
img\emoji\1f487.png \
img\emoji\1f4ac.png \
img\emoji\1f64e.png \
img\emoji\1f496.png \
img\emoji\1f48d.png \
img\emoji\1f380.png \
img\emoji\1f49c.png \
img\emoji\1f449.png \
img\emoji\1f619.png \
img\emoji\1f458.png \
img\emoji\1f44f.png \
img\emoji\1f628.png \
img\emoji\1f467.png \
img\emoji\1f61f.png \
img\emoji\1f45e.png \
img\emoji\1f637.png \
img\emoji\1f62e.png \
img\emoji\1f476.png \
img\emoji\1f4a4.png \
img\emoji\1f46d.png \
img\emoji\1f646.png \
img\emoji\1f63d.png \
img\emoji\1f485.png \
img\emoji\1f47c.png \
img\emoji\1f4aa.png \
img\emoji\1f494.png \
img\emoji\1f64c.png \
img\emoji\1f48b.png \
img\emoji\1f49a.png \
img\emoji\1f608.png \
img\emoji\1f447.png \
img\emoji\1f617.png \
img\emoji\1f456.png \
img\emoji\1f60e.png \
img\emoji\1f44d.png \
img\emoji\1f626.png \
img\emoji\1f61d.png \
img\emoji\1f465.png \
img\emoji\1f45c.png \
img\emoji\1f635.png \
img\emoji\1f4a2.png \
img\emoji\1f62c.png \
img\emoji\1f474.png \
img\emoji\1f46b.png \
img\emoji\1f483.png \
img\emoji\1f63b.png \
img\emoji\1f47a.png \
img\emoji\1f64a.png \
img\emoji\1f302.png \
img\emoji\1f606.png \
img\emoji\1f445.png \
img\emoji\1f615.png \
img\emoji\1f60c.png \
img\emoji\1f454.png \
img\emoji\1f44b.png \
img\emoji\1f624.png \
img\emoji\1f463.png \
img\emoji\1f61b.png \
img\emoji\263a.png \
img\emoji\1f45a.png \
img\emoji\1f633.png \
img\emoji\1f472.png \
img\emoji\1f62a.png \
img\emoji\1f481.png \
img\emoji\1f3bd.png \
img\emoji\1f443.png \
img\emoji\1f613.png \
img\emoji\1f452.png \
img\emoji\1f60a.png \
img\emoji\1f622.png \
img\emoji\1f461.png \
img\emoji\1f631.png \
img\emoji\1f470.png \
img\emoji\1f640.png \
img\emoji\2728.png \
img\emoji\1f602.png \
img\emoji\1f611.png \
img\emoji\1f450.png \
img\emoji\2764.png \
img\emoji\1f620.png \
img\emoji\1f600.png \
img\emoji\1f4a9.png \
img\emoji\1f499.png \
img\emoji\270c.png \
img\emoji\1f4a7.png \
img\emoji\1f479.png \
img\emoji\1f649.png \
img\emoji\1f4ad.png \
img\emoji\1f47f.png \
img\emoji\1f64f.png \
img\emoji\1f497.png \
img\emoji\270a.png \
img\emoji\1f48e.png \
img\emoji\1f4bc.png \
img\emoji\1f459.png \
img\emoji\1f629.png \
img\emoji\1f468.png \
img\emoji\1f45f.png \
img\emoji\1f638.png \
img\emoji\1f477.png \
img\emoji\1f4a5.png \
img\emoji\1f62f.png \
img\emoji\1f46e.png \
img\emoji\1f647.png \
img\emoji\1f63e.png \
img\emoji\1f486.png \
img\emoji\1f47d.png \
img\emoji\1f4ab.png \
img\emoji\1f495.png \
img\emoji\1f64d.png \
img\emoji\1f48c.png \
img\emoji\1f49b.png \
img\emoji\1f609.png \
img\emoji\1f448.png \
img\emoji\1f618.png \
img\emoji\1f457.png \
img\emoji\1f60f.png \
img\emoji\1f44e.png \
img\emoji\1f627.png \
img\emoji\1f466.png \
img\emoji\1f61e.png \
img\emoji\1f45d.png \
img\emoji\1f636.png \
img\emoji\1f62d.png \
img\emoji\1f475.png \
img\emoji\1f46c.png \
img\emoji\1f645.png \
img\emoji\1f484.png \
img\emoji\1f63c.png \
img\emoji\1f64b.png \
img\emoji\1f493.png \
img\emoji\1f607.png \
img\emoji\1f446.png \
img\emoji\261d.png \
img\emoji\1f616.png \
img\emoji\1f60d.png \
img\emoji\1f455.png \
img\emoji\1f44c.png \
img\emoji\1f625.png \
img\emoji\1f61c.png \
img\emoji\1f464.png \
img\emoji\1f45b.png \
img\emoji\1f634.png \
img\emoji\1f473.png \
img\emoji\1f62b.png \
img\emoji\1f46a.png \
img\emoji\1f63a.png \
img\emoji\1f482.png \
img\emoji\1f491.png \
img\emoji\1f3a9.png \
img\emoji\1f605.png \
img\emoji\1f444.png \
img\emoji\1f614.png \
img\emoji\1f60b.png \
img\emoji\1f453.png \
img\emoji\1f44a.png \
img\emoji\1f623.png \
img\emoji\1f462.png \
img\emoji\1f61a.png \
img\emoji\1f632.png \
img\emoji\1f471.png \
img\emoji\1f480.png \
img\emoji\1f603.png \
img\emoji\1f442.png \
img\emoji\1f612.png \
img\emoji\1f451.png \
img\emoji\1f621.png \
img\emoji\1f460.png \
img\emoji\1f630.png \
img\emoji\1f3c3.png \
img\emoji\1f601.png \
img\emoji\1f440.png \
img\emoji\1f610.png \
res\fonts\KhmerUI.ttf \
res\fonts\KhmerUIb.ttf \
res\fonts\fangzheng_gbk.ttf \
sound\online.mp3 \
sound\message.wav \
sound\event.wav
D:\Qt\Qt5.5.0\5.5\msvc2013\bin\rcc.exe -name qml qml.qrc -o GeneratedFiles\qrc_qml.cpp
compiler_moc_header_make_all: GeneratedFiles\moc_st_cache.cpp GeneratedFiles\moc_st_pixelsize.cpp GeneratedFiles\moc_st_thread.cpp GeneratedFiles\moc_st_utils.cpp GeneratedFiles\moc_st_friend.cpp GeneratedFiles\moc_st_message.cpp GeneratedFiles\moc_st_group.cpp GeneratedFiles\moc_st_trayicon.cpp GeneratedFiles\moc_st_voice.cpp GeneratedFiles\moc_st_picture.cpp GeneratedFiles\moc_st_search.cpp
compiler_moc_header_clean:
-$(DEL_FILE) GeneratedFiles\moc_st_cache.cpp GeneratedFiles\moc_st_pixelsize.cpp GeneratedFiles\moc_st_thread.cpp GeneratedFiles\moc_st_utils.cpp GeneratedFiles\moc_st_friend.cpp GeneratedFiles\moc_st_message.cpp GeneratedFiles\moc_st_group.cpp GeneratedFiles\moc_st_trayicon.cpp GeneratedFiles\moc_st_voice.cpp GeneratedFiles\moc_st_picture.cpp GeneratedFiles\moc_st_search.cpp
GeneratedFiles\moc_st_cache.cpp: ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\QList \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qlist.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qalgorithms.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qglobal.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qconfig.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qfeatures.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qsystemdetection.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qprocessordetection.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qcompilerdetection.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qtypeinfo.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qtypetraits.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qsysinfo.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qlogging.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qflags.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qbasicatomic.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_bootstrap.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qgenericatomic.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_cxx11.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_gcc.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_msvc.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_armv7.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_armv6.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_armv5.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_ia64.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_mips.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_x86.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_unix.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qglobalstatic.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qmutex.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qnumeric.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qiterator.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qrefcount.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qarraydata.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qbytearraylist.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qbytearray.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qnamespace.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qstring.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qchar.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qstringbuilder.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qstringlist.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qregexp.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qstringmatcher.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\QObject \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qobject.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qobjectdefs.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qobjectdefs_impl.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qcoreevent.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qscopedpointer.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qmetatype.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qvarlengtharray.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qcontainerfwd.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qisenum.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qobject_impl.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\QPointer \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qpointer.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qsharedpointer.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qshareddata.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qhash.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qpair.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qsharedpointer_impl.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\QString \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\QMutex \
src\widget\st_group.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQuick\QQuickItem \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQuick\qquickitem.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQuick\qtquickglobal.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQml\qqml.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQml\qqmlprivate.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQml\qtqmlglobal.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qvariant.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qmap.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qdebug.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qtextstream.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qiodevice.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qlocale.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qvector.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qpoint.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qset.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qcontiguouscache.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qurl.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qurlquery.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQml\qqmlparserstatus.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQml\qqmlpropertyvaluesource.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQml\qqmllist.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qmetaobject.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQml\qqmlcomponent.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQml\qqmlerror.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQml\qjsvalue.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qevent.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qwindowdefs.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qwindowdefs_win.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qregion.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qrect.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qmargins.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qsize.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qdatastream.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qkeysequence.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qfile.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qfiledevice.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qvector2d.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qtouchdevice.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qfont.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qaccessible.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qcoreapplication.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qeventloop.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qcolor.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qrgb.h \
src\widget\st_message.h \
src\widget\st_friend.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\QGuiApplication \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qguiapplication.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qinputmethod.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQuick\QQuickView \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQuick\qquickview.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQuick\qquickwindow.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qopengl.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qt_windows.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtANGLE\GLES3\gl3.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtANGLE\GLES3\gl3platform.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtANGLE\KHR\khrplatform.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtANGLE\GLES2\gl2.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtANGLE\GLES2\gl2platform.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qopengles2ext.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qopenglext.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qwindow.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\QEvent \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\QMargins \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\QRect \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qsurface.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qsurfaceformat.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qicon.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qpixmap.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qpaintdevice.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qimage.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qtransform.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qmatrix.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qpolygon.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qline.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qpainterpath.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qpixelformat.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qcursor.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQml\qqmldebug.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\QTime \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qdatetime.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\QMap \
src\widget\st_chat.h \
src\core\st_cache.h
D:\Qt\Qt5.5.0\5.5\msvc2013\bin\moc.exe $(DEFINES) -D_MSC_VER=1800 -D_WIN32 -ID:/Qt/Qt5.5.0/5.5/msvc2013/mkspecs/win32-msvc2013 -ID:/0010GitHub/qt/qt/ShadowTalkPC -ID:/0010GitHub/qt/qt/ShadowTalkPC/include -ID:/0010GitHub/qt/qt/ShadowTalkPC/src/core -ID:/0010GitHub/qt/qt/ShadowTalkPC/src/net -ID:/0010GitHub/qt/qt/ShadowTalkPC/src/widget -ID:/Qt/Qt5.5.0/5.5/msvc2013/include -ID:/Qt/Qt5.5.0/5.5/msvc2013/include/QtQuick -ID:/Qt/Qt5.5.0/5.5/msvc2013/include/QtWidgets -ID:/Qt/Qt5.5.0/5.5/msvc2013/include/QtMultimedia -ID:/Qt/Qt5.5.0/5.5/msvc2013/include/QtGui -ID:/Qt/Qt5.5.0/5.5/msvc2013/include/QtANGLE -ID:/Qt/Qt5.5.0/5.5/msvc2013/include/QtQml -ID:/Qt/Qt5.5.0/5.5/msvc2013/include/QtNetwork -ID:/Qt/Qt5.5.0/5.5/msvc2013/include/QtXml -ID:/Qt/Qt5.5.0/5.5/msvc2013/include/QtCore src\core\st_cache.h -o GeneratedFiles\moc_st_cache.cpp
GeneratedFiles\moc_st_pixelsize.cpp: ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\QObject \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qobject.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qobjectdefs.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qnamespace.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qglobal.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qconfig.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qfeatures.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qsystemdetection.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qprocessordetection.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qcompilerdetection.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qtypeinfo.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qtypetraits.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qsysinfo.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qlogging.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qflags.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qbasicatomic.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_bootstrap.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qgenericatomic.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_cxx11.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_gcc.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_msvc.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_armv7.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_armv6.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_armv5.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_ia64.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_mips.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_x86.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_unix.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qglobalstatic.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qmutex.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qnumeric.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qobjectdefs_impl.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qstring.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qchar.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qbytearray.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qrefcount.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qarraydata.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qstringbuilder.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qlist.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qalgorithms.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qiterator.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qbytearraylist.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qstringlist.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qregexp.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qstringmatcher.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qcoreevent.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qscopedpointer.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qmetatype.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qvarlengtharray.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qcontainerfwd.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qisenum.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qobject_impl.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQuick\QQuickItem \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQuick\qquickitem.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQuick\qtquickglobal.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQml\qqml.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQml\qqmlprivate.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQml\qtqmlglobal.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qvariant.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qmap.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qpair.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qdebug.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qhash.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qtextstream.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qiodevice.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qlocale.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qshareddata.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qvector.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qpoint.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qset.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qcontiguouscache.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qurl.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qurlquery.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQml\qqmlparserstatus.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQml\qqmlpropertyvaluesource.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQml\qqmllist.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qmetaobject.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQml\qqmlcomponent.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQml\qqmlerror.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQml\qjsvalue.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\QList \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qevent.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qwindowdefs.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qwindowdefs_win.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qregion.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qrect.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qmargins.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qsize.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qdatastream.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qkeysequence.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qfile.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qfiledevice.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qvector2d.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qtouchdevice.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qfont.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qsharedpointer.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qsharedpointer_impl.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qaccessible.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qcoreapplication.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qeventloop.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qcolor.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qrgb.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\QGuiApplication \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qguiapplication.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qinputmethod.h \
src\core\st_pixelsize.h
D:\Qt\Qt5.5.0\5.5\msvc2013\bin\moc.exe $(DEFINES) -D_MSC_VER=1800 -D_WIN32 -ID:/Qt/Qt5.5.0/5.5/msvc2013/mkspecs/win32-msvc2013 -ID:/0010GitHub/qt/qt/ShadowTalkPC -ID:/0010GitHub/qt/qt/ShadowTalkPC/include -ID:/0010GitHub/qt/qt/ShadowTalkPC/src/core -ID:/0010GitHub/qt/qt/ShadowTalkPC/src/net -ID:/0010GitHub/qt/qt/ShadowTalkPC/src/widget -ID:/Qt/Qt5.5.0/5.5/msvc2013/include -ID:/Qt/Qt5.5.0/5.5/msvc2013/include/QtQuick -ID:/Qt/Qt5.5.0/5.5/msvc2013/include/QtWidgets -ID:/Qt/Qt5.5.0/5.5/msvc2013/include/QtMultimedia -ID:/Qt/Qt5.5.0/5.5/msvc2013/include/QtGui -ID:/Qt/Qt5.5.0/5.5/msvc2013/include/QtANGLE -ID:/Qt/Qt5.5.0/5.5/msvc2013/include/QtQml -ID:/Qt/Qt5.5.0/5.5/msvc2013/include/QtNetwork -ID:/Qt/Qt5.5.0/5.5/msvc2013/include/QtXml -ID:/Qt/Qt5.5.0/5.5/msvc2013/include/QtCore src\core\st_pixelsize.h -o GeneratedFiles\moc_st_pixelsize.cpp
GeneratedFiles\moc_st_thread.cpp: ..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\QThread \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qthread.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qobject.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qobjectdefs.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qnamespace.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qglobal.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qconfig.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qfeatures.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qsystemdetection.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qprocessordetection.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qcompilerdetection.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qtypeinfo.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qtypetraits.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qsysinfo.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qlogging.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qflags.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qbasicatomic.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_bootstrap.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qgenericatomic.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_cxx11.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_gcc.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_msvc.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_armv7.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_armv6.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_armv5.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_ia64.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_mips.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_x86.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qatomic_unix.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qglobalstatic.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qmutex.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qnumeric.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qobjectdefs_impl.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qstring.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qchar.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qbytearray.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qrefcount.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qarraydata.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qstringbuilder.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qlist.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qalgorithms.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qiterator.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qbytearraylist.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qstringlist.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qregexp.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qstringmatcher.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qcoreevent.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qscopedpointer.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qmetatype.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qvarlengtharray.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qcontainerfwd.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qisenum.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qobject_impl.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\QDebug \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qdebug.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qhash.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qpair.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qmap.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qtextstream.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qiodevice.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qlocale.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qvariant.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qshareddata.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qvector.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qpoint.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qset.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qcontiguouscache.h \
src\core\st_context.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\QGuiApplication \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qguiapplication.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qcoreapplication.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qeventloop.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qwindowdefs.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qwindowdefs_win.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qinputmethod.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qsize.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQuick\QQuickView \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQuick\qquickview.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQuick\qquickwindow.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQuick\qtquickglobal.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qopengl.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qt_windows.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtANGLE\GLES3\gl3.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtANGLE\GLES3\gl3platform.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtANGLE\KHR\khrplatform.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtANGLE\GLES2\gl2.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtANGLE\GLES2\gl2platform.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qopengles2ext.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qopenglext.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qwindow.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\QObject \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\QEvent \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\QMargins \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qmargins.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\QRect \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qrect.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qsurface.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qsurfaceformat.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qicon.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qpixmap.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qpaintdevice.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qcolor.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qrgb.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qsharedpointer.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qsharedpointer_impl.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qimage.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qtransform.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qmatrix.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qpolygon.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qregion.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qdatastream.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qline.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qpainterpath.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qpixelformat.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qcursor.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qevent.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qkeysequence.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qurl.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qurlquery.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qfile.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qfiledevice.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qvector2d.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtGui\qtouchdevice.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQml\qqml.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQml\qqmlprivate.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQml\qtqmlglobal.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQml\qqmlparserstatus.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQml\qqmlpropertyvaluesource.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQml\qqmllist.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qmetaobject.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQml\qqmldebug.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQml\QtQml \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtQml\QtQmlDepends \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\QtCore \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\QtCoreDepends \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qabstractanimation.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qanimationgroup.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qparallelanimationgroup.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qpauseanimation.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qpropertyanimation.h \
..\..\..\..\Qt\Qt5.5.0\5.5\msvc2013\include\QtCore\qvariantanimation.h \