diff options
Diffstat (limited to 'other')
-rw-r--r-- | other/travis/env-linux.sh | 2 | ||||
-rw-r--r-- | other/travis/env-osx.sh | 2 | ||||
-rw-r--r-- | other/travis/env-windows.sh | 2 | ||||
-rw-r--r-- | other/travis/env.sh | 1 |
4 files changed, 4 insertions, 3 deletions
diff --git a/other/travis/env-linux.sh b/other/travis/env-linux.sh index a8b1d5ae..10b4fe82 100644 --- a/other/travis/env-linux.sh +++ b/other/travis/env-linux.sh | |||
@@ -1,7 +1,7 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | CMAKE=cmake | 3 | CMAKE=cmake |
4 | CMAKE_EXTRA_FLAGS="-DFORMAT_TEST=ON" | 4 | CMAKE_EXTRA_FLAGS="$CMAKE_EXTRA_FLAGS -DFORMAT_TEST=ON" |
5 | NPROC=`nproc` | 5 | NPROC=`nproc` |
6 | CURDIR=$PWD | 6 | CURDIR=$PWD |
7 | 7 | ||
diff --git a/other/travis/env-osx.sh b/other/travis/env-osx.sh index 86d16ade..b68a8651 100644 --- a/other/travis/env-osx.sh +++ b/other/travis/env-osx.sh | |||
@@ -1,7 +1,7 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | CMAKE=cmake | 3 | CMAKE=cmake |
4 | CMAKE_EXTRA_FLAGS="" | 4 | CMAKE_EXTRA_FLAGS="$CMAKE_EXTRA_FLAGS" |
5 | NPROC=`sysctl -n hw.ncpu` | 5 | NPROC=`sysctl -n hw.ncpu` |
6 | CURDIR=$PWD | 6 | CURDIR=$PWD |
7 | 7 | ||
diff --git a/other/travis/env-windows.sh b/other/travis/env-windows.sh index 44f486af..0ea1f726 100644 --- a/other/travis/env-windows.sh +++ b/other/travis/env-windows.sh | |||
@@ -1,7 +1,7 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | CMAKE=$ARCH-w64-mingw32.shared-cmake | 3 | CMAKE=$ARCH-w64-mingw32.shared-cmake |
4 | CMAKE_EXTRA_FLAGS="-DBOOTSTRAP_DAEMON=OFF -DCOMPILE_AS_CXX=ON" | 4 | CMAKE_EXTRA_FLAGS="$CMAKE_EXTRA_FLAGS -DBOOTSTRAP_DAEMON=OFF -DCOMPILE_AS_CXX=ON" |
5 | NPROC=`nproc` | 5 | NPROC=`nproc` |
6 | CURDIR=/work | 6 | CURDIR=/work |
7 | 7 | ||
diff --git a/other/travis/env.sh b/other/travis/env.sh index f899eb88..bb19d46d 100644 --- a/other/travis/env.sh +++ b/other/travis/env.sh | |||
@@ -7,6 +7,7 @@ export LD_LIBRARY_PATH=$CACHE_DIR/lib | |||
7 | export PKG_CONFIG_PATH=$CACHE_DIR/lib/pkgconfig | 7 | export PKG_CONFIG_PATH=$CACHE_DIR/lib/pkgconfig |
8 | export ASTYLE=$CACHE_DIR/astyle/build/gcc/bin/astyle | 8 | export ASTYLE=$CACHE_DIR/astyle/build/gcc/bin/astyle |
9 | export CFLAGS="-O3 -DTRAVIS_ENV=1" | 9 | export CFLAGS="-O3 -DTRAVIS_ENV=1" |
10 | export CMAKE_EXTRA_FLAGS="-DERROR_ON_WARNING=ON" | ||
10 | 11 | ||
11 | BUILD_DIR=_build | 12 | BUILD_DIR=_build |
12 | 13 | ||