https://github.com/simonfuhrmann/mve
Revision 30e5ba73556ec6d9d23df2147e7626c31bdc84a7 authored by Simon Fuhrmann on 24 October 2019, 16:46:40 UTC, committed by GitHub on 24 October 2019, 16:46:40 UTC
Added unsigned short vector types
2 parent s 187d2b0 + d8372e5
Raw File
Tip revision: 30e5ba73556ec6d9d23df2147e7626c31bdc84a7 authored by Simon Fuhrmann on 24 October 2019, 16:46:40 UTC
Merge pull request #494 from pierotofy/vecdecl
Tip revision: 30e5ba7
.travis.yml
os: linux
language: cpp
compiler: gcc
sudo: false

branches:
   only:
     - master

before_install:
   - if [ "$CXX" = "g++" ]; then export CXX="g++-6"; fi

addons:
   apt:
     sources:
       - ubuntu-toolchain-r-test
     packages:
       - g++-6
       - cmake

before_script:
   - wget https://github.com/google/googletest/archive/master.zip -O /tmp/gtest.zip
   - unzip /tmp/gtest.zip
   - export GTEST_PATH=$PWD/googletest-master/googletest
   - mkdir $GTEST_PATH/build
   - pushd $GTEST_PATH/build
   - cmake ..
   - make gtest_main
   - popd

script:
    - make -j4 -Clibs/util
    - make -j4 -Clibs/mve
    - make -j4 -Clibs/sfm
    - make -j4 -Clibs/fssr
    - make -j4 test
    - ./tests/test
back to top