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>
20 lines
550 B
Plaintext
20 lines
550 B
Plaintext
#
|
|
# qmake common configuration for iOS
|
|
#
|
|
|
|
MAKEFILE_GENERATOR = UNIX
|
|
CONFIG += ios reduce_exports incremental global_init_link_order lib_version_first plugin_no_soname
|
|
QMAKE_INCREMENTAL_STYLE = sublib
|
|
|
|
# Qt can't build iOS app bundle :(
|
|
CONFIG -= app_bundle
|
|
|
|
# Not deploying to Mac OSX
|
|
QMAKE_MACOSX_DEPLOYMENT_TARGET =
|
|
|
|
# Add iOS common folder to include path
|
|
INCLUDEPATH += $$PWD/ios
|
|
|
|
# iOS defines
|
|
DEFINES += DARWIN_NO_CARBON Q_OS_IOS QT_NO_CORESERVICES QT_NO_PRINTER QT_NO_PRINTDIALOG
|