mirror of
https://github.com/libretro/libretro-super
synced 2025-01-05 21:54:33 +00:00
* Add Dinothawr compilation (libretro-build-common.sh)
This commit is contained in:
parent
d61fc504c8
commit
a69c7f4b9b
@ -381,6 +381,20 @@ build_libretro_prboom()
|
||||
fi
|
||||
}
|
||||
|
||||
build_libretro_dinothawr()
|
||||
{
|
||||
cd "$BASE_DIR"
|
||||
if [ -d "libretro-dinothawr" ]; then
|
||||
echo "=== Building Dinothawr ==="
|
||||
cd libretro-dinothawr
|
||||
${MAKE} platform=${FORMAT_COMPILER_TARGET_ALT} $COMPILER -j$JOBS clean || die "Failed to clean Dinothawr"
|
||||
${MAKE} platform=${FORMAT_COMPILER_TARGET_ALT} $COMPILER -j$JOBS || die "Failed to build Dinothawr"
|
||||
cp dinothawr_libretro${FORMAT}.${FORMAT_EXT} "$RARCH_DIST_DIR"
|
||||
else
|
||||
echo "Dinothawr not fetched, skipping ..."
|
||||
fi
|
||||
}
|
||||
|
||||
build_libretro_meteor()
|
||||
{
|
||||
cd "$BASE_DIR"
|
||||
|
@ -123,4 +123,5 @@ if [ -z $BUILD_EXPERIMENTAL ]; then
|
||||
build_libretro_mupen64
|
||||
fi
|
||||
build_libretro_ffmpeg
|
||||
build_libretro_dinothawr
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user