From a2ad333f436aa1fb50c9e1cc154266da7b3e0a48 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Fri, 24 Jan 2020 09:23:49 -0800 Subject: [PATCH] CI: target older macos versions I'm just randomly picking 10.9 to see if it even builds... if that doesn't work out I'll probably just pick 10.14 refs: https://github.com/wez/wezterm/issues/128 --- build.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/build.rs b/build.rs index 595fc8cf4..7449dbe5f 100644 --- a/build.rs +++ b/build.rs @@ -16,6 +16,7 @@ fn main() { } } println!("cargo:rustc-env=WEZTERM_CI_TAG={}", ci_tag); + println!("cargo:rustc-env=MACOSX_DEPLOYMENT_TARGET=10.9"); #[cfg(windows)] embed_resource::compile("assets/windows/resource.rc");