add collision and inverse dynamics unit tests to cmake, .travis.yml and appveyor.yml

(more unit tests will follow, once this setup works)
This commit is contained in:
erwincoumans
2015-11-24 16:13:21 -08:00
parent 4205e976f6
commit e387baf213
8 changed files with 89 additions and 10 deletions

View File

@@ -10,10 +10,13 @@ script:
- echo "CC="$CC
- cmake . -G "Unix Makefiles" #-DCMAKE_CXX_FLAGS=-Werror
- make -j8
# Test again with double precision
- ctest -j8 --output-on-failure
# Build again with double precision
- cmake . -G "Unix Makefiles" -DUSE_DOUBLE_PRECISION=ON #-DCMAKE_CXX_FLAGS=-Werror
- make -j8
# Test again with shared libraries
- ctest -j8 --output-on-failure
# Build again with shared libraries
- cmake . -G "Unix Makefiles" -DBUILD_SHARED_LIBS=ON
- make -j8
- ctest -j8 --output-on-failure
- sudo make install