From a2476c5c964a0ff09b6ac6ccef5ad7ee3e83e6ae Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sat, 11 Jul 2015 07:02:58 +0200 Subject: [PATCH] Pass custom list of cores to libretro-build.sh now for PS3 --- libretro-build-ps3.sh | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/libretro-build-ps3.sh b/libretro-build-ps3.sh index a0ff248a..1ee368cc 100755 --- a/libretro-build-ps3.sh +++ b/libretro-build-ps3.sh @@ -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 +