fba1acd3d7
fix windows test run unit test round 2 attempting to fix ccache use on darwin made ccache optional, no longer pulls clang on darwin build fixing darwin build from Dockerfile fixed missing nproc on OSX updated readme to include regtest example, build examples fix QT unit tests made -j get passed down, added build.sh
26 lines
1.1 KiB
Text
26 lines
1.1 KiB
Text
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)
|