mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
9 lines
231 B
Bash
Executable file
9 lines
231 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [[ $TRAVIS_OS_NAME == "osx" ]] ; then
|
|
brew update
|
|
brew install qt cmake protobuf libgcrypt
|
|
else
|
|
sudo apt-get update -qq
|
|
sudo apt-get install -y qtmobility-dev libprotobuf-dev protobuf-compiler libqt4-dev
|
|
fi
|