summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleks Kissinger <aleks0@gmail.com>2018-10-15 16:46:00 +0200
committerAleks Kissinger <aleks0@gmail.com>2018-10-15 16:46:00 +0200
commitb151db2de2027742ffc665adb22eee074c92404b (patch)
treea54fed36afb1a93c41be3445e38d26768ba7a7a0
parentaa4cc700bd4380a6b22ec600d67b5cdbcd1d6ec1 (diff)
added travis osx build
-rw-r--r--.travis.yml27
1 files changed, 27 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..6401ce7
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,27 @@
+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
+ fi
+
+script:
+ - qmake -v
+ - qmake -r
+ - make
+
+notifications:
+ email: false \ No newline at end of file