forked from Kaffeine/telegram-qt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.pri
42 lines (34 loc) · 825 Bytes
/
options.pri
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
#options += static-lib
options += beta-build
options += server
equals(DEVELOPER_BUILD, "true") {
message("Developer build")
options += developer-build
}
equals(DEVELOPER_BUILD, "true") {
message("Developer build")
options += developer-build
}
# Installation directories
isEmpty(INSTALL_PREFIX) {
unix {
INSTALL_PREFIX = /usr/local
} else {
INSTALL_PREFIX = $$[QT_INSTALL_PREFIX]
}
}
isEmpty(INSTALL_LIB_DIR) {
INSTALL_LIB_DIR = $$INSTALL_PREFIX/lib
}
isEmpty(INSTALL_INCLUDE_DIR) {
INSTALL_INCLUDE_DIR = $$INSTALL_PREFIX/include
}
isEmpty(INSTALL_DATA_DIR) {
INSTALL_DATA_DIR = $$INSTALL_PREFIX/share
}
isEmpty(INSTALL_DOC_DIR) {
INSTALL_DOC_DIR = $$INSTALL_DATA_DIR/doc
}
isEmpty(INSTALL_QML_IMPORT_DIR) {
INSTALL_QML_IMPORT_DIR = $$[QT_INSTALL_QML]
}