2013-12-08 17:10:42 -08:00
|
|
|
#!/bin/bash
|
2013-03-26 09:18:20 -04:00
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2013-04-30 00:57:14 +02:00
|
|
|
BASE_DIR="$PWD"
|
|
|
|
RARCH_DIR=$BASE_DIR/dist
|
|
|
|
RARCH_DIST_DIR=$RARCH_DIR/ios
|
2013-05-18 03:40:05 +02:00
|
|
|
FORMAT=_ios
|
2013-04-30 06:35:47 +02:00
|
|
|
FORMAT_COMPILER_TARGET=ios
|
|
|
|
FORMAT_COMPILER_TARGET_ALT=ios
|
|
|
|
FORMAT_EXT=dylib
|
|
|
|
JOBS=7
|
2013-05-19 01:39:21 +02:00
|
|
|
MAKE=make
|
2013-12-03 02:29:09 +01:00
|
|
|
CXX11="clang++ -std=c++11 -stdlib=libc++ -miphoneos-version-min=5.0"
|
2013-11-29 16:17:33 +01:00
|
|
|
IOS=1
|
2013-03-26 10:35:45 -04:00
|
|
|
|
2013-11-24 02:27:12 +01:00
|
|
|
export IOSSDK=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk/
|
2013-03-26 09:18:20 -04:00
|
|
|
|
2013-05-19 00:17:06 +02:00
|
|
|
. ./libretro-build-common.sh
|
2013-03-26 09:18:20 -04:00
|
|
|
|
2013-05-03 17:22:09 +02:00
|
|
|
if [ $1 ]; then
|
|
|
|
$1
|
|
|
|
else
|
2013-12-15 20:48:54 +01:00
|
|
|
build_libretro_bsnes_cplusplus98
|
2013-11-26 12:45:30 +01:00
|
|
|
build_libretro_bsnes
|
2013-05-03 17:22:09 +02:00
|
|
|
build_libretro_mednafen
|
|
|
|
build_libretro_mednafen_gba
|
2013-12-16 02:15:02 +01:00
|
|
|
#build_libretro_mednafen_snes
|
2013-11-30 02:26:51 +01:00
|
|
|
build_libretro_mednafen_psx
|
2013-05-18 21:37:43 +02:00
|
|
|
build_libretro_s9x
|
2013-05-03 17:22:09 +02:00
|
|
|
build_libretro_s9x_next
|
|
|
|
build_libretro_genplus
|
|
|
|
build_libretro_fba_full
|
2013-10-31 17:54:26 +01:00
|
|
|
build_libretro_vbam
|
2013-08-15 14:50:25 +02:00
|
|
|
build_libretro_vba_next
|
2013-05-03 17:22:09 +02:00
|
|
|
build_libretro_fceu
|
|
|
|
build_libretro_gambatte
|
2013-12-16 02:15:02 +01:00
|
|
|
#build_libretro_meteor
|
2013-05-03 17:22:09 +02:00
|
|
|
build_libretro_nx
|
|
|
|
build_libretro_prboom
|
|
|
|
build_libretro_stella
|
2013-07-05 21:48:55 +02:00
|
|
|
build_libretro_quicknes
|
2013-05-03 17:22:09 +02:00
|
|
|
build_libretro_nestopia
|
|
|
|
build_libretro_tyrquake
|
2013-06-14 05:11:29 +02:00
|
|
|
build_libretro_mame078
|
2013-12-16 02:15:02 +01:00
|
|
|
#build_libretro_mame
|
|
|
|
#build_libretro_dosbox
|
2013-12-15 21:02:19 +01:00
|
|
|
build_libretro_scummvm
|
2013-11-30 02:26:51 +01:00
|
|
|
build_libretro_picodrive
|
|
|
|
build_libretro_handy
|
|
|
|
build_libretro_desmume
|
|
|
|
build_libretro_pcsx_rearmed
|
2013-12-19 18:31:05 -05:00
|
|
|
build_libretro_pcsx_rearmed_interpreter
|
2013-05-18 02:53:55 +02:00
|
|
|
build_libretro_modelviewer
|
|
|
|
build_libretro_scenewalker
|
2013-07-29 01:13:17 +02:00
|
|
|
build_libretro_instancingviewer
|
2013-11-25 03:54:24 +01:00
|
|
|
build_libretro_instancingviewer_camera
|
2013-11-29 23:48:52 +01:00
|
|
|
build_libretro_mupen64
|
2013-12-16 02:15:02 +01:00
|
|
|
#build_libretro_ffmpeg
|
2013-09-23 19:59:32 +02:00
|
|
|
build_libretro_dinothawr
|
2014-03-09 21:11:47 +01:00
|
|
|
build_libretro_3dengine
|
2013-05-03 17:22:09 +02:00
|
|
|
fi
|