From 92e3e5a52b336da592363bce7b94a803a5874270 Mon Sep 17 00:00:00 2001 From: Steven Janzou Date: Sun, 21 Jul 2024 02:08:40 -0600 Subject: [PATCH] Update to minimum MacOS version 12 per SAM #1745 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index daf9039..725a641 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ cmake_minimum_required(VERSION 3.24) option(SAM_SKIP_TOOLS "Skips the lk sandbox" OFF) if (APPLE) - set(CMAKE_OSX_DEPLOYMENT_TARGET "10.15" CACHE STRING "Minimum OS X deployment version") + set(CMAKE_OSX_DEPLOYMENT_TARGET "12" CACHE STRING "Minimum OS X deployment version") endif () if (UNIX AND NOT CMAKE_C_COMPILER)