6a3a234742
"CONFIG += qt warn_on release link_prl" is in every single spec (though for link_prl there is one genuine exception and two apparent omissions). Change-Id: I72e1e315586af828eefa3b0b70998ab892ec3c1a Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
24 lines
709 B
Plaintext
24 lines
709 B
Plaintext
#
|
|
# qmake configuration for building with arm-linux-gnueabi-g++
|
|
#
|
|
|
|
MAKEFILE_GENERATOR = UNIX
|
|
CONFIG += incremental gdb_dwarf_index
|
|
QMAKE_INCREMENTAL_STYLE = sublib
|
|
|
|
include(../common/linux.conf)
|
|
include(../common/gcc-base-unix.conf)
|
|
include(../common/g++-unix.conf)
|
|
|
|
# modifications to g++.conf
|
|
QMAKE_CC = arm-linux-gnueabi-gcc
|
|
QMAKE_CXX = arm-linux-gnueabi-g++
|
|
QMAKE_LINK = arm-linux-gnueabi-g++
|
|
QMAKE_LINK_SHLIB = arm-linux-gnueabi-g++
|
|
|
|
# modifications to linux.conf
|
|
QMAKE_AR = arm-linux-gnueabi-ar cqs
|
|
QMAKE_OBJCOPY = arm-linux-gnueabi-objcopy
|
|
QMAKE_STRIP = arm-linux-gnueabi-strip
|
|
load(qt_config)
|