summaryrefslogtreecommitdiff
path: root/other
diff options
context:
space:
mode:
Diffstat (limited to 'other')
-rw-r--r--other/travis/env-linux.sh2
-rw-r--r--other/travis/env-osx.sh2
-rw-r--r--other/travis/env-windows.sh2
-rw-r--r--other/travis/env.sh1
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
3CMAKE=cmake 3CMAKE=cmake
4CMAKE_EXTRA_FLAGS="-DFORMAT_TEST=ON" 4CMAKE_EXTRA_FLAGS="$CMAKE_EXTRA_FLAGS -DFORMAT_TEST=ON"
5NPROC=`nproc` 5NPROC=`nproc`
6CURDIR=$PWD 6CURDIR=$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
3CMAKE=cmake 3CMAKE=cmake
4CMAKE_EXTRA_FLAGS="" 4CMAKE_EXTRA_FLAGS="$CMAKE_EXTRA_FLAGS"
5NPROC=`sysctl -n hw.ncpu` 5NPROC=`sysctl -n hw.ncpu`
6CURDIR=$PWD 6CURDIR=$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
3CMAKE=$ARCH-w64-mingw32.shared-cmake 3CMAKE=$ARCH-w64-mingw32.shared-cmake
4CMAKE_EXTRA_FLAGS="-DBOOTSTRAP_DAEMON=OFF -DCOMPILE_AS_CXX=ON" 4CMAKE_EXTRA_FLAGS="$CMAKE_EXTRA_FLAGS -DBOOTSTRAP_DAEMON=OFF -DCOMPILE_AS_CXX=ON"
5NPROC=`nproc` 5NPROC=`nproc`
6CURDIR=/work 6CURDIR=/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
7export PKG_CONFIG_PATH=$CACHE_DIR/lib/pkgconfig 7export PKG_CONFIG_PATH=$CACHE_DIR/lib/pkgconfig
8export ASTYLE=$CACHE_DIR/astyle/build/gcc/bin/astyle 8export ASTYLE=$CACHE_DIR/astyle/build/gcc/bin/astyle
9export CFLAGS="-O3 -DTRAVIS_ENV=1" 9export CFLAGS="-O3 -DTRAVIS_ENV=1"
10export CMAKE_EXTRA_FLAGS="-DERROR_ON_WARNING=ON"
10 11
11BUILD_DIR=_build 12BUILD_DIR=_build
12 13