summaryrefslogtreecommitdiffstats
path: root/examples/sensors/sensor_explorer/qml.pro
blob: e2324a849eca0a9b74e43277eabdb9aed91a53b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
TEMPLATE = app
TARGET = sensor_explorer
QT += qml quick

qtHaveModule(widgets) {
    QT += widgets
}

# Avoid going to release/debug subdirectory
win32: DESTDIR = ./

SOURCES = main.cpp

app.files = \
    sensor_explorer.qml \
    icon.png

target.path = $$[QT_INSTALL_EXAMPLES]/sensors/sensor_explorer
app.path = $$[QT_INSTALL_EXAMPLES]/sensors/sensor_explorer
INSTALLS += target app

RESOURCES += \
    qml.qrc