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