mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 13:50:04 +00:00
21430f7d44
add '- sudo make install' and hope it works on Travis' OSX machines too.
20 lines
444 B
YAML
20 lines
444 B
YAML
language: cpp
|
|
os:
|
|
- linux
|
|
- osx
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
script:
|
|
- echo "CXX="$CXX
|
|
- echo "CC="$CC
|
|
- cmake . -G "Unix Makefiles" #-DCMAKE_CXX_FLAGS=-Werror
|
|
- make -j8
|
|
# Test again with double precision
|
|
- cmake . -G "Unix Makefiles" -DUSE_DOUBLE_PRECISION=ON #-DCMAKE_CXX_FLAGS=-Werror
|
|
- make -j8
|
|
# Test again with shared libraries
|
|
- cmake . -G "Unix Makefiles" -DBUILD_SHARED_LIBS=ON
|
|
- make -j8
|
|
- sudo make install
|