-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSensorBridge.pro
More file actions
59 lines (51 loc) · 1.55 KB
/
SensorBridge.pro
File metadata and controls
59 lines (51 loc) · 1.55 KB
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
53
54
55
56
57
58
59
TEMPLATE = app
QT += widgets serialport websockets charts
CONFIG += c++11
TARGET=SensorBridge
SOURCES += main.cpp \
core/sensor.cpp \
core/serialconnection.cpp \
core/sensoroutput.cpp \
core/websocketoutput.cpp \
ui/mainwindow.cpp \
ui/websocketsettingswidget.cpp \
ui/outputsettingswidget.cpp \
ui/csvfilesettingswidget.cpp \
ui/sensorwidget.cpp \
ui/settingsdialog.cpp \
core/csvfileoutput.cpp \
core/jsonfileoutput.cpp \
ui/jsonfilesettingswidget.cpp \
ui/uisensor.cpp \
core/bridgeengine.cpp \
core/sensoroutputformatter.cpp \
core/smoothing/simplemovingaveragesmoothing.cpp \
core/smoothing/exponentialsmoothing.cpp \
core/smoothing/smoothing.cpp \
core/smoothing/nonesmoothing.cpp
# Default rules for deployment.
include(deployment.pri)
HEADERS += \
core/sensor.h \
core/serialconnection.h \
core/sensoroutput.h \
core/websocketoutput.h \
core/sensoroutputformatter.h \
ui/mainwindow.h \
ui/websocketsettingswidget.h \
ui/outputsettingswidget.h \
ui/csvfilesettingswidget.h \
ui/sensorwidget.h \
ui/settingsdialog.h \
core/csvfileoutput.h \
core/jsonfileoutput.h \
ui/jsonfilesettingswidget.h \
ui/uisensor.h \
core/bridgeengine.h \
core/smoothing/simplemovingaveragesmoothing.h \
core/smoothing/exponentialsmoothing.h \
core/smoothing/smoothing.h \
core/smoothing/nonesmoothing.h
DEFINES += SERIAL_ANALOG_SENSORS=3
RC_ICONS = icon.ico
ICON = icon.icns