summaryrefslogtreecommitdiffstats
path: root/examples/bluetooth/heartrate-game/heartrate-game.pro
blob: 65be338271c8d87cd999d39581f8e41f7d619e1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
TEMPLATE = app
TARGET = heartrate-game

QT += qml quick bluetooth

CONFIG += qmltypes
QML_IMPORT_NAME = HeartRateGame
QML_IMPORT_MAJOR_VERSION = 1

HEADERS += \
    connectionhandler.h \
    deviceinfo.h \
    devicefinder.h \
    devicehandler.h \
    bluetoothbaseclass.h \
    heartrate-global.h

SOURCES += main.cpp \
    connectionhandler.cpp \
    deviceinfo.cpp \
    devicefinder.cpp \
    devicehandler.cpp \
    bluetoothbaseclass.cpp

qml_resources.files = \
    qmldir \
    App.qml \
    BluetoothAlarmDialog.qml \
    BottomLine.qml \
    Connect.qml \
    GameButton.qml \
    GamePage.qml \
    GameSettings.qml \
    Measure.qml \
    SplashScreen.qml \
    Stats.qml \
    StatsLabel.qml \
    TitleBar.qml \
    Main.qml \
    images/bt_off_to_on.png \
    images/heart.png \
    images/logo.png

qml_resources.prefix = /qt/qml/HeartRateGame

RESOURCES = qml_resources

ios: QMAKE_INFO_PLIST = Info.plist
macos: QMAKE_INFO_PLIST = ../shared/Info.qmake.macos.plist

target.path = $$[QT_INSTALL_EXAMPLES]/bluetooth/heartrate-game
INSTALLS += target