800dea88a6ad2d8b615c1cc486da5942f6e391c2 Upgrade Qt depends to 5.9.6 (Sebastian Kung) 70afa65b175080b617e168be5396fbc180ae8bc5 Fix depends Qt5.9.4 mac build (Ken Lee) 28482efefb15dc2c273a52b96d1aceb995db4968 Ugrade Qt depends to Qt5.9.4 (Sebastian Kung) Pull request description: With the introduction of Ubuntu 18.04 (Bionic Beaver) modern versions of gcc and mingw that allow cross compilation of versions of Qt greater than 5.8 are now readily available. This pull requests upgrades the Qt depends recipe from Qt 5.7.1 to Qt 5.9.6. Qt 5.9.x is the current LTS version and should be supported by Qt until 2020. Tree-SHA512: 439295d594ff8954a5ba5e348a0452713721c805485be2edcb9f8603ee59e96db5a61e1c684bdff36bbfd643a79cd35c289817257af88f489d2890e7843460bf
27 lines
1.1 KiB
Plaintext
27 lines
1.1 KiB
Plaintext
MAKEFILE_GENERATOR = UNIX
|
|
CONFIG += app_bundle incremental global_init_link_order lib_version_first plugin_no_soname absolute_library_soname
|
|
QMAKE_INCREMENTAL_STYLE = sublib
|
|
include(../common/macx.conf)
|
|
include(../common/gcc-base-mac.conf)
|
|
include(../common/clang.conf)
|
|
include(../common/clang-mac.conf)
|
|
QMAKE_MAC_SDK_PATH=$${MAC_SDK_PATH}
|
|
QMAKE_XCODE_VERSION=4.3
|
|
QMAKE_XCODE_DEVELOPER_PATH=/Developer
|
|
QMAKE_MACOSX_DEPLOYMENT_TARGET = $${MAC_MIN_VERSION}
|
|
QMAKE_MAC_SDK=macosx
|
|
QMAKE_MAC_SDK.macosx.Path = $${MAC_SDK_PATH}
|
|
QMAKE_MAC_SDK.macosx.platform_name = macosx
|
|
QMAKE_MAC_SDK.macosx.SDKVersion = $${MAC_SDK_VERSION}
|
|
QMAKE_MAC_SDK.macosx.PlatformPath = /phony
|
|
QMAKE_APPLE_DEVICE_ARCHS=x86_64
|
|
!host_build: QMAKE_CFLAGS += -target $${MAC_TARGET}
|
|
!host_build: QMAKE_OBJECTIVE_CFLAGS += $$QMAKE_CFLAGS
|
|
!host_build: QMAKE_CXXFLAGS += $$QMAKE_CFLAGS
|
|
!host_build: QMAKE_LFLAGS += -target $${MAC_TARGET} -mlinker-version=$${MAC_LD64_VERSION}
|
|
QMAKE_AR = $${CROSS_COMPILE}ar cq
|
|
QMAKE_RANLIB=$${CROSS_COMPILE}ranlib
|
|
QMAKE_LIBTOOL=$${CROSS_COMPILE}libtool
|
|
QMAKE_INSTALL_NAME_TOOL=$${CROSS_COMPILE}install_name_tool
|
|
load(qt_config)
|