blob: 56d0f9b034aaabb2c7d37728ccedcec3b19e1cf9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
TEMPLATE = app
TARGET = example_7_archiveHandling
SOURCES += main.cpp \
xmppClient.cpp
HEADERS += xmppClient.h
INCLUDEPATH += ../../source
QT += network xml
CONFIG += console debug_and_release
CONFIG(debug, debug|release) {
LIBS += -L../../source/debug -lQXmppClient_d
} else {
LIBS += -L../../source/release -lQXmppClient
}
OTHER_FILES += README
|