Theta/.travis.yml
2019-11-05 13:22:46 +01:00

14 lines
No EOL
304 B
YAML

language: c
os: linux
dist: ubuntu
sudo: required
before_script:
# create a build folder for the out-of-source build
- mkdir build
# switch to build directory
- cd build
# run cmake; here we assume that the project's
# top-level CMakeLists.txt is located at '..'
- cmake ..
script:
- make