Files
@ ecd02467c397
Branch filter:
Location: tempo-plotter/serialplot.pro
ecd02467c397
2.5 KiB
text/x-prolog
preliminary implementation of new reader based design
binary stream and ascii readers added
sps isn't working, demo mode needs some work, code cleanup continues
binary stream and ascii readers added
sps isn't working, demo mode needs some work, code cleanup continues
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 | #
# Copyright © 2015 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
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = serialplot
TEMPLATE = app
CONFIG += qwt
SOURCES += \
src/main.cpp\
src/mainwindow.cpp \
src/portcontrol.cpp \
src/plot.cpp \
src/zoomer.cpp \
src/hidabletabwidget.cpp \
src/framebuffer.cpp \
src/scalepicker.cpp \
src/scalezoomer.cpp \
src/portlist.cpp \
src/snapshotview.cpp \
src/snapshotmanager.cpp \
src/snapshot.cpp \
src/plotsnapshotoverlay.cpp \
src/commandpanel.cpp \
src/commandwidget.cpp \
src/commandedit.cpp \
src/dataformatpanel.cpp \
src/tooltipfilter.cpp \
src/sneakylineedit.cpp \
src/channelmanager.cpp \
src/framebufferseries.cpp \
src/plotcontrolpanel.cpp
HEADERS += \
src/mainwindow.h \
src/utils.h \
src/portcontrol.h \
src/floatswap.h \
src/plot.h \
src/zoomer.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/channelmanager.h \
src/framebufferseries.h \
src/plotcontrolpanel.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
INCLUDEPATH += qmake/ src/
CONFIG += c++11
RESOURCES += misc/icons.qrc
win32 {
RESOURCES += misc/winicons.qrc
}
|