SFML#541 Use openal-soft 1.16 as default OpenAL framework on OS X instead of the system's one

This commit is contained in:
Ceylo 2015-03-14 12:15:41 +01:00 committed by Lukas Dürrenberger
parent ae53cfd0d9
commit ce16554763
7 changed files with 29 additions and 3 deletions

View file

@ -228,14 +228,13 @@ require () # $1 is a SFML module like 'system' or 'audio'
# copy extra dependencies
if [ "$1" = "audio" ]
then
# copy "FLAC" "ogg" "vorbis" "vorbisenc" "vorbisfile" frameworks too
for f in "FLAC" "ogg" "vorbis" "vorbisenc" "vorbisfile"
# copy "FLAC" "ogg" "vorbis" "vorbisenc" "vorbisfile" "OpenAL" frameworks too
for f in "FLAC" "ogg" "vorbis" "vorbisenc" "vorbisfile" "OpenAL"
do
copy "$CMAKE_INSTALL_FRAMEWORK_PREFIX/$f.framework" "$dest/$f.framework"
done
elif [ "$1" = "graphics" ]
then
# copy freetype framework too
copy "$CMAKE_INSTALL_FRAMEWORK_PREFIX/freetype.framework" "$dest/freetype.framework"
fi
fi