mirror of
https://github.com/libretro/libretro-super
synced 2024-12-27 21:24:43 +00:00
Add cores to libretro-build-static.sh
This commit is contained in:
parent
a3f595bde9
commit
654c0f203c
30
libretro-build-static.sh
Executable file
30
libretro-build-static.sh
Executable 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}
|
Loading…
Reference in New Issue
Block a user