Build in NX.

This commit is contained in:
Themaister 2012-04-22 20:45:51 +02:00
parent a0c7f60fa2
commit 3862089120
3 changed files with 16 additions and 1 deletions

View File

@ -149,12 +149,24 @@ build_libretro_meteor()
cd libretro-meteor/libretro
make -j4 || die "Failed to build Meteor"
cp libretro.so ../libretro-meteor.so
cd ../
cd ../..
else
echo "Meteor not fetched, skipping ..."
fi
}
build_libretro_nx()
{
if [ -d "libretro-nx" ]; then
echo "=== Building NXEngine ==="
cd libretro-nx
make -j4 || die "Failed to build NXEngine"
cp libretro.so libretro-nx.so
cd ../
else
echo "NXEngine not fetched, skipping ..."
fi
}
build_libretro_bsnes
build_libretro_s9x
@ -166,4 +178,5 @@ build_libretro_bnes
build_libretro_fceu
build_libretro_gambatte
build_libretro_meteor
build_libretro_nx

View File

@ -61,4 +61,5 @@ fetch_project "$REPO_BASE/Themaister/bnes-libretro.git" "libretro-bnes" "libretr
fetch_project "$REPO_BASE/twinaphex/fceu-next.git" "libretro-fceu" "libretro/FCEU"
fetch_project "$REPO_BASE/Themaister/gambatte-libretro.git" "libretro-gambatte" "libretro/Gambatte"
fetch_project "$REPO_BASE/Themaister/meteor-libretro.git" "libretro-meteor" "libretro/Meteor"
fetch_project "$REPO_BASE/twinaphex/nxengine-libretro.git" "libretro-nx" "libretro/NX"

View File

@ -23,6 +23,7 @@ LIBS="$LIBS libretro-fceu/libretro-fceu.so"
LIBS="$LIBS libretro-bnes/libretro-bnes.so"
LIBS="$LIBS libretro-gambatte/libretro-gambatte.so"
LIBS="$LIBS libretro-meteor/libretro-meteor.so"
LIBS="$LIBS libretro-nx/libretro-nx.so"
for lib in $LIBS
do