mirror of
https://github.com/libretro/libretro-super
synced 2025-01-05 21:54:33 +00:00
Build in NX.
This commit is contained in:
parent
a0c7f60fa2
commit
3862089120
@ -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
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user