Pass custom list of cores to libretro-build.sh now for PS3

This commit is contained in:
twinaphex 2015-07-11 07:02:58 +02:00
parent cc8be4c34e
commit a2476c5c96

View File

@ -16,4 +16,34 @@ fi
# The PS3 build rules have all been moved to libretro-build.sh
platform=ps3 ${BASE_DIR}/libretro-build.sh $@
if [[ -z "$1" ]]; then
WANT_CORES=" \
fb_alpha \
snes9x_next \
fceumm \
gambatte \
genesis_plus_gx \
handy \
mame078 \
mednafen_gba \
mednafen_lynx \
mednafen_ngp \
mednafen_pce_fast \
mednafen_pcfx \
mednafen_psx \
mednafen_supergrafx \
mednafen_vb \
nestopia \
nxengine \
prboom \
quicknes \
snes9x_next \
stella \
tyrquake \
vba_next"
else
WANT_CORES="$@"
fi
platform=ps3 ${BASE_DIR}/libretro-build.sh $WANT_CORES