8defe0f4e3
Move common configuration to mac Change-Id: Ic4a6ad896ac6fd46a0914a267ba87adecc6b37e4 Reviewed-by: Jake Petroules <jake.petroules@theqtcompany.com>
25 lines
600 B
Plaintext
25 lines
600 B
Plaintext
#
|
|
# qmake configuration for macx-ios-clang
|
|
#
|
|
|
|
QMAKE_MACOSX_DEPLOYMENT_TARGET =
|
|
QMAKE_IOS_DEPLOYMENT_TARGET = 6.0
|
|
|
|
INCLUDEPATH += $$PWD/ios
|
|
DEFINES += DARWIN_NO_CARBON QT_NO_PRINTER QT_NO_PRINTDIALOG
|
|
|
|
# Universal target (iPhone and iPad)
|
|
QMAKE_IOS_TARGETED_DEVICE_FAMILY = 1,2
|
|
|
|
QMAKE_IOS_DEVICE_ARCHS = armv7 arm64
|
|
QMAKE_IOS_SIMULATOR_ARCHS = i386 x86_64
|
|
|
|
include(../common/ios.conf)
|
|
include(../common/gcc-base-mac.conf)
|
|
include(../common/clang.conf)
|
|
include(../common/clang-mac.conf)
|
|
include(../common/ios/clang.conf)
|
|
include(../common/ios/qmake.conf)
|
|
|
|
load(qt_config)
|