-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprogram.pro
More file actions
47 lines (35 loc) · 915 Bytes
/
program.pro
File metadata and controls
47 lines (35 loc) · 915 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
QT += core
QT -= gui
TARGET = program
CONFIG += console
CONFIG += DEBUG
CONFIG -= app_bundle
TEMPLATE = app
SOURCES += main.cpp \
geometry_utils.cpp \
types.cpp \
time_utils.cpp \
constants.cpp \
graphics_utils.cpp \
file_utils.cpp
HEADERS += \
geometry_utils.h \
types.h \
time_utils.h \
constants.h \
data_utils.h \
graphics_utils.h \
file_utils.h \
fortran_modules.h
LIBS += fortran_modules/Kul.o -Wall -lGL -lGLU `sdl-config --cflags --libs` -lrt -lassimp -lgfortran -lpthread
QMAKE_CXXFLAGS += -std=c++0x -Wno-write-strings
# -Werror=conversion
OTHER_FILES += \
fortran_modules/gf \
fortran_modules/t1Lapl3D.f90 \
fortran_modules/ReadFile.f90 \
fortran_modules/Kul.f90 \
fortran_modules/t2Lapl3D.f90 \
fortran_modules/t0Lapl3D.f90 \
fortran_modules/Symmetry.f90 \
fortran_modules/Lapl_3D.f90