aboutsummaryrefslogtreecommitdiff
path: root/example/example_6_rpcClient/example_6_rpcClient.pro
blob: 3bfd603281bec0510ef7a8afa207556922468a41 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
TEMPLATE = app
TARGET = example_6_rpcClient
SOURCES += main.cpp \
    rpcClient.cpp 
HEADERS += rpcClient.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