-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtfs.pro
More file actions
34 lines (28 loc) · 1019 Bytes
/
tfs.pro
File metadata and controls
34 lines (28 loc) · 1019 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
QT += core gui widgets
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = tfs
TEMPLATE = app
QMAKE_CXXFLAGS += -std=c++11
DESTDIR = bin
OBJECTS_DIR = src/interface/build
MOC_DIR = src/interface/build
RESOURCES = src/interface/resources.qrc
RCC_DIR = src/interface/build
SOURCES += src/interface/main.cpp \
src/interface/kernel_configurator.cpp \
src/interface/fluid_definitions.cpp \
src/interface/main_window.cpp \
src/interface/fluid_dialog.cpp \
src/interface/grid.cpp \
src/interface/start_dialog.cpp \
src/interface/CPlot.cpp \
src/interface/CGnuplot.cpp
HEADERS += src/interface/kernel_configurator.h \
src/interface/main_window.h \
src/interface/fluid_dialog.h \
src/interface/fluid_definitions.h \
src/interface/grid.h \
src/interface/start_dialog.h \
src/interface/kernel_definitions.h \
src/interface/CPlot.h \
src/interface/CGnuplot.h