summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-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