From 4491f8b0cd53e17eb33aa72a17eaf3145e1236a7 Mon Sep 17 00:00:00 2001 From: John Fultz Date: Wed, 19 Jul 2023 10:21:18 -0500 Subject: Remove macOS deployment target for now. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This will hopefully fix the GitHub actions build. Definitely fixes my local build. This won’t stand for a deployment to users, but it works for developing. --- Settings.cmake | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Settings.cmake b/Settings.cmake index bf90b7f..840c391 100644 --- a/Settings.cmake +++ b/Settings.cmake @@ -3,4 +3,12 @@ include_guard() message("-- Including settings") set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) -set(CMAKE_OSX_DEPLOYMENT_TARGET 10.10) + +# Commented out so that automated builds can work +# but we'll need to set this and set up matching Qt libs +# for building a final app bundle +# +# Note that Qt6 uses std::filesystem which requires minimum of 10.15 +# Qt5 can be set lower (was working fine with 10.10) +# +# set(CMAKE_OSX_DEPLOYMENT_TARGET 10.15) -- cgit v1.2.3