uhub/autotest/travis/install-build-depends.sh

16 lines
305 B
Bash
Raw Normal View History

2014-05-09 15:25:29 +00:00
#!/bin/sh
sudo apt-get update -qq
sudo apt-get install -qq cmake
if [ "${CONFIG}" = "full" ]; then
sudo apt-get install -qq libsqlite3-dev
fi
if [ "${SSL}" = "openssl" ]; then
sudo apt-get install -qq libssl-dev
elif [ "${SSL}" = "gnutls" ]; then
sudo apt-get install -qq libgnutls-dev
fi