summaryrefslogtreecommitdiffstats
path: root/src/libcommuni/examples/qmlbot/qmlbot.pro
blob: 95c29613c863eee25525e813321b309c8ba8c6b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
######################################################################
# Communi
######################################################################

TEMPLATE = app
TARGET = qmlbot
DEPENDPATH += .
INCLUDEPATH += .
CONFIG += console
CONFIG -= app_bundle
QT = core network qml

lessThan(QT_MAJOR_VERSION, 5)|lessThan(QT_MINOR_VERSION, 1) {
    error(The QML2 based example requires Qt 5.1 or newer but Qt $$[QT_VERSION] was detected.)
}

# Input
SOURCES += main.cpp
RESOURCES += qmlbot.qrc
OTHER_FILES += qml/main.qml

include(../examples.pri)