attempt to get osx and linux support for travis: disable linux specific things

This commit is contained in:
erwincoumans 2015-05-07 15:12:23 -07:00
parent cedd0432bf
commit 0e91358e66

View File

@ -5,16 +5,14 @@ os:
compiler:
- gcc
- clang
install:
- sudo apt-get update
- sudo apt-get install libglew-dev
script:
- echo "CXX="$CXX
- echo "CC="$CC
- cmake . -G "Unix Makefiles" #-DCMAKE_CXX_FLAGS=-Werror
- make -j8
- sudo make install
# Test again with double precision
- cmake . -G "Unix Makefiles" -DUSE_DOUBLE_PRECISION=ON #-DCMAKE_CXX_FLAGS=-Werror
- make -j8
- sudo make install
# Test again with shared libraries
- cmake . -G "Unix Makefiles" -DBUILD_SHARED_LIBS=ON
- make -j8