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
430 B
Plaintext
18 lines
430 B
Plaintext
#
|
|
# qmake configuration for qnx x86-64 systems
|
|
#
|
|
|
|
DEFINES += QT_NO_CLIPBOARD
|
|
|
|
QMAKE_LFLAGS_SHLIB += -Wl,-z,relro -Wl,-z,now
|
|
|
|
include(../common/qcc-base-qnx-x86-64.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
|
|
}
|