From be0327090b66a0948f642430a1fc7e843cae20bd Mon Sep 17 00:00:00 2001 From: Colin Lee Date: Wed, 13 Aug 2025 12:34:00 -0500 Subject: [PATCH] Fix Mac Catalyst support --- prepare_release.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/prepare_release.sh b/prepare_release.sh index c01fee547b..9fde654a46 100755 --- a/prepare_release.sh +++ b/prepare_release.sh @@ -273,6 +273,7 @@ build_xcframework() { build_archive "iOS" "$archives_path" build_archive "iOS Simulator" "$archives_path" build_archive "macOS" "$archives_path" + build_archive "macOS,variant=Mac Catalyst" "$archives_path" printf '%s' "Creating XCFramework ... " pushd "$workdir" >/dev/null 2>&1 @@ -280,6 +281,7 @@ build_xcframework() { -archive "${archives_dir}/GRDB-iOS.xcarchive" -framework GRDB.framework \ -archive "${archives_dir}/GRDB-iOS Simulator.xcarchive" -framework GRDB.framework \ -archive "${archives_dir}/GRDB-macOS.xcarchive" -framework GRDB.framework \ + -archive "${archives_dir}/GRDB-macOS,variant=Mac Catalyst.xcarchive" -framework GRDB.framework \ -output "${xcframework}" >/dev/null 2>&1 popd >/dev/null 2>&1 echo "✅"