blob: 0e104c6f8b89e9ad004016c2c73c4e215e57af73 (
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 -lQXmppClient_d
} else {
LIBS += -L../../source -lQXmppClient
}
OTHER_FILES += README
|