60985aa42b
Use the new qtConfig macro in all pro/pri files. This required adding some feature entries, and adding {private,public}Feature to every referenced already existing entry. Change-Id: I164214dad1154df6ad84e86d99ed14994ef97cf4 Reviewed-by: Lars Knoll <lars.knoll@qt.io> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
18 lines
454 B
Plaintext
18 lines
454 B
Plaintext
#
|
|
# qmake configuration for qnx aarch64le systems
|
|
#
|
|
|
|
DEFINES += QT_NO_CLIPBOARD _FORTIFY_SOURCE=2
|
|
|
|
QMAKE_LFLAGS_SHLIB += -Wl,-z,relro -Wl,-z,now
|
|
|
|
include(../common/qcc-base-qnx-aarch64le.conf)
|
|
|
|
qtConfig(stack-protector-strong) {
|
|
QMAKE_CFLAGS += -fstack-protector-strong
|
|
QMAKE_CXXFLAGS += -fstack-protector-strong
|
|
} else {
|
|
QMAKE_CFLAGS += -fstack-protector -fstack-protector-all
|
|
QMAKE_CXXFLAGS += -fstack-protector -fstack-protector-all
|
|
}
|