Browse Source

Update .travis.yml to install SDL2 before compiling gamepad example

master
Krisjanis Rijnieks 7 years ago
parent
commit
594abf2b39
  1. 5
      .travis.yml

5
.travis.yml

@ -202,6 +202,11 @@ install:
- mv example_remote-client/addons.make.norpi example_remote-client/addons.make
- mv example_remote-server/addons.make.norpi example_remote-server/addons.make
- mv example_simpler/addons.make.norpi example_simpler/addons.make
- if [ "$TARGET" == "osx" ]; then
brew install sdl2
elif [ "$TARGET" == "linux64" ]; then
sudo apt-get install libsdl2-dev
fi
script:
- cd ~/openFrameworks

Loading…
Cancel
Save