-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplot_test.pro
More file actions
70 lines (62 loc) · 1.62 KB
/
plot_test.pro
File metadata and controls
70 lines (62 loc) · 1.62 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
QT += core gui
QT += charts
QT += widgets
QT += testlib
QT += printsupport
greaterThan(QT_MAJOR_VERSION, 5):
CONFIG += c++17
# You can make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
INCLUDEPATH += algorithm
INCLUDEPATH += model
INCLUDEPATH += debugoutput
SOURCES += \
algorithm/algorithm.cpp \
algorithm/assignedjobs.cpp \
algorithm/completedjobs.cpp \
algorithm/pendingfronts.cpp \
algorithm/pendingjobs.cpp \
algorithm/loader.cpp \
algorithm/resultcheck.cpp \
contentwidget.cpp \
main.cpp \
arena_cpp.cpp \
mainwindow.cpp \
misc/debugoutput.cpp \
model/job.cpp \
model/jobgroup.cpp \
model/plan.cpp \
model/worker.cpp \
model/workergroup.cpp \
plot.cpp \
qcustomplot.cpp \
chartview.cpp \
HEADERS += \
algorithm/algorithm.h \
algorithm/assignedjobs.h \
algorithm/completedjobs.h \
algorithm/pendingfronts.h \
algorithm/pendingjobs.h \
algorithm/loader.h \
algorithm/resultcheck.h \
contentwidget.h \
mainwindow.h \
misc/debugoutput.h \
model/job.h \
model/jobgroup.h \
model/plan.h \
model/worker.h \
model/workergroup.h \
plot.h \
qcustomplot.h \
chartview.h \
arena_cpp.h
arena.h
FORMS += \
mainwindow.ui
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
DISTFILES +=