Skip to content

Commit

Permalink
* added travis config
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Schulz committed Jan 8, 2015
1 parent 7c95838 commit a397999
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
language: cpp
compiler:
- gcc
- clang
script: cd build && make
before_install:
- cd build && make install_dependencies
11 changes: 11 additions & 0 deletions build/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,14 @@ clean:
rm -f gmon.out
rm -f $(SRC)/version.hpp
rm -f ../examples/*.json

install_dependencies_Linux:
sudo apt-get update -qq
sudo apt-get install -y libsndfile1-dev libboost-program-options-dev

install_dependencies_Darwin:
brew update
brew install libsndfile
brew install boost

install_dependencies: install_dependencies_$(UNAME)

0 comments on commit a397999

Please sign in to comment.