From dfc30eeef5eb6df9f658e62875e5cde93173e37b Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Sun, 6 Jan 2019 19:12:30 +0000 Subject: Set minimum macOS version to 10.11 To make sure that CI builds produced by Travis work on all supported versions of macOS and building Alacritty works on all supported versions, the minimum macOS version has been set in the Makefile. This sets the minimum macOS version to `10.11` as a reasonable estimation based on other applications. If the exact version chosen turns out to cause some issues, it can be changed in the future. --- Makefile | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 974a4afa..9d61dbd6 100644 --- a/Makefile +++ b/Makefile @@ -8,8 +8,6 @@ APP_DIR = $(RELEASE_DIR)/osx APP_BINARY = $(RELEASE_DIR)/$(TARGET) APP_BINARY_DIR = $(APP_DIR)/$(APP_NAME)/Contents/MacOS -export MACOSX_DEPLOYMENT_TARGET = $(shell defaults read loginwindow SystemVersionStampAsString) - DMG_NAME = Alacritty.dmg DMG_DIR = $(RELEASE_DIR)/osx @@ -24,10 +22,7 @@ help: ## Prints help for targets with comments binary: | $(TARGET) ## Build release binary with cargo $(TARGET): -ifneq ( "${MACOSX_DEPLOYMENT_TARGET}" , "") - @echo MACOSX_DEPLOYMENT_TARGET=$${MACOSX_DEPLOYMENT_TARGET} -endif - cargo build --release + MACOSX_DEPLOYMENT_TARGET="10.11" cargo build --release app: | $(APP_NAME) ## Clone Alacritty.app template and mount binary $(APP_NAME): $(TARGET) $(APP_TEMPLATE) -- cgit