summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 7e1efd3a3fb8a456b89e5926cb5390728549681d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
language: cpp

matrix:
 include:
  - os: osx
    compiler: clang
    env:
     - QT_BASE=510

before_install:

install:
  if [ "$TRAVIS_OS_NAME" = "linux" ]; then 
    # TODO
  else
    brew install qt5;
    brew link --force qt5;
  fi

script:
  - qmake -v
  - qmake -r
  - make

notifications:
  email: false