-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathFlexiPlot.pro
More file actions
71 lines (62 loc) · 1.52 KB
/
FlexiPlot.pro
File metadata and controls
71 lines (62 loc) · 1.52 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
69
70
71
#-------------------------------------------------
#
# Project created by QtCreator 2013-10-14T22:48:52
#
#-------------------------------------------------
QT += core gui serialport printsupport charts opengl
#CONFIG += qwt
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = FlexiPlot
TEMPLATE = app
RC_FILE = flexiplot.rc
SOURCES += main.cpp\
mainwindow.cpp \
# widgets/plotitem.cpp \
settings.cpp \
config.cpp \
#gmapwidget.cpp \
#mapper.cpp \
widgets/abstractwidget.cpp \
terminal.cpp \
widgets/bargraph.cpp \
# widgets/linegraph.cpp \
debugtools.cpp \
widgets/helper.cpp \
widgets/piechart.cpp \
widgets/flexipieslice.cpp \
aboutdialog.cpp \
widgets/linechart.cpp \
widgets/scatterchart.cpp \
widgets/xychartplotitem.cpp
HEADERS += mainwindow.h \
# widgets/plotitem.h \
settings.h \
config.h \
#gmapwidget.h \
#mapper.h \
widgets/abstractwidget.h \
terminal.h \
widgets/bargraph.h \
# widgets/linegraph.h \
debugtools.h \
widgets/helper.h \
widgets/piechart.h \
widgets/flexipieslice.h \
aboutdialog.h \
widgets/linechart.h \
widgets/scatterchart.h \
widgets/xychartplotitem.h
FORMS += mainwindow.ui \
settings.ui \
widgets/mapper.ui \
terminal.ui \
widgets/bargraph.ui \
# widgets/linegraph.ui \
debugtools.ui \
widgets/piechart.ui \
aboutdialog.ui \
widgets/linechart.ui \
widgets/scatterchart.ui
RESOURCES += \
icons.qrc \
data.qrc