2012-03-16 15:00:33 +00:00
|
|
|
#
|
|
|
|
# qmake common configuration for iOS
|
|
|
|
#
|
|
|
|
|
|
|
|
MAKEFILE_GENERATOR = UNIX
|
2012-09-03 13:38:31 +00:00
|
|
|
CONFIG += ios reduce_exports incremental global_init_link_order lib_version_first plugin_no_soname
|
2012-03-16 15:00:33 +00:00
|
|
|
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
|
2012-11-01 11:31:50 +00:00
|
|
|
DEFINES += DARWIN_NO_CARBON QT_NO_CORESERVICES QT_NO_PRINTER QT_NO_PRINTDIALOG
|