aboutsummaryrefslogtreecommitdiff
path: root/example/example.pri
blob: b409c5cf4f6fff2ca48cf81152c0b857cee4472d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
TEMPLATE = app

INCLUDEPATH += ../../source

QT += network xml

CONFIG += console debug_and_release

CONFIG(debug, debug|release) {
    LIBS += -L../../source -lQXmppClient_d
} else {
    LIBS += -L../../source -lQXmppClient
}