mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-12 23:44:21 +00:00
Disable freetype and vorbis for mingw travis build
Libs are missing.
This commit is contained in:
parent
3698df37ef
commit
71632ea291
1 changed files with 7 additions and 1 deletions
|
@ -5,15 +5,21 @@ failed=0;
|
||||||
# check if testing mingw
|
# check if testing mingw
|
||||||
if [ "$CC" = "i686-w64-mingw32-gcc" ]; then
|
if [ "$CC" = "i686-w64-mingw32-gcc" ]; then
|
||||||
MAKE=./cross-make-mingw.sh
|
MAKE=./cross-make-mingw.sh
|
||||||
|
haveExternalLibs=0
|
||||||
else
|
else
|
||||||
MAKE=make
|
MAKE=make
|
||||||
|
haveExternalLibs=1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Default Build
|
# Default Build
|
||||||
($MAKE clean release) || failed=1;
|
($MAKE clean release) || failed=1;
|
||||||
|
|
||||||
# Test additional options
|
# Test additional options
|
||||||
($MAKE clean release USE_CODEC_VORBIS=1 USE_FREETYPE=1 CFLAGS=-DRAVENMD4) || failed=1;
|
if [ $haveExternalLibs -eq 1 ]; then
|
||||||
|
($MAKE clean release USE_CODEC_VORBIS=1 USE_FREETYPE=1 CFLAGS=-DRAVENMD4) || failed=1;
|
||||||
|
else
|
||||||
|
($MAKE clean release CFLAGS=-DRAVENMD4) || failed=1;
|
||||||
|
fi
|
||||||
|
|
||||||
if [ $failed -eq 1 ]; then
|
if [ $failed -eq 1 ]; then
|
||||||
echo "Build failure.";
|
echo "Build failure.";
|
||||||
|
|
Loading…
Reference in a new issue