libretro-super/libretro-config.sh
twinaphex 2020f84a7c Define user defines for building/fetching in local libretro-config-user.sh,
and include this if it exists from libretro-config.sh
2013-06-30 18:23:26 +02:00

18 lines
574 B
Bash
Executable File

#!/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