forked from libretro/libretro-super
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibretro-build-win.sh
More file actions
44 lines (40 loc) · 847 Bytes
/
libretro-build-win.sh
File metadata and controls
44 lines (40 loc) · 847 Bytes
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
#!/bin/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_mednafen_pce_fast
build_libretro_mednafen_gba
build_libretro_mednafen_ngp
build_libretro_mednafen_vb
build_libretro_mednafen_wswan
build_libretro_s9x
build_libretro_s9x_next
build_libretro_genplus
#build_libretro_fba
build_libretro_vba_next
build_libretro_fceu
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