mirror of
https://github.com/libretro/libretro-super
synced 2025-01-01 09:00:08 +00:00
Add PPSSPP building to libretro-build.sh
This commit is contained in:
parent
44941d3375
commit
0cea4432f3
@ -1127,6 +1127,22 @@ build_libretro_picodrive() {
|
||||
fi
|
||||
}
|
||||
|
||||
build_libretro_ppsspp() {
|
||||
cd "${BASE_DIR}"
|
||||
if [ -d 'libretro-ppsspp' ]; then
|
||||
echo '=== Building PPSSPP ==='
|
||||
cd libretro-ppsspp/libretro
|
||||
|
||||
if [ -z "${NOCLEAN}" ]; then
|
||||
"${MAKE}" -f Makefile platform="${FORMAT_COMPILER_TARGET}" ${COMPILER} "-j${JOBS}" clean || die 'Failed to clean PPSSPP'
|
||||
fi
|
||||
"${MAKE}" -f Makefile platform="${FORMAT_COMPILER_TARGET}" ${COMPILER} "-j${JOBS}" || die 'Failed to build PPSSPP'
|
||||
cp "ppsspp_libretro${FORMAT}.${FORMAT_EXT}" "${RARCH_DIST_DIR}"
|
||||
else
|
||||
echo 'PPSSPP not fetched, skipping ...'
|
||||
fi
|
||||
}
|
||||
|
||||
build_libretro_yabause() {
|
||||
cd "${BASE_DIR}"
|
||||
if [ -d 'libretro-yabause' ]; then
|
||||
|
@ -148,4 +148,5 @@ else
|
||||
build_libretro_dinothawr
|
||||
build_libretro_3dengine
|
||||
build_libretro_vecx
|
||||
build_libretro_ppsspp
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user