-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOrdinaryDEsolver.pro
84 lines (79 loc) · 2.12 KB
/
OrdinaryDEsolver.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
message(Qt version: $$[QT_VERSION])
message($$QMAKESPEC)
linux-g++ {
message(Linux)
}
TEMPLATE = app
CONFIG += console c++11
QMAKE_CXXFLAGS += -O3
CONFIG -= app_bundle
CONFIG -= qt
CONFIG(debug, debug|release) {
CONFIG -= -O3
CONFIG += -O0
}
SOURCES += main.cpp \
streams/Stream.cpp \
limiters/LimiterN2.cpp \
limiters/LimiterN3.cpp \
limiters/LimiterN2BM.cpp \
limiters/LimiterN3BM.cpp \
limiters/MUSCLLimiterBM.cpp \
limiters/Limiter.cpp \
limiters/MUSCLLimiter.cpp \
streams/GodunovStream.cpp \
streams/Stream.cpp \
support/Conditions.cpp \
support/FileWriter.cpp \
support/MyMath.cpp \
support/Problem.cpp \
support/Solver.cpp \
support/State.cpp \
systemMakers/GalerkinSystemMaker.cpp \
systemMakers/SystemMaker.cpp \
systemSolvers/EulerSystemSolver.cpp \
systemSolvers/RungeKuttaSystemSolver.cpp \
systemSolvers/SystemSolver.cpp
HEADERS += \
limiters/Limiter.h \
limiters/LimiterN2.h \
limiters/LimiterN2BM.h \
limiters/LimiterN3.h \
limiters/LimiterN3BM.h \
limiters/MUSCLLimiter.h \
limiters/MUSCLLimiterBM.h \
streams/GodunovStream.h \
streams/Stream.h \
support/Conditions.h \
support/FileWriter.h \
support/MyMath.h \
support/Problem.h \
support/Solver.h \
support/State.h \
systemMakers/GalerkinSystemMaker.h \
systemMakers/SystemMaker.h \
systemSolvers/EulerSystemSolver.h \
systemSolvers/RungeKuttaSystemSolver.h \
systemSolvers/SystemSolver.h
EulerSystemSolver.h \
limiters/LimiterN2.h \
limiters/LimiterN3.h \
limiters/LimiterN2BM.h \
limiters/LimiterN3BM.h \
limiters/MUSCLLimiterBM.h \
limiters/Limiter.h \
limiters/MUSCLLimiter.h \
streams/GodunovStream.h \
streams/Stream.h \
support/Conditions.h \
support/FileWriter.h \
support/MyMath.h \
support/Problem.h \
support/Solver.h \
support/State.h \
systemMakers/GalerkinSystemMaker.h \
systemMakers/SystemMaker.h \
systemSolvers/EulerSystemSolver.h \
systemSolvers/RungeKuttaSystemSolver.h \
systemSolvers/SystemSolver.h
DISTFILES +=