Bump macOS minimum deployment target to 11 for 3rd party dependencies

3rd party dependencies should be built using the same minimum deployment
target as Qt uses for compatibility.

Change-Id: I2edb2c19b90757898f6dcb76ad60602ae2249ebc
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
This commit is contained in:
Alexey Edelev
2022-11-25 12:47:53 +01:00
parent 6652583be2
commit c32a843766
3 changed files with 4 additions and 4 deletions

View File

@@ -86,13 +86,13 @@ if [ "$os" == "linux" ]; then
elif [ "$os" == "macos" ]; then
brew install yasm
export MACOSX_DEPLOYMENT_TARGET=10.15
export MACOSX_DEPLOYMENT_TARGET=11
build_ffmpeg
sudo mv "$ffmpeg_source_dir/build/installed/usr/local/$ffmpeg_name" "/usr/local"
elif [ "$os" == "macos-universal" ]; then
brew install yasm
export MACOSX_DEPLOYMENT_TARGET=10.15
export MACOSX_DEPLOYMENT_TARGET=11
build_ffmpeg "arm64"
build_ffmpeg "x86_64"