Add QuickNES.

This commit is contained in:
Themaister 2013-01-10 14:33:48 +01:00
parent 7f49ecbba0
commit fc406bc96b
3 changed files with 17 additions and 0 deletions

View File

@ -232,6 +232,20 @@ build_libretro_desmume()
fi
}
build_libretro_quicknes()
{
if [ -d "libretro-quicknes" ]; then
echo "=== Building QuickNES ==="
cd libretro-quicknes/libretro
make -f Makefile -j4 || die "Failed to build QuickNES"
cp libretro.so ../libretro-quicknes.so
cd ../..
else
echo "QuickNES not fetched, skipping ..."
fi
}
build_libretro_bsnes
build_libretro_mednafen
build_libretro_s9x
@ -247,4 +261,5 @@ build_libretro_nx
build_libretro_prboom
build_libretro_stella
build_libretro_desmume
build_libretro_quicknes

View File

@ -92,5 +92,6 @@ fetch_project "$REPO_BASE/libretro/nxengine-libretro.git" "libretro-nx" "libretr
fetch_project "$REPO_BASE/libretro/libretro-prboom.git" "libretro-prboom" "libretro/PRBoom"
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_mednafen "$REPO_BASE/libretro/mednafen-libretro.git" "libretro-mednafen" "libretro/Mednafen"

View File

@ -30,6 +30,7 @@ LIBS="$LIBS libretro-desmume/libretro-desmume.so"
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"
for lib in $LIBS
do