-
Notifications
You must be signed in to change notification settings - Fork 13
/
BroChat.pro
75 lines (65 loc) · 2.13 KB
/
BroChat.pro
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
QT += core network xml widgets webkitwidgets websockets svg
QMAKE_CXXFLAGS += -DQXMPP_STATIC
HEADERS += \
qtwitchchat.h \
qchatservice.h \
qchatmessage.h \
qsettingsdialog.h \
qchatsmile.h \
qsc2tvchat.h \
settingsconsts.h \
qgoodgamechat.h \
qcybergamechat.h \
qaceschat.h \
qgamerstvchat.h \
qbrochatview.h \
qfunstreamchat.h \
qchatupdateserver.h \
qstreamboxchat.h \
qchatstatistic.h \
qhitboxchat.h \
qgipsyteamchat.h \
qrealltvchat.h \
qyoutubechat.h \
qlivecodingchat.h
SOURCES += \
main.cpp \
qtwitchchat.cpp \
qchatservice.cpp \
qchatmessage.cpp \
qsettingsdialog.cpp \
qchatsmile.cpp \
qsc2tvchat.cpp \
qgoodgamechat.cpp \
qcybergamechat.cpp \
qaceschat.cpp \
qgamerstvchat.cpp \
qbrochatview.cpp \
qfunstreamchat.cpp \
qchatupdateserver.cpp \
qstreamboxchat.cpp \
qchatstatistic.cpp \
qhitboxchat.cpp \
qgipsyteamchat.cpp \
qrealltvchat.cpp \
qyoutubechat.cpp \
qlivecodingchat.cpp
RESOURCES += \
resources.rc
win32:RC_FILE = ico.rc
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/external/qxmpp-master/src/ -lqxmpp
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/external/qxmpp-master/src/ -lqxmppd
unix:!macx: LIBS += -L$$PWD/external/qxmpp-master/src/ -lqxmpp
INCLUDEPATH += \
$$PWD/external/qxmpp-master/src/base \
$$PWD/external/qxmpp-master/src/client \
$$PWD/external/qxmpp-master/src/server
DEPENDPATH += \
$$PWD/external/qxmpp-master/src/base \
$$PWD/external/qxmpp-master/src/client \
$$PWD/external/qxmpp-master/src/server
win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/external/qxmpp-master/src/libqxmpp.a
else:win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/external/qxmpp-master/src/libqxmppd.a
else:win32:!win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/external/qxmpp-master/src/qxmpp.lib
else:win32:!win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/external/qxmpp-master/src/qxmppd.lib
unix:!macx: PRE_TARGETDEPS += $$PWD/external/qxmpp-master/src/libqxmpp.a