-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMonark-ANT.pro
50 lines (42 loc) · 1.02 KB
/
Monark-ANT.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
42
43
44
45
46
47
48
49
50
QT += core gui serialport bluetooth network dbus mqtt
unix {
CONFIG += link_pkgconfig
PKGCONFIG += libusb
}
CONFIG += c++11
TARGET = Monark-ANT
TEMPLATE = app
disable-ant-power {
DEFINES += DISABLE_ANT_POWER
}
disable-ant-fec {
DEFINES += DISABLE_ANT_FEC
}
raspberry-pi {
DEFINES += RASPBERRYPI
}
SOURCES += main.cpp \
MonarkConnection.cpp \
mqttconnection.cpp \
powerdevice.cpp \
LibUsb.cpp \
antmessage.cpp \
ant.cpp \
fecdevice.cpp \
antdevice.cpp \
dbusadaptor.cpp \
gearsimulator.cpp \
bledatabroadcaster.cpp \
ftmsdevice.cpp
HEADERS += MonarkConnection.h \
mqttconnection.h \
powerdevice.h \
LibUsb.h \
antmessage.h \
ant.h \
fecdevice.h \
antdevice.h \
dbusadaptor.h \
gearsimulator.h \
bledatabroadcaster.h \
ftmsdevice.h