-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathkoviz.pri
More file actions
34 lines (28 loc) · 791 Bytes
/
koviz.pri
File metadata and controls
34 lines (28 loc) · 791 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
# =============================================================================
#
# koviz - Fast plotting for Trick simulation data
#
# =============================================================================
PROJECT_NAME = koviz
PROJECT_VERSION = 1.0.0
INSTALL_PREFIX = /usr/local
isEmpty(PREFIX) {
message("Current install path is '$${INSTALL_PREFIX}'")
message("To override the install path run: 'qmake PREFIX=/custom/path'")
PREFIX = $$INSTALL_PREFIX
} else {
INSTALL_PREFIX = $${PREFIX}
}
INSTALL_LIBDIR = $${PREFIX}/lib
greaterThan(QT_MAJOR_VERSION, 4) {
QT += widgets
QT += printsupport
}
exists( /usr/include/mpv/client.h ) {
DEFINES += HAS_MPV
LIBS += -lmpv
}
macx {
QMAKE_CXXFLAGS += -Wno-implicit-function-declaration
}
#CONFIG += debug