-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| language: objective-c | ||
|
|
||
| before_install: | ||
| - brew update | ||
| - brew install cmake sdl libpng readline portaudio | ||
|
|
||
| before_script: | ||
| - mkdir build | ||
| - cd build | ||
| - cmake .. | ||
|
|
||
| script: make | ||
|
|
||
| # | ||
| # enable after https://github.com/travis-ci/travis-ci/issues/216 is | ||
| # resolved, currently we can either build on linux or osx, leaving | ||
| # the configuration here to adjust to the upcoming sytax later | ||
| # | ||
| # language: c | ||
| # | ||
| # compiler: gcc | ||
| # | ||
| # before_install: | ||
| # - sudo apt-get update -qq | ||
| # - sudo apt-get install -qq cmake libsdl1.2-dev zlib1g-dev libpng12-dev readline-common portaudio19-dev libx11-dev | ||
| # | ||
| # before_script: | ||
| # - mkdir build | ||
| # - cd build | ||
| # - cmake .. | ||
| # | ||
| # script: make |