From ece1cfd6db9fa630bc591ca2b43f1b31764ab610 Mon Sep 17 00:00:00 2001 From: clemahieu Date: Wed, 6 Mar 2024 17:40:18 +0000 Subject: [PATCH] Update minimum OSX deployment target to 13.3 which is required by the OSX 14.4 SDK. (#4464) Fixes error: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/include/c++/v1/__format/formatter_floating_point.h:66:32: error: 'to_chars' is unavailable: introduced in macOS 13.3 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0123485c..c411cee1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ endif() # OSX compatibility needs to be set before project is declared set(CMAKE_OSX_DEPLOYMENT_TARGET - 12 + 13.3 CACHE STRING "") project(nano-node)