mirror of
https://github.com/libretro/libretro-super
synced 2025-03-31 07:20:21 +00:00
Move user defines down
Including the user config script should come last to allow for the possibility of redefining/undefining any default variable
This commit is contained in:
parent
6ee5866baf
commit
d9206ce6a9
@ -53,19 +53,6 @@ esac
|
|||||||
|
|
||||||
export FORMAT_COMPILER_TARGET_ALT="$FORMAT_COMPILER_TARGET"
|
export FORMAT_COMPILER_TARGET_ALT="$FORMAT_COMPILER_TARGET"
|
||||||
|
|
||||||
#USER DEFINES
|
|
||||||
#------------
|
|
||||||
#These options should be defined inside your own
|
|
||||||
#local libretro-config-user.sh file rather than here.
|
|
||||||
#The following below is just a sample.
|
|
||||||
|
|
||||||
if [ -f "libretro-config-user.sh" ]; then
|
|
||||||
. ./libretro-config-user.sh
|
|
||||||
else
|
|
||||||
# Sane defaults
|
|
||||||
export BUILD_LIBRETRO_GL=1
|
|
||||||
fi
|
|
||||||
|
|
||||||
#if uncommented, will fetch repos with read+write access. Useful for committers
|
#if uncommented, will fetch repos with read+write access. Useful for committers
|
||||||
#export WRITERIGHTS=1
|
#export WRITERIGHTS=1
|
||||||
|
|
||||||
@ -126,3 +113,16 @@ export RA_ANDROID_API=android-18
|
|||||||
|
|
||||||
# Retroarch minimum API level (defines low end android version compatability)
|
# Retroarch minimum API level (defines low end android version compatability)
|
||||||
export RA_ANDROID_MIN_API=android-9
|
export RA_ANDROID_MIN_API=android-9
|
||||||
|
|
||||||
|
#USER DEFINES
|
||||||
|
#------------
|
||||||
|
#These options should be defined inside your own
|
||||||
|
#local libretro-config-user.sh file rather than here.
|
||||||
|
#The following below is just a sample.
|
||||||
|
|
||||||
|
if [ -f "libretro-config-user.sh" ]; then
|
||||||
|
. ./libretro-config-user.sh
|
||||||
|
else
|
||||||
|
# Sane defaults
|
||||||
|
export BUILD_LIBRETRO_GL=1
|
||||||
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user