3bc4afc223
We treat iOS as a variant of Mac OS, so for iOS both Q_OS_MAC and Q_OS_IOS will be defined. This matches what Apple assumes in the header file TargetConditionals.h Change-Id: I55cc851401b748297478e4c32e84e0f6e1fdfc28 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
20 lines
541 B
Plaintext
20 lines
541 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 QT_NO_CORESERVICES QT_NO_PRINTER QT_NO_PRINTDIALOG
|