xcframeworkbuild.sh: bump MACOSX_CATALYST_MIN_VERSION

14.0 (-target x86_64-apple-ios14.0-macabi) is supported by default in
Xcode 14.0.1.

Change-Id: I05bc318fe321758c68c7be2e339d77512dd81684
This commit is contained in:
James Zern 2022-12-15 15:14:44 -08:00
parent 1d58575b18
commit 6eb0189b24

View File

@ -15,7 +15,7 @@ set -e
# Set these variables based on the desired minimum deployment target.
readonly IOS_MIN_VERSION=6.0
readonly MACOSX_MIN_VERSION=10.15
readonly MACOSX_CATALYST_MIN_VERSION=13.0
readonly MACOSX_CATALYST_MIN_VERSION=14.0
# Extract Xcode version.
readonly XCODE=$(xcodebuild -version | grep Xcode | cut -d " " -f2)