-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathredust.pro
More file actions
30 lines (25 loc) · 750 Bytes
/
redust.pro
File metadata and controls
30 lines (25 loc) · 750 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
# Features (remove or comment out the following lines to disable features!)
REDUST_SUPPORT_PROTOBUF=1
# Lib settings
PROJECTNAME = redust
TEMPLATE = lib
CONFIG += console debug_and_release
CONFIG -= app_bundle
# Include redust
include(redust.pri)
# Binary installer
target.path = $$[QT_INSTALL_LIBS]
INSTALLS += target
!build_pass:message("library binary install folder: "$$target.path)
# Header installer
header.files = $$HEADERS
header.path = $$[QT_INSTALL_HEADERS]/redust
INSTALLS += header
!build_pass:message("library headers install folder: "$$header.path)
# in debug mode append a d to target binary name
CONFIG(debug, debug|release) {
TARGET = $${PROJECTNAME}"d"
}
CONFIG(release, debug|release) {
TARGET = $${PROJECTNAME}
}