forked from hyOzd/serialplot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
serialplot.pro
194 lines (180 loc) · 4.94 KB
/
serialplot.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
#
# Copyright © 2019 Hasan Yavuz Özderya
#
# This file is part of serialplot.
#
# serialplot is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# serialplot is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with serialplot. If not, see <http://www.gnu.org/licenses/>.
#
#-------------------------------------------------
#
# Project created by QtCreator 2015-03-04T08:20:06
#
#-------------------------------------------------
QT += core gui serialport network svg
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = serialplot
TEMPLATE = app
CONFIG += qwt
# LIBS += -lqwt # enable this line if qwt pri files aren't installed
DEFINES += PROGRAM_NAME="\\\"serialplot\\\""
DEFINES += VERSION_MAJOR=10 VERSION_MINOR=0 VERSION_PATCH=0 VERSION_STRING=\\\"10.0.0\\\"
SOURCES += \
src/main.cpp \
src/mainwindow.cpp \
src/portcontrol.cpp \
src/plot.cpp \
src/zoomer.cpp \
src/scrollzoomer.cpp \
src/scrollbar.cpp \
src/hidabletabwidget.cpp \
src/scalepicker.cpp \
src/scalezoomer.cpp \
src/portlist.cpp \
src/snapshot.cpp \
src/snapshotview.cpp \
src/snapshotmanager.cpp \
src/plotsnapshotoverlay.cpp \
src/commandpanel.cpp \
src/commandwidget.cpp \
src/commandedit.cpp \
src/dataformatpanel.cpp \
src/plotcontrolpanel.cpp \
src/recordpanel.cpp \
src/datarecorder.cpp \
src/tooltipfilter.cpp \
src/sneakylineedit.cpp \
src/stream.cpp \
src/streamchannel.cpp \
src/channelinfomodel.cpp \
src/ringbuffer.cpp \
src/indexbuffer.cpp \
src/linindexbuffer.cpp \
src/readonlybuffer.cpp \
src/framebufferseries.cpp \
src/numberformatbox.cpp \
src/endiannessbox.cpp \
src/abstractreader.cpp \
src/binarystreamreader.cpp \
src/binarystreamreadersettings.cpp \
src/asciireader.cpp \
src/asciireadersettings.cpp \
src/demoreader.cpp \
src/demoreadersettings.cpp \
src/framedreader.cpp \
src/framedreadersettings.cpp \
src/plotmanager.cpp \
src/plotmenu.cpp \
src/barplot.cpp \
src/barchart.cpp \
src/barscaledraw.cpp \
src/numberformat.cpp \
src/updatechecker.cpp \
src/versionnumber.cpp \
src/updatecheckdialog.cpp \
src/samplepack.cpp \
src/source.cpp \
src/sink.cpp \
src/samplecounter.cpp \
src/ledwidget.cpp \
src/datatextview.cpp \
src/bpslabel.cpp
HEADERS += \
src/mainwindow.h \
src/utils.h \
src/portcontrol.h \
src/byteswap.h \
src/plot.h \
src/hidabletabwidget.h \
src/framebuffer.h \
src/scalepicker.h \
src/scalezoomer.h \
src/portlist.h \
src/snapshotview.h \
src/snapshotmanager.h \
src/snapshot.h \
src/plotsnapshotoverlay.h \
src/commandpanel.h \
src/commandwidget.h \
src/commandedit.h \
src/dataformatpanel.h \
src/tooltipfilter.h \
src/sneakylineedit.h \
src/framebufferseries.h \
src/plotcontrolpanel.h \
src/numberformatbox.h \
src/endiannessbox.h \
src/framedreadersettings.h \
src/abstractreader.h \
src/binarystreamreader.h \
src/binarystreamreadersettings.h \
src/asciireadersettings.h \
src/asciireader.h \
src/demoreader.h \
src/framedreader.h \
src/plotmanager.h \
src/setting_defines.h \
src/numberformat.h \
src/recordpanel.h \
src/updatechecker.h \
src/updatecheckdialog.h \
src/demoreadersettings.h \
src/datatextview.h \
src/bpslabel.h \
src/barchart.h \
src/barplot.h \
src/barscaledraw.h \
src/channelinfomodel.h \
src/datarecorder.h \
src/defines.h \
src/indexbuffer.h \
src/ledwidget.h \
src/linindexbuffer.h \
src/plotmenu.h \
src/readonlybuffer.h \
src/ringbuffer.h \
src/samplecounter.h \
src/samplepack.h \
src/scrollbar.h \
src/scrollzoomer.h \
src/sink.h \
src/source.h \
src/streamchannel.h \
src/stream.h \
src/version.h \
src/versionnumber.h \
src/zoomer.h
FORMS += \
src/mainwindow.ui \
src/about_dialog.ui \
src/portcontrol.ui \
src/snapshotview.ui \
src/commandpanel.ui \
src/commandwidget.ui \
src/dataformatpanel.ui \
src/plotcontrolpanel.ui \
src/numberformatbox.ui \
src/endiannessbox.ui \
src/framedreadersettings.ui \
src/binarystreamreadersettings.ui \
src/asciireadersettings.ui \
src/recordpanel.ui \
src/updatecheckdialog.ui \
src/demoreadersettings.ui \
src/datatextview.ui
INCLUDEPATH += qmake/ src/
CONFIG += c++11
RESOURCES += misc/icons.qrc
win32 {
RESOURCES += misc/winicons.qrc
}