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

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

SOURCES = main.cpp sensormodels.cpp
HEADERS = sensormodels.h

CONFIG += qmltypes
QML_IMPORT_NAME = SensorModels
QML_IMPORT_MAJOR_VERSION = 1

OTHER_FILES = \
    sensor_explorer.qml

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

RESOURCES += \
    qml.qrc