forked from classmodel/modelgui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmlmodel_main.pro
More file actions
42 lines (38 loc) · 869 Bytes
/
mlmodel_main.pro
File metadata and controls
42 lines (38 loc) · 869 Bytes
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
TARGET = CLASS
TEMPLATE = app
SOURCES += main.cpp \
epmodel.cpp \
mainwindow.cpp \
model.cpp \
modelrun.cpp \
plotwindow.cpp \
subplot.cpp \
modeloutput.cpp \
switches.cpp \
defaultinput.cpp \
landsoil.cpp \
modelchem.cpp \
modelinput.cpp
HEADERS += mainwindow.h \
epmodel.h \
modeloutput.h \
modelinput.h \
model.h \
modelrun.h \
plotwindow.h \
subplot.h \
landsoil.h \
modelchemtypes.h \
modelchem.h
FORMS += mainwindow.ui \
plotwindow.ui \
subplot.ui
greaterThan(QT_MAJOR_VERSION, 4)
{
QT += widgets
QT += printsupport
}
#For adding git hash to about window:
REVISION = $$system(git --git-dir $$PWD/.git --work-tree $$PWD describe --tags)
#REVISION = $$system(git describe --tags)
DEFINES += GITHASH=\\\"$$REVISION\\\"