1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-07-19 19:52:24 +02:00
openrw/.travis.yml
Sven Stucki 431e218a64 Use Boost to parse command line arguments (#177)
There are still some rough edges, first version to send in for
discussion.
2016-09-06 20:11:41 +02:00

34 lines
778 B
YAML

sudo: required
dist: trusty
language: cpp
addons:
apt:
packages:
- libbullet-dev
- libsdl2-dev
- libmad0-dev
- libglm-dev
- libsndfile-dev
- libopenal-dev
- libboost-filesystem-dev
- libboost-program-options-dev
# Dependencies for BUILD_TESTS
- libboost-test-dev
# Dependencies for BUILD_VIEWER
- qt5-default
- libqt5opengl5-dev
git:
depth: 3
script:
- mkdir build
- cd build
- cmake .. -DBUILD_TESTS=1 -DTESTS_NODATA=1 -DBUILD_VIEWER=1 && make
- tests/run_tests
notifications:
email: false
# irc:
# channels:
# - chat.freenode.net#openrw
# template:
# - "%{repository}/%{branch} (%{commit} - %{author}): %{build_url}: %{message}"