4933a5f892
We will want to use C++17 code in our headers soon. (including the one in the bootstrap libraries) This patch is quick and dirty, I guess it will be cleaner once we move to cmake Updated QMAKE_MACOSX_DEPLOYMENT_TARGET because 10.13 runtime does not support C++17 stdlib features Change-Id: I75ac171436945dddd1bb953a9c8d323ac20da7ac Reviewed-by: Lars Knoll <lars.knoll@qt.io>
26 lines
538 B
Plaintext
26 lines
538 B
Plaintext
#
|
|
# qmake configuration for common OS X
|
|
#
|
|
|
|
QMAKE_PLATFORM += macos osx macx
|
|
QMAKE_MAC_SDK = macosx
|
|
|
|
QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.14
|
|
QMAKE_APPLE_DEVICE_ARCHS = x86_64
|
|
|
|
# Should be 10.15, but as long as the CI builds with
|
|
# older SDKs we have to keep this.
|
|
QT_MAC_SDK_VERSION_MIN = 10.14
|
|
|
|
QT_MAC_SDK_VERSION_MAX = 10.15
|
|
|
|
device.sdk = macosx
|
|
device.target = device
|
|
device.dir_affix = $${device.sdk}
|
|
device.CONFIG = $${device.sdk}
|
|
device.deployment_identifier = $${device.sdk}
|
|
|
|
QMAKE_LIBS_VULKAN =
|
|
|
|
include(mac.conf)
|