summaryrefslogtreecommitdiff
path: root/build-test.sh
blob: b4b8c1fccd307a4a226da24aaa91705af2d13fe7 (plain)
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
#!/bin/sh

failed=0;

# check if testing mingw
if [ "$CC" = "i686-w64-mingw32-gcc" ]; then
	export PLATFORM=mingw32
	export ARCH=x86
	haveExternalLibs=0
else
	haveExternalLibs=1
fi

# Default Build
(make clean release) || failed=1;

# Test additional options
if [ $haveExternalLibs -eq 1 ]; then
	(make clean release USE_CODEC_VORBIS=1 USE_FREETYPE=1) || failed=1;
fi

if [ $failed -eq 1 ]; then
	echo "Build failure.";
else
	echo "All builds successful.";
fi

exit $failed;