(MSVC 2010) Add build_libretro_s9x
This commit is contained in:
parent
0f1627a7c0
commit
0695cb0e6a
|
@ -36,6 +36,20 @@ build_libretro_mednafen()
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
build_libretro_s9x()
|
||||||
|
{
|
||||||
|
cd $BASE_DIR
|
||||||
|
if [ -d "libretro-s9x" ]; then
|
||||||
|
echo "=== Building SNES9x ==="
|
||||||
|
cd libretro-s9x/
|
||||||
|
cd libretro/msvc
|
||||||
|
cmd.exe /k $MSVC_NAME.bat
|
||||||
|
cp $MSVC_NAME/$RELEASE_LTCG/${MSVC_NAME}.${FORMAT_EXT} "$RARCH_DIST_DIR"/snes9x_libretro$FORMAT.$FORMAT_EXT
|
||||||
|
else
|
||||||
|
echo "SNES9x not fetched, skipping ..."
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
build_libretro_s9x_next()
|
build_libretro_s9x_next()
|
||||||
{
|
{
|
||||||
cd $BASE_DIR
|
cd $BASE_DIR
|
||||||
|
|
|
@ -21,6 +21,7 @@ if [ $1 ]; then
|
||||||
$1
|
$1
|
||||||
else
|
else
|
||||||
#build_libretro_mednafen
|
#build_libretro_mednafen
|
||||||
|
build_libretro_s9x
|
||||||
build_libretro_s9x_next
|
build_libretro_s9x_next
|
||||||
build_libretro_genplus
|
build_libretro_genplus
|
||||||
#build_libretro_fba
|
#build_libretro_fba
|
||||||
|
|
Loading…
Reference in New Issue