forked from AndyIbanez/RcloneBrowser
-
Notifications
You must be signed in to change notification settings - Fork 14
/
.travis.yml
39 lines (36 loc) · 810 Bytes
/
.travis.yml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
git:
depth: 1
matrix:
include:
- os: linux
language: cpp
dist: trusty
sudo: false
addons:
apt:
packages:
- qttools5-dev
script:
- mkdir build && cd build
- cmake ..
- cmake --build .
- os: osx
language: cpp
osx_image: xcode8.3
install:
- brew update
- brew install qt5
script:
- mkdir build && cd build
- cmake -DCMAKE_PREFIX_PATH=/usr/local/opt/qt5/lib/cmake ..
- cmake --build .
- os: osx
language: cpp
osx_image: xcode9.4
install:
- brew update
- brew install qt5
script:
- mkdir build && cd build
- cmake -DCMAKE_PREFIX_PATH=/usr/local/opt/qt5/lib/cmake ..
- cmake --build .