-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqShab.pro
More file actions
68 lines (61 loc) · 1.73 KB
/
qShab.pro
File metadata and controls
68 lines (61 loc) · 1.73 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
60
61
62
63
64
65
66
67
68
#-------------------------------------------------
#
# Project created by QtCreator 2016-07-05T20:46:10
#
#-------------------------------------------------
QT += core gui network serialport positioning webengine webenginewidgets
TARGET = qShab
TEMPLATE = app
CONFIG += c++11
SOURCES += main.cpp \
mainwindow.cpp \
configwindow.cpp \
statusbarwidgets.cpp \
utility.cpp \
config/configuration.cpp \
config/configurationcontroller.cpp \
protocol/line.cpp \
protocol/lineparser.cpp \
protocol/habpositionline.cpp \
protocol/habimageline.cpp \
protocol/habtelemetryline.cpp \
protocol/clientconnectline.cpp \
protocol/clientupdateline.cpp \
protocol/clientdisconnectline.cpp \
data/datahandler.cpp \
data/serversocket.cpp \
datalogger.cpp \
protocol/client.cpp \
data/gpshandler.cpp \
data/habhandler.cpp \
protocol/hab.cpp \
protocol/serverpingline.cpp \
aboutdialog.cpp
HEADERS += mainwindow.hpp \
configwindow.hpp \
statusbarwidgets.hpp \
utility.hpp \
config/configuration.hpp \
config/configurationcontroller.hpp \
protocol/command.hpp \
protocol/line.hpp \
protocol/lineparser.hpp \
protocol/habpositionline.hpp \
protocol/habimageline.hpp \
protocol/habtelemetryline.hpp \
protocol/clientconnectline.hpp \
protocol/clientupdateline.hpp \
protocol/clientdisconnectline.hpp \
data/datahandler.hpp \
data/serversocket.hpp \
datalogger.hpp \
protocol/client.hpp \
data/gpshandler.hpp \
data/habhandler.hpp \
protocol/hab.hpp \
protocol/serverpingline.hpp \
aboutdialog.hpp
FORMS += mainwindow.ui \
configwindow.ui \
aboutdialog.ui
RESOURCES += resources.qrc