Skip to content

Commit

Permalink
Fix errors after SDL version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
bvschaik committed Sep 9, 2024
1 parent 776f3a1 commit 6d17204
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .ci_scripts/install_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,11 @@ function install_sdl_macos {
mkdir -p ~/Library/Frameworks
echo "Installing framework:" "/Volumes/SDL2"/*.framework
cp -rp "$VOLUME"/*.framework ~/Library/Frameworks
if [ -d "$VOLUME/optional" ]
then
echo "Installing optional framework:" "/Volumes/SDL2/optional"/*.framework
cp -rp "$VOLUME"/optional/*.framework ~/Library/Frameworks
fi
hdiutil detach "$VOLUME"
}

Expand Down
3 changes: 2 additions & 1 deletion android/SDL2/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ android {
arguments 'SUPPORT_FLAC=false',
'SUPPORT_OGG=false',
'SUPPORT_MOD_MODPLUG=false',
'SUPPORT_MID_TIMIDITY=false'
'SUPPORT_MID_TIMIDITY=false',
'SUPPORT_WAVPACK=false'
}
}
}
Expand Down

0 comments on commit 6d17204

Please sign in to comment.