-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathburnback-qt.pro
52 lines (45 loc) · 1.06 KB
/
burnback-qt.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
# QT += qml
QT += quick
QT += widgets
CONFIG += c++17
CONFIG(sanitizer) {
message("Sanitizer enabled")
CONFIG += sanitizer sanitize_address sanitize_undefined
}
CONFIG(debug, debug|release) {
QMAKE_LINK=clang++
QMAKE_CXX = clang++
DESTDIR = target/debug
DEFINES += DEBUG
} else {
DESTDIR = target/release
DEFINES += RELEASE
}
INCLUDEPATH += include
OBJECTS_DIR = $$DESTDIR/objects
MOC_DIR = $$DESTDIR/moc
RCC_DIR = $$DESTDIR/qrc
UI_DIR = $$DESTDIR/ui
DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000
HEADERS += \
src/headers/globals.h \
src/headers/operations.h \
src/headers/connectivityMatrix.h \
src/headers/iosystem.h \
src/headers/interface.h \
src/headers/iterations.h \
src/headers/plotData.h
SOURCES += \
src/main.cpp \
src/operations.cpp \
src/connectivityMatrix.cpp \
src/iosystem.cpp \
src/interface.cpp \
src/iterations.cpp \
src/plotData.cpp
RESOURCES += \
src-qml/qml.qrc
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target