mirror of
https://github.com/libretro/libretro-super
synced 2024-11-28 11:14:11 +00:00
Define user defines for building/fetching in local libretro-config-user.sh,
and include this if it exists from libretro-config.sh
This commit is contained in:
parent
42a13194f7
commit
2020f84a7c
@ -163,6 +163,13 @@ mkdir -p "$RARCH_DIST_DIR"
|
||||
if [ $1 ]; then
|
||||
$1
|
||||
else
|
||||
if [ -z $BUILD_LIBRETRO_GL ]; then
|
||||
build_libretro_modelviewer
|
||||
build_libretro_scenewalker
|
||||
if [ -z $BUILD_EXPERIMENTAL ]; then
|
||||
build_libretro_mupen64
|
||||
fi
|
||||
fi
|
||||
build_libretro_bsnes
|
||||
build_libretro_mednafen
|
||||
build_libretro_mednafen_gba
|
||||
|
@ -1,7 +1,17 @@
|
||||
#!/bin/sh
|
||||
|
||||
if [ -f "libretro-config-user.sh" ]; then
|
||||
# All your user defines (listed below) should go in this local file
|
||||
. ./libretro-config-user.sh
|
||||
fi
|
||||
|
||||
#User defines (should be defined in local libretro-config-user.sh file)
|
||||
|
||||
#if uncommented, will fetch repos with read+write access. Useful for committers
|
||||
#export WRITERIGHTS
|
||||
|
||||
#if uncommented, will build libretro GL cores as well. Doesn't need to be defined for mobile platforms
|
||||
#export BUILD_LIBRETRO_GL
|
||||
|
||||
#if uncommented, will build experimental cores as well which are not yet fit for release.
|
||||
#export BUILD_EXPERIMENTAL
|
||||
|
Loading…
Reference in New Issue
Block a user