Add cores to libretro-build-static.sh

This commit is contained in:
twinaphex 2016-02-05 17:27:12 +01:00
parent a3f595bde9
commit 654c0f203c

30
libretro-build-static.sh Executable file
View File

@ -0,0 +1,30 @@
#! /usr/bin/env bash
# vim: set ts=3 sw=3 noet ft=sh : bash
SCRIPT="${0#./}"
BASE_DIR="${SCRIPT%/*}"
WORKDIR="$PWD"
if [ "$BASE_DIR" = "$SCRIPT" ]; then
BASE_DIR="$WORKDIR"
else
if [[ "$0" != /* ]]; then
# Make the path absolute
BASE_DIR="$WORKDIR/$BASE_DIR"
fi
fi
if [[ -z "$1" ]]; then
WANT_CORES=" \
vba_next \
2048 \
prboom \
reicast \
snes9x_next"
else
WANT_CORES="$@"
fi
export STATIC_LINKING=1
${BASE_DIR}/libretro-build.sh ${WANT_CORES}