mirror of
https://github.com/libretro/libretro-super
synced 2024-11-28 11:14:11 +00:00
Add instancingviewer to build
This commit is contained in:
parent
cfe4328b7f
commit
792f859944
@ -430,6 +430,21 @@ build_libretro_scenewalker()
|
||||
fi
|
||||
}
|
||||
|
||||
build_libretro_instancingviewer()
|
||||
{
|
||||
cd "$BASE_DIR"
|
||||
if [ -d "libretro-gl-instancingviewer" ]; then
|
||||
echo "=== Building Instancing Viewer (GL) ==="
|
||||
check_opengl
|
||||
cd libretro-gl-instancingviewer
|
||||
${MAKE} -f Makefile platform=${FORMAT_COMPILER_TARGET} $COMPILER -j$JOBS clean || die "Failed to clean InstancingViewer"
|
||||
${MAKE} -f Makefile platform=${FORMAT_COMPILER_TARGET} $COMPILER -j$JOBS || die "Failed to build InstancingViewer"
|
||||
cp instancingviewer_libretro${FORMAT}.${FORMAT_EXT} "$RARCH_DIST_DIR"
|
||||
else
|
||||
echo "InstancingViewer not fetched, skipping ..."
|
||||
fi
|
||||
}
|
||||
|
||||
build_libretro_scummvm()
|
||||
{
|
||||
cd "$BASE_DIR"
|
||||
|
@ -170,6 +170,7 @@ else
|
||||
if [ -z $BUILD_LIBRETRO_GL ]; then
|
||||
build_libretro_modelviewer
|
||||
build_libretro_scenewalker
|
||||
build_libretro_instancingviewer
|
||||
if [ -z $BUILD_EXPERIMENTAL ]; then
|
||||
build_libretro_mupen64
|
||||
build_libretro_ffmpeg
|
||||
@ -198,8 +199,6 @@ fi
|
||||
build_libretro_mame078
|
||||
build_libretro_dosbox
|
||||
build_libretro_scummvm
|
||||
build_libretro_modelviewer
|
||||
build_libretro_scenewalker
|
||||
build_libretro_picodrive
|
||||
if [ $FORMAT_COMPILER_TARGET != "win" ]; then
|
||||
build_libretro_desmume
|
||||
|
Loading…
Reference in New Issue
Block a user