2013-05-01 02:11:22 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2013-06-30 16:23:26 +00:00
|
|
|
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)
|
|
|
|
|
2013-05-01 02:11:22 +00:00
|
|
|
#if uncommented, will fetch repos with read+write access. Useful for committers
|
|
|
|
#export WRITERIGHTS
|
2013-05-18 00:53:55 +00:00
|
|
|
|
|
|
|
#if uncommented, will build libretro GL cores as well. Doesn't need to be defined for mobile platforms
|
|
|
|
#export BUILD_LIBRETRO_GL
|
2013-06-30 16:23:26 +00:00
|
|
|
|
|
|
|
#if uncommented, will build experimental cores as well which are not yet fit for release.
|
|
|
|
#export BUILD_EXPERIMENTAL
|