Update Nestopia repo.

This commit is contained in:
Themaister 2013-01-16 09:08:42 +01:00
parent 06aebcc53f
commit 8b39876982
5 changed files with 29 additions and 0 deletions

View file

@ -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

View file

@ -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

View file

@ -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"

View file

@ -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

View file

@ -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