"git@gitlab.completext.com:quzar/Cockatrice.git" did not exist on "de388a74bda9c0e98299917409ce0539f5f84b3e"
Commit bda01b20 authored by Gavin Bisesi's avatar Gavin Bisesi
Browse files

Install dependencies for travis more generally

parent 2d400e55
......@@ -6,7 +6,5 @@ compiler:
- gcc
- clang
script: mkdir build && cd build && cmake .. && make
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y qtmobility-dev libprotobuf-dev protobuf-compiler libqt4-dev build-essential
install: ./travis-dependencies.sh
cache: apt
#!/bin/bash
if [[ $TRAVIS_OS_NAME == "osx" ]] ; then
brew update
brew install qt cmake protobuf
else
sudo apt-get update -qq
sudo apt-get install -y qtmobility-dev libprotobuf-dev protobuf-compiler libqt4-dev
fi
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment