From d9211780575e367b28446ce87cfe0d3713ae6573 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 3 Jan 2019 13:20:28 +0100 Subject: [PATCH] Add libretro-build-msvc2010_x64.sh --- libretro-build-msvc2010_x64.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 libretro-build-msvc2010_x64.sh diff --git a/libretro-build-msvc2010_x64.sh b/libretro-build-msvc2010_x64.sh new file mode 100644 index 00000000..4b60256f --- /dev/null +++ b/libretro-build-msvc2010_x64.sh @@ -0,0 +1,17 @@ +#! /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 + +platform=msvc2010_x64 ${BASE_DIR}/libretro-build.sh $@