summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Fultz <jfultz@wolfram.com>2023-07-19 10:21:18 -0500
committerJohn Fultz <jfultz@wolfram.com>2023-07-19 10:21:18 -0500
commit4491f8b0cd53e17eb33aa72a17eaf3145e1236a7 (patch)
tree4848982d1aa29cda9cdc433daebc227dc674c1bf
parent53f394839396edd537785fc40db3090839dd7c04 (diff)
Remove macOS deployment target for now.
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.
-rw-r--r--Settings.cmake10
1 files changed, 9 insertions, 1 deletions
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)