1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-24 11:45:53 +01:00

Added Travis CI OS X build

This commit is contained in:
Martin Tůma 2017-12-03 11:20:30 +01:00
parent 5bdc263cda
commit afbb8c3284

View File

@ -1,7 +1,16 @@
language: c++ language: c++
os:
-linux
-osx
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi
install: install:
- sudo apt-get install libqt4-dev - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install qt; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install libqt4-dev; fi
script: script:
- lrelease gpxsee.pro - lrelease gpxsee.pro