From c16506d07cdac1d5ede912a159bfe93809ada36e Mon Sep 17 00:00:00 2001 From: Nikolay Kasyanov Date: Mon, 31 Oct 2016 17:09:29 +0100 Subject: [PATCH] [OS X, CI] Use Xcode 8/macOS 10.12 SDK --- .travis.yml | 2 +- CI/before_script.osx.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index c3f1cdfb69..892ca2ce11 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ os: - linux - osx -osx_image: xcode8.2 +osx_image: xcode8 language: cpp sudo: required dist: trusty diff --git a/CI/before_script.osx.sh b/CI/before_script.osx.sh index e5ec8983be..08fbe76d6d 100755 --- a/CI/before_script.osx.sh +++ b/CI/before_script.osx.sh @@ -10,9 +10,9 @@ cd build cmake \ -D CMAKE_PREFIX_PATH="$DEPENDENCIES_ROOT;$QT_PATH" \ --D CMAKE_OSX_DEPLOYMENT_TARGET="10.8" \ +-D CMAKE_OSX_DEPLOYMENT_TARGET="10.9" \ -D CMAKE_OSX_SYSROOT="macosx10.12" \ --D CMAKE_BUILD_TYPE=Release \ +-D CMAKE_BUILD_TYPE=Debug \ -D OPENMW_OSX_DEPLOYMENT=TRUE \ -D DESIRED_QT_VERSION=5 \ -D BUILD_ESMTOOL=FALSE \