forked from iwxyi/CatlikeQQ
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCatlikeQQ.pro
More file actions
176 lines (162 loc) · 5.87 KB
/
CatlikeQQ.pro
File metadata and controls
176 lines (162 loc) · 5.87 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
QT += core gui network websockets multimedia multimediawidgets
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++11
# The following define makes your compiler emit warnings if you use
# any Qt feature that has been marked deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
RC_FILE += resources/resource.rc
# You can also make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
DEFINES += ENABLE_TRAY ENABLE_SHORTCUT
contains(DEFINES, ENABLE_SHORTCUT) {
include($$PWD/third_party/qxtglobalshortcut5/qxt.pri)
}else{
message("shortcuts not support")
}
INCLUDEPATH += third_party/color_octree/\
third_party/facile_menu/\
third_party/interactive_buttons/\
third_party/utils/\
global/\
notification/\
web_service/\
widgets/\
control_service/\
contact/
SOURCES += \
contact/contactpage.cpp \
contact/searchedit.cpp \
control_service/devcoderunner.cpp \
control_service/remotecontrolservie.cpp \
global/headerutil.cpp \
global/usettings.cpp \
notification/messageview.cpp \
notification/messageview_parser.cpp \
notification/smoothlistwidget.cpp \
third_party/utils/httpuploader.cpp \
web_service/cqhttpservice.cpp \
third_party/color_octree/coloroctree.cpp \
third_party/color_octree/imageutil.cpp \
third_party/facile_menu/facilemenu.cpp \
third_party/facile_menu/facilemenuitem.cpp \
third_party/interactive_buttons/interactivebuttonbase.cpp \
main.cpp \
mainwindow.cpp \
notification/notificationbubble.cpp \
notification/notificationcard.cpp \
global/runtime.cpp \
third_party/utils/fileutil.cpp \
third_party/utils/stringutil.cpp \
third_party/utils/textinputdialog.cpp \
widgets/settings/aboutwidget.cpp \
widgets/settings/accountwidget.cpp \
widgets/settings/applicationwidget.cpp \
widgets/settings/bannerwidget.cpp \
widgets/settings/countwidget.cpp \
widgets/settings/debugwidget.cpp \
widgets/settings/filewidget.cpp \
widgets/settings/groupwidget.cpp \
widgets/settings/leavemodewidget.cpp \
widgets/settings/remotecontrolwidget.cpp \
widgets/settings/replywidget.cpp \
widgets/settings/specialwidget.cpp \
widgets/settings/speechwidget.cpp \
widgets/settings/stylewidget.cpp \
widgets/video/videolabel.cpp \
widgets/video/videosurface.cpp \
widgets/video/videowidget.cpp
HEADERS += \
contact/contactpage.h \
contact/searchedit.h \
control_service/devcoderunner.h \
control_service/remotecontrolservie.h \
global/accountinfo.h \
global/defines.h \
global/headerutil.h \
global/signaltransfer.h \
global/usettings.h \
notification/messageview.h \
notification/replyedit.h \
notification/smoothlistwidget.h \
notification/smoothscrollbean.h \
resources/resource.rc \
third_party/utils/conditionutil.h \
third_party/utils/httpuploader.h \
third_party/utils/mysettings.h \
third_party/utils/netimageutil.h \
web_service/cqhttpservice.h \
third_party/color_octree/coloroctree.h \
third_party/third_party/color_octree/imageutil.h \
third_party/facile_menu/facilemenu.h \
third_party/facile_menu/facilemenuitem.h \
third_party/interactive_buttons/interactivebuttonbase.h \
mainwindow.h \
notification/notificationbubble.h \
notification/notificationcard.h \
global/runtime.h \
third_party/utils/dlog.h \
third_party/utils/fileutil.h \
third_party/utils/myjson.h \
third_party/utils/netutil.h \
third_party/utils/pinyinutil.h \
third_party/utils/stringutil.h \
third_party/utils/textinputdialog.h \
web_service/msgbean.h \
widgets/clicklabel.h \
widgets/customtabstyle.h \
widgets/lefttabwidget.h \
widgets/settings/aboutwidget.h \
widgets/settings/accountwidget.h \
widgets/settings/applicationwidget.h \
widgets/settings/bannerwidget.h \
widgets/settings/countwidget.h \
widgets/settings/debugwidget.h \
widgets/settings/filewidget.h \
widgets/settings/groupwidget.h \
widgets/settings/leavemodewidget.h \
widgets/settings/remotecontrolwidget.h \
widgets/settings/replywidget.h \
widgets/settings/specialwidget.h \
widgets/settings/speechwidget.h \
widgets/settings/stylewidget.h \
widgets/video/videolabel.h \
widgets/video/videosurface.h \
widgets/video/videowidget.h
FORMS += \
contact/contactpage.ui \
mainwindow.ui \
notification/notificationbubble.ui \
notification/notificationcard.ui \
third_party/utils/textinputdialog.ui \
widgets/settings/aboutwidget.ui \
widgets/settings/accountwidget.ui \
widgets/settings/applicationwidget.ui \
widgets/settings/bannerwidget.ui \
widgets/settings/countwidget.ui \
widgets/settings/debugwidget.ui \
widgets/settings/filewidget.ui \
widgets/settings/groupwidget.ui \
widgets/settings/leavemodewidget.ui \
widgets/settings/remotecontrolwidget.ui \
widgets/settings/replywidget.ui \
widgets/settings/specialwidget.ui \
widgets/settings/speechwidget.ui \
widgets/settings/stylewidget.ui
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
DISTFILES += \
README.md \
qxtglobalshortcut5/qxt.pri \
resources/icons/account.png \
resources/icons/application.png \
resources/icons/auxiliary.png \
resources/icons/port.png \
resources/icons/settings.png
RESOURCES += \
resources/resources.qrc