From 21e2001f9d03d3315d0ae50b9c974e7b4fca1151 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Tue, 19 Dec 2017 16:53:26 -0800 Subject: [PATCH] Default OSX SDK to 10.11 instead of 10.9. --- scripts/toolchain.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/toolchain.lua b/scripts/toolchain.lua index ede2e9c..ff3b731 100644 --- a/scripts/toolchain.lua +++ b/scripts/toolchain.lua @@ -122,7 +122,7 @@ function toolchain(_buildDir, _libDir) newoption { trigger = "with-macos", value = "#", - description = "Set macOS target version (default 10.9).", + description = "Set macOS target version (default 10.11).", } newoption { @@ -471,7 +471,7 @@ function toolchain(_buildDir, _libDir) end if "osx" == _OPTIONS["xcode"] then - action.xcode.macOSTargetPlatformVersion = str_or(macosPlatform, "10.9") + action.xcode.macOSTargetPlatformVersion = str_or(macosPlatform, "10.11") premake.xcode.toolset = "macosx" location (path.join(_buildDir, "projects", _ACTION .. "-osx"))