summaryrefslogtreecommitdiffstats
path: root/mkspecs/blackberry-x86-qcc/qmake.conf
blob: 4dc3da6c07946c7817721514c06669cc61c08ac4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#
# qmake configuration for blackberry x86 systems
#

load(qt_config)

DEFINES += Q_OS_BLACKBERRY
CONFIG += blackberry
LIBS += -lbps

# Blackberry also has support for stack smashing protection in its libc
contains(QT_CONFIG, stack-protector-strong) {
    QMAKE_CFLAGS += -fstack-protector-strong
} else {
    QMAKE_CFLAGS += -fstack-protector -fstack-protector-all
}

include(../common/qcc-base-qnx-x86.conf)