Browse Source

Install libglib2.0-dev for linux builds

Signed-off-by: falkTX <falktx@falktx.com>
tags/v1.0
falkTX 4 years ago
parent
commit
4e1b255960
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      .travis/install.sh

+ 4
- 2
.travis/install.sh View File

@@ -5,8 +5,10 @@ set -e
# common
sudo apt-get install -y build-essential curl cmake jq

# for cross-compilation
if [ "${TARGET}" = "macos-old" ]; then
if [ "${TARGET}" = "linux" ]; then
sudo apt-get install -y libglib2.0-dev

elif [ "${TARGET}" = "macos-old" ]; then
mkdir -p ${HOME}/PawPawBuilds/debs
pushd ${HOME}/PawPawBuilds/debs
if [ ! -f 'apple-uni-sdk-10.5_20110407-0.flosoft1_amd64.deb' ]; then


Loading…
Cancel
Save