mirror of
https://github.com/libretro/libretro-super
synced 2024-12-01 04:03:00 +00:00
Update Nestopia repo.
This commit is contained in:
parent
06aebcc53f
commit
8b39876982
@ -225,6 +225,18 @@ build_libretro_quicknes()
|
||||
fi
|
||||
}
|
||||
|
||||
build_libretro_nestopia()
|
||||
{
|
||||
if [ -d "libretro-nestopia" ]; then
|
||||
echo "=== Building Nestopia ==="
|
||||
cd libretro-nestopia/libretro
|
||||
make platform=win CC=$CC CXX=$CXX -j4 || die "Failed to build Nestopia"
|
||||
cp retro.dll ../libretro-143-nestopia.dll
|
||||
cd ../..
|
||||
else
|
||||
echo "QuickNES not fetched, skipping ..."
|
||||
fi
|
||||
}
|
||||
|
||||
build_libretro_bsnes
|
||||
build_libretro_mednafen
|
||||
@ -240,4 +252,5 @@ build_libretro_meteor
|
||||
build_libretro_stella
|
||||
build_libretro_desmume
|
||||
build_libretro_quicknes
|
||||
build_libretro_nestopia
|
||||
|
||||
|
@ -245,6 +245,18 @@ build_libretro_quicknes()
|
||||
fi
|
||||
}
|
||||
|
||||
build_libretro_nestopia()
|
||||
{
|
||||
if [ -d "libretro-nestopia" ]; then
|
||||
echo "=== Building Nestopia ==="
|
||||
cd libretro-nestopia/libretro
|
||||
make -j4 || die "Failed to build Nestopia"
|
||||
cp libretro.so ../libretro-nestopia.so
|
||||
cd ../..
|
||||
else
|
||||
echo "Nestopia not fetched, skipping ..."
|
||||
fi
|
||||
}
|
||||
|
||||
build_libretro_bsnes
|
||||
build_libretro_mednafen
|
||||
@ -262,4 +274,5 @@ build_libretro_prboom
|
||||
build_libretro_stella
|
||||
build_libretro_desmume
|
||||
build_libretro_quicknes
|
||||
build_libretro_nestopia
|
||||
|
||||
|
@ -93,5 +93,6 @@ fetch_project "$REPO_BASE/libretro/libretro-prboom.git" "libretro-prboom" "libre
|
||||
fetch_project "$REPO_BASE/libretro/stella-libretro.git" "libretro-stella" "libretro/Stella"
|
||||
fetch_project "$REPO_BASE/libretro/desmume-libretro.git" "libretro-desmume" "libretro/Desmume"
|
||||
fetch_project "$REPO_BASE/libretro/QuickNES_Core.git" "libretro-quicknes" "libretro/QuickNES"
|
||||
fetch_project "$REPO_BASE/libretro/nestopia.git" "libretro-nestopia" "libretro/Nestopia"
|
||||
fetch_project_mednafen "$REPO_BASE/libretro/mednafen-libretro.git" "libretro-mednafen" "libretro/Mednafen"
|
||||
|
||||
|
@ -31,6 +31,7 @@ LIBS="$LIBS libretro-mednafen/libretro-0926-mednafen-psx.dll"
|
||||
LIBS="$LIBS libretro-mednafen/libretro-0924-mednafen-pce-fast.dll"
|
||||
LIBS="$LIBS libretro-mednafen/libretro-0922-mednafen-wswan.dll"
|
||||
LIBS="$LIBS libretro-quicknes/libretro-git-quicknes.dll"
|
||||
LIBS="$LIBS libretro-nestopia/libretro-143-nestopia.dll"
|
||||
|
||||
for lib in $LIBS
|
||||
do
|
||||
|
@ -31,6 +31,7 @@ LIBS="$LIBS libretro-mednafen/libretro-mednafen-psx.so"
|
||||
LIBS="$LIBS libretro-mednafen/libretro-mednafen-pce-fast.so"
|
||||
LIBS="$LIBS libretro-mednafen/libretro-mednafen-wswan.so"
|
||||
LIBS="$LIBS libretro-quicknes/libretro-quicknes.so"
|
||||
LIBS="$LIBS libretro-nestopia/libretro-nestopia.so"
|
||||
|
||||
for lib in $LIBS
|
||||
do
|
||||
|
Loading…
Reference in New Issue
Block a user