Skip to content

Commit

Permalink
Test script to build several configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
frank-zago committed Jun 27, 2015
1 parent b084434 commit 42ba776
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions testbuilds.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
#!/bin/sh

# Test various build configurations. Both SDL 1 and 2 must be
# installed.

# Exit at the first error
set -e

# SDL 1 + TTF
autoreconf -i
./configure
make clean
make -j4

# SDL 1, no TTF
autoreconf -i
./configure --disable-ttf
make clean
make -j4

# SDL 2 + TTF
autoreconf -i
./configure --enable-sdl2
make clean
make -j4

# SDL 2, no TTF is not supported (yet?)

echo
echo Success
echo

0 comments on commit 42ba776

Please sign in to comment.