Update SNC PS3 build script

This commit is contained in:
twinaphex 2015-07-11 07:08:17 +02:00
parent a2476c5c96
commit bb9fdd2be2
2 changed files with 13 additions and 9 deletions

View File

@ -19,9 +19,7 @@ fi
if [[ -z "$1" ]]; then if [[ -z "$1" ]]; then
WANT_CORES=" \ WANT_CORES=" \
fb_alpha \ fb_alpha \
snes9x_next \
fceumm \ fceumm \
gambatte \
genesis_plus_gx \ genesis_plus_gx \
handy \ handy \
mame078 \ mame078 \
@ -35,15 +33,11 @@ WANT_CORES=" \
mednafen_vb \ mednafen_vb \
nestopia \ nestopia \
nxengine \ nxengine \
prboom \
quicknes \ quicknes \
snes9x_next \
stella \ stella \
tyrquake \ tyrquake"
vba_next"
else else
WANT_CORES="$@" WANT_CORES="$@"
fi fi
platform=ps3 ${BASE_DIR}/libretro-build.sh $WANT_CORES platform=ps3 ${BASE_DIR}/libretro-build.sh ${WANT_CORES}

View File

@ -16,4 +16,14 @@ fi
# The SNC PS3 build rules have all been moved to libretro-build.sh # The SNC PS3 build rules have all been moved to libretro-build.sh
platform=sncps3 ${BASE_DIR}/libretro-build.sh $@ if [[ -z "$1" ]]; then
WANT_CORES=" \
snes9x_next \
gambatte \
prboom \
vba_next"
else
WANT_CORES="$@"
fi
platform=sncps3 ${BASE_DIR}/libretro-build.sh ${WANT_CORES}