From 3f4903282ce7f0256b85e81ed0f0788a4b596359 Mon Sep 17 00:00:00 2001 From: Owen Green Date: Fri, 27 Sep 2024 12:49:37 +0100 Subject: [PATCH] CMake: Min macOS to 10.9 Belated change, now necessary (`libfmt` needs it, but should have been changed ages ago) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1cc79526..86c74a77 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -26,7 +26,7 @@ if(hasParent) endif() if(APPLE) - set(CMAKE_OSX_DEPLOYMENT_TARGET "10.8" CACHE STRING "") + set(CMAKE_OSX_DEPLOYMENT_TARGET "10.9" CACHE STRING "") #A consequence of targetting 10.8. Needs to be set globally from 10.15 onwards in order for the test program to compile successfully during configure string(APPEND CMAKE_CXX_FLAGS " -stdlib=libc++") endif()