From f66ce98a74856d7de38d2379425a23664e217af6 Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Wed, 12 Feb 2020 22:19:50 -0800 Subject: [PATCH] Set the minimum Mac deployment version Use 10.9, the first with libc++. --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index e0fa383ab..7d220a032 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,6 +7,8 @@ IF(POLICY CMP0067) CMAKE_POLICY(SET CMP0067 NEW) ENDIF() +set(CMAKE_OSX_DEPLOYMENT_TARGET "10.9" CACHE STRING "Minimum OS X deployment version") + PROJECT(fish) # We are C++11.