blob: 36c5263525bfce5d2a4266898a749b59aba7fe76 (
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
|
include(../qxmpp.pri)
QT += testlib
TARGET = qxmpp-tests
RESOURCES += tests.qrc
SOURCES += \
codec.cpp \
dataform.cpp \
message.cpp \
presence.cpp \
register.cpp \
rsm.cpp \
rtp.cpp \
sasl.cpp \
tests.cpp
HEADERS += \
codec.h \
dataform.h \
message.h \
presence.h \
register.h \
rsm.h \
rtp.h \
sasl.h \
tests.h
win32 {
HEADERS -= codec.h sasl.h
SOURCES -= codec.cpp sasl.cpp
}
INCLUDEPATH += $$QXMPP_INCLUDEPATH
LIBS += -L../src $$QXMPP_LIBS
|