Travis: Set build mode to RelWithDebInfo

This may lead to build errors, as variables that are only used in asserts
will get optimized out and because of -Werror being set (unused variables).
This commit is contained in:
Lukas W
2014-01-24 20:02:11 +01:00
parent 9435cfd8b8
commit b1835c99d3

View File

@@ -3,4 +3,4 @@ compiler: gcc
before_install: sudo apt-get update
install: sudo apt-get install libqt4-dev libsndfile-dev fftw3-dev libvorbis-dev libogg-dev libasound2-dev libjack-dev libsdl-dev libsamplerate0-dev libstk0-dev libfluidsynth-dev portaudio19-dev wine-dev g++-multilib
before_script: mkdir build && cd build
script: cmake .. && make -j8
script: cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo .. && make -j8