mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-01-21 21:20:07 -05:00
64fdcbdfb2
This adds a travis config to build everyting on 12.04. Because 12.04 is quite old, there are a certain number of hoops that need to be jumped through in order to get things working. As a result, the build script is more complex than I'd like.
45 lines
853 B
Bash
Executable File
45 lines
853 B
Bash
Executable File
#!/bin/bash
|
|
|
|
REBUILD=''
|
|
NVIDIA=''
|
|
NATIVE=''
|
|
CONCURRENCY='-j9'
|
|
QMAKE=${QMAKE:-qmake}
|
|
|
|
while test $# -gt 0
|
|
do
|
|
case "$1" in
|
|
--rebuild) REBUILD='1'
|
|
;;
|
|
--nvidia) NVIDIA="CONFIG += nvidia"
|
|
;;
|
|
--native) NATIVE="CONFIG += native"
|
|
;;
|
|
--travis) CONCURRENCY="-j1"
|
|
;;
|
|
--*) echo "bad option $1"; exit 1
|
|
;;
|
|
*) echo "unrecognised argument $1"; exit 1
|
|
;;
|
|
esac
|
|
shift
|
|
done
|
|
|
|
DIR=$( cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd )
|
|
|
|
for PROJ in ${DIR}/{Ember,EmberCL,EmberGenome,EmberRender,EmberAnimate,Fractorium}
|
|
do
|
|
pushd $PROJ
|
|
if [ "x1" = "x$REBUILD" ]; then
|
|
make clean
|
|
fi
|
|
$QMAKE "$NVIDIA" "$NATIVE"
|
|
make $CONCURRENCY
|
|
if [ "x$?" != "x0" ]; then
|
|
echo "Build failed! Check output for errors."
|
|
exit 1
|
|
fi
|
|
popd
|
|
done
|
|
|