-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathJohnson.pro
More file actions
45 lines (38 loc) · 1.05 KB
/
Copy pathJohnson.pro
File metadata and controls
45 lines (38 loc) · 1.05 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
#-------------------------------------------------
#
# Project created by QtCreator 2012-12-07T16:03:02
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = Johnson
TEMPLATE = app
SOURCES += source/job.cpp \
source/mashine.cpp \
source/main.cpp \
source/mainwindow.cpp \
source/solver.cpp \
source/ploter.cpp \
source/solution.cpp \
source/johnsonSolver.cpp \
source/fifoSolver.cpp \
source/huSolver.cpp \
source/approximateSolver.cpp \
source/ltpApproximateSolver.cpp \
source/rtpApproximateSolver.cpp
HEADERS += headers/job.h \
headers/mashine.h \
headers/mainwindow.h \
headers/solver.h \
headers/dominance.h \
headers/ploter.h \
headers/solution.h \
headers/node.h \
headers/tree.h \
headers/johnsonSolver.h \
headers/fifoSolver.h \
headers/huSolver.h \
headers/approximateSolver.h \
headers/ltpApproximateSolver.h \
headers/rtpApproximateSolver.h
FORMS += ui/mainwindow.ui