Quieter cmake.

Stop it spamming ' -- Installing' messages. We know it is installing assets.
Also make travis a bit quieter.
This commit is contained in:
Sacha
2013-11-29 01:34:56 +10:00
parent 995d94da05
commit 939ea577d3
3 changed files with 14 additions and 8 deletions
+5 -2
View File
@@ -1,8 +1,11 @@
cp -r android/assets .
mkdir -p build
if [[ "$1" == "--headless" ]]; then
HEADLESS="-DHEADLESS=ON"
HEADLESS="-DHEADLESS=ON"
else
MAKE_OPT="$1"
fi
(cd build; cmake $HEADLESS .. && make -j3 $MAKE_OPT; cd ..)
pushd build
cmake $HEADLESS .. | grep -v '^-- '
make -j4 $MAKE_OPT
popd