mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
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.
18 lines
489 B
Bash
Executable File
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 ..
|