Target macOS minimum version 10.9

By targeting macOS 10.9 minimum, we are able to build again using Xcode
10. This avoids the use of a build configuration that was deprecated
since Xcode 8 and obsoleted in Xcode 10.

See https://developer.apple.com/documentation/xcode_release_notes/xcode_10_release_notes#3035632.

Fixes #1071 and #1072.
This commit is contained in:
Emily St 2018-09-20 04:50:28 +00:00 committed by Joe Ferris
parent 41c4306267
commit aecaa45e2f
2 changed files with 6 additions and 1 deletions

View File

@ -203,4 +203,6 @@ lessThan(QT_MAJOR_VERSION, 5) {
CONFIG += console precompile_header
CONFIG -= app_bundle
PRECOMPILED_HEADER = stable.h
macx {
QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.9
}

View File

@ -3,3 +3,6 @@ OBJECTS += ../src/build/IgnoreDebugOutput.o
QT += testlib
CONFIG += testcase console
CONFIG -= app_bundle
macx {
QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.9
}