summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorTobias Junghans <tobydox@veyon.io>2018-11-22 15:19:37 +0100
committerTobias Junghans <tobydox@veyon.io>2018-11-22 15:28:21 +0100
commite66a8a17f3fb2dc87ebd35535c9a310068ba3b4a (patch)
tree6353d0fafc84e11ebecdea2ba149c16f78cceaed /.travis.yml
parent1452b9a6ae082382215a8d0ddcdbb38df38d9aeb (diff)
downloadlibtdevnc-e66a8a17f3fb2dc87ebd35535c9a310068ba3b4a.tar.gz
libtdevnc-e66a8a17f3fb2dc87ebd35535c9a310068ba3b4a.zip
Allow to use global LZO library instead of miniLZO
The complete LZO library nowadays is installed on many systems so we can optionally make use of it and omit internal miniLZO implementation.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index ea8b9e5..dde1238 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -22,7 +22,7 @@ before_install:
script:
- mkdir build
- cd build
- - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get update; sudo apt-get --no-install-suggests --no-install-recommends install libsdl2-dev; fi
+ - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get update; sudo apt-get --no-install-suggests --no-install-recommends install libsdl2-dev liblzo2-dev; fi
- if [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then brew update; brew install sdl2; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then cmake .. -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl; else cmake ..; fi
- cmake --build .