forked from libretro/libretro-super
-
Notifications
You must be signed in to change notification settings - Fork 1
/
libretro-build-win.sh
50 lines (46 loc) · 1008 Bytes
/
libretro-build-win.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#! /usr/bin/env bash
# vim: set ts=3 sw=3 noet ft=sh : bash
BASE_DIR=$(pwd)
RARCH_DIR=$BASE_DIR/dist
RARCH_DIST_DIR=$RARCH_DIR/win
FORMAT=_win
FORMAT_EXT=dll
MSVC_NAME=msvc-2010
RELEASE_LTCG=Release
RELEASE=Release
die()
{
echo $1
#exit 1
}
source $BASE_DIR/libretro-build-common-xdk.sh
if [ $1 ]; then
$1
else
#build_libretro_beetle_lynx
build_libretro_beetle_gba
build_libretro_beetle_ngp
build_libretro_beetle_pce_fast
build_libretro_beetle_supergrafx
build_libretro_beetle_pcfx
build_libretro_mednafen_psx
build_libretro_beetle_vb
build_libretro_beetle_wswan
#build_libretro_beetle_bsnes
build_libretro_snes9x
build_libretro_snes9x_next
build_libretro_genesis_plus_gx
#build_libretro_fb_alpha
build_libretro_vba_next
build_libretro_fceumm
build_libretro_gambatte
build_libretro_nx
build_libretro_prboom
build_libretro_stella
#build_libretro_quicknes
build_libretro_nestopia
build_libretro_tyrquake
build_libretro_mame078
build_libretro_picodrive
#build_libretro_handy
fi