mirror of
https://github.com/libretro/libretro-super
synced 2025-04-16 05:42:35 +00:00
Add VecX building to libretro-build.sh
This commit is contained in:
parent
84e5298946
commit
41efa1c67f
@ -467,6 +467,22 @@ build_libretro_s9x_next() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
build_libretro_vecx() {
|
||||||
|
cd "${BASE_DIR}"
|
||||||
|
if [ -d 'libretro-vecx' ]; then
|
||||||
|
echo '=== Building VecX ==='
|
||||||
|
cd libretro-vecx/
|
||||||
|
|
||||||
|
if [ -z "${NOCLEAN}" ]; then
|
||||||
|
"${MAKE}" -f Makefile.libretro platform="${FORMAT_COMPILER_TARGET_ALT}" ${COMPILER} "-j${JOBS}" clean || die 'Failed to build VecX'
|
||||||
|
fi
|
||||||
|
"${MAKE}" -f Makefile.libretro platform="${FORMAT_COMPILER_TARGET_ALT}" ${COMPILER} "-j${JOBS}" || die 'Failed to build VecX'
|
||||||
|
cp "vecx_libretro${FORMAT}.${FORMAT_EXT}" "${RARCH_DIST_DIR}"
|
||||||
|
else
|
||||||
|
echo 'VecX not fetched, skipping ...'
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
build_libretro_genplus() {
|
build_libretro_genplus() {
|
||||||
cd "${BASE_DIR}"
|
cd "${BASE_DIR}"
|
||||||
if [ -d 'libretro-genplus' ]; then
|
if [ -d 'libretro-genplus' ]; then
|
||||||
|
@ -147,4 +147,5 @@ else
|
|||||||
build_libretro_ffmpeg
|
build_libretro_ffmpeg
|
||||||
build_libretro_dinothawr
|
build_libretro_dinothawr
|
||||||
build_libretro_3dengine
|
build_libretro_3dengine
|
||||||
|
build_libretro_vecx
|
||||||
fi
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user