https://github.com/philsquared/Catch
Raw File
Tip revision: ba937c9c7404e0661518275aa88f198f671b2556 authored by Sadika Sumanapala on 04 January 2015, 10:31:58 UTC
Fix missing brackets in tutorial.md
Tip revision: ba937c9
.travis.yml
language: cpp

compiler:
  - clang
  - gcc

env:
  - BUILD_TYPE=Debug
  - BUILD_TYPE=Release

install:
  - cmake -Hprojects/CMake -BBuild -DCMAKE_BUILD_TYPE=$BUILD_TYPE
  - cd Build
  - make
  - cd ..

script:
  - cd Build
  - ctest -V
back to top