From 3c0ffef06d2a0e057c317eb11d9834c1514b156b Mon Sep 17 00:00:00 2001 From: Fabio Bas Date: Tue, 21 Apr 2015 08:58:37 +0200 Subject: [PATCH] Switch travis builds to debug mode, since they catch more errors In debug mode, warnings are considered as errors. --- travis-compile.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis-compile.sh b/travis-compile.sh index 2266f887..1ff17c02 100755 --- a/travis-compile.sh +++ b/travis-compile.sh @@ -11,5 +11,5 @@ fi if [[ $TRAVIS_OS_NAME == "linux" && $QT4 == 0 ]]; then prefix="-DCMAKE_PREFIX_PATH=/opt/qt52/lib/cmake/" fi -cmake .. -DWITH_SERVER=1 -DWITH_QT4=$QT4 $prefix +cmake .. -DWITH_SERVER=1 -DCMAKE_BUILD_TYPE=Debug -DWITH_QT4=$QT4 $prefix make -j2