QGIS/ci/travis/linux/install.sh
Matthias Kuhn ab3542abf8 Write debug output on travis
This should make it easier to debug issues when they fail on travis.
But at the sime time it also decreases the SNR and increases test times.
Will have to check if this makes sense in the long run.
2015-12-04 15:27:43 +01:00

18 lines
489 B
Bash
Executable File

mkdir build
cd build
export CXX="clang++-3.7"
export CC="clang-3.7"
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DWITH_SERVER=ON \
-DWITH_STAGED_PLUGINS=OFF \
-DWITH_GRASS=ON \
-DSUPPRESS_QT_WARNINGS=ON \
-DENABLE_MODELTEST=ON \
-DENABLE_PGTEST=ON \
-DWITH_QWTPOLAR=OFF \
-DWITH_APIDOC=ON \
-DWITH_ASTYLE=ON \
-DWITH_PYSPATIALITE=ON \
-DGRASS_PREFIX7=/usr/lib/grass70 \
-DGRASS_INCLUDE_DIR7=/usr/lib/grass70/include ..