blob: a415ac55728fefe26db3fc07a8c18c9e8b8de2e3 (
plain) (
blame)
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
|
include(../qxmpp.pri)
QT -= gui
QT += testlib
TARGET = qxmpp-tests
RESOURCES += tests.qrc
SOURCES += \
dataform.cpp \
iq.cpp \
jingle.cpp \
message.cpp \
presence.cpp \
register.cpp \
rpc.cpp \
rsm.cpp \
rtp.cpp \
stun.cpp \
tests.cpp
HEADERS += \
dataform.h \
iq.h \
jingle.h \
message.h \
presence.h \
register.h \
rpc.h \
rsm.h \
rtp.h \
stun.h \
tests.h
!isEmpty(QXMPP_AUTOTEST_INTERNAL) {
HEADERS += codec.h sasl.h
SOURCES += codec.cpp sasl.cpp
}
INCLUDEPATH += $$QXMPP_INCLUDEPATH
LIBS += -L../src $$QXMPP_LIBS
|