-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoca.pro
41 lines (35 loc) · 1.05 KB
/
oca.pro
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
TEMPLATE = app
TARGET = oca
QT += qml quick bluetooth
CONFIG += c++11
HEADERS += \
structs/CSCMeasurementData.h \
structs/CyclingPowerMeasurementData.h \
structs/FitnessMachineControlPoint.h \
structs/FitnessMachineFeatureData.h \
structs/IndoorBikeData.h \
structs/VariousStructs.h \
connectionhandler.h \
deviceinfo.h \
devicefinder.h \
devicehandler.h \
bluetoothbaseclass.h \
oca-global.h
SOURCES += main.cpp \
structs/CSCMeasurementData.cpp \
structs/CyclingPowerMeasurementData.cpp \
structs/FitnessMachineControlPoint.cpp \
structs/FitnessMachineFeatureData.cpp \
structs/IndoorBikeData.cpp \
structs/VariousStructs.cpp \
connectionhandler.cpp \
deviceinfo.cpp \
devicefinder.cpp \
devicehandler.cpp \
bluetoothbaseclass.cpp
RESOURCES += qml.qrc \
images.qrc
# Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH =
target.path = $$[QT_INSTALL_EXAMPLES]/bluetooth/oca
INSTALLS += target