From ee48f0c9b3c15dd5d15bf7849816ad404315b037 Mon Sep 17 00:00:00 2001 From: Paulchen-Panther <16664240+Paulchen-Panther@users.noreply.github.com> Date: Sat, 30 Nov 2024 18:15:50 +0100 Subject: [PATCH] Force set CMAKE_OSX_DEPLOYMENT_TARGET to 10.15 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f2ca768e..0afa12c0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -176,7 +176,7 @@ endmacro() if("${PLATFORM}" MATCHES "osx") # specify the min version of the target platform (only GitHub Actions) if(DEFINED ENV{GITHUB_WORKSPACE}) - set(CMAKE_OSX_DEPLOYMENT_TARGET "10.15") + set(CMAKE_OSX_DEPLOYMENT_TARGET 10.15 CACHE STRING "Minimum macOS version the build will be able to run on" FORCE) endif() # add specific prefix paths