-
Notifications
You must be signed in to change notification settings - Fork 0
/
alcongrator.pro
53 lines (40 loc) · 1.19 KB
/
alcongrator.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
QT += core gui multimedia opengl widgets printsupport
CONFIG += c++17
RC_ICONS = res/aci.ico
unix: QMAKE_CXXFLAGS += -Wno-deprecated-copy -Wno-implicit-fallthrough
unix:!macx: LIBS += -L$$PWD/lib/linux -lGL -lglut -lopenblas -lgfortran -lquadmath -lgomp
win32{
LIBS += -lopengl32
msvc:LIBS += -L$$PWD/lib/win-msvc -llibopenblas
gcc:LIBS += -L$$PWD/lib/win-gcc -lopenblas -lgfortran -lquadmath
}
DEFINES += ARMA_DONT_USE_ATLAS ARMA_USE_SUPERLU
DEFINES += QCUSTOMPLOT_USE_OPENGL
INCLUDEPATH += include \
include/QCustomPlot \
src
SOURCES += \
src/CustomFilter.cpp \
include/QCustomPlot/qcustomplot.cpp \
src/CubicSpline.cpp \
src/IntegrationScheme.cpp \
src/alcongrator.cpp \
src/MainWindow.cpp \
src/resampling.cpp
HEADERS += \
src/CustomFilter.h \
include/QCustomPlot/qcustomplot.h \
src/CubicSpline.h \
src/IntegrationScheme.h \
src/MainWindow.h \
src/resampling.h
FORMS += \
form/CustomFilter.ui \
form/MainWindow.ui
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
RESOURCES += \
res/res.qrc
include(superlu.pro)