From 0e91358e661ca413416d72b3a63df75bd01425c5 Mon Sep 17 00:00:00 2001 From: erwincoumans Date: Thu, 7 May 2015 15:12:23 -0700 Subject: [PATCH] attempt to get osx and linux support for travis: disable linux specific things --- .travis.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 51702f1d9..628563fd7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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