beaa792e20
This reduces unnecessary OS conditions in qmake since these platforms are mutually exclusive, and also opens up their potential for use on future devices (like carOS(?), which is device idiom '5'). This is also more similar to what Xcode does, as the TARGETED_DEVICE_FAMILY variable is not platform specific. Change-Id: I29d209cd8e0779f492bda829008264773e13c75c Reviewed-by: Lars Knoll <lars.knoll@qt.io>
21 lines
460 B
Plaintext
21 lines
460 B
Plaintext
#
|
|
# qmake configuration for macx-ios-clang
|
|
#
|
|
|
|
QMAKE_IOS_DEPLOYMENT_TARGET = 7.0
|
|
|
|
# Universal target (iPhone and iPad)
|
|
QMAKE_APPLE_TARGETED_DEVICE_FAMILY = 1,2
|
|
|
|
QMAKE_APPLE_DEVICE_ARCHS = armv7 arm64
|
|
QMAKE_APPLE_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)
|