summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorChristian Beier <dontmind@freeshell.org>2016-11-18 23:24:05 +0100
committerChristian Beier <dontmind@freeshell.org>2016-12-30 15:46:07 +0100
commit62f0fe6b1b1104874ddf87aa3e35700c16f6db46 (patch)
treed6a4ffb2499d9ff6408a0fd629521145b0fd6f03 /.travis.yml
parent8415ff4c3517c6697d53e1a17bba35284f480891 (diff)
downloadlibtdevnc-62f0fe6b1b1104874ddf87aa3e35700c16f6db46.tar.gz
libtdevnc-62f0fe6b1b1104874ddf87aa3e35700c16f6db46.zip
TravisCI: switch to CMake.
Conflicts: .travis.yml
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 99ff4b6..61ebe4f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -11,5 +11,9 @@ compiler:
before_install:
- 'if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export CFLAGS="-I/usr/local/opt/openssl/include $CFLAGS" LDFLAGS="-L/usr/local/opt/openssl/lib $LDFLAGS"; fi'
-# before build script, run autoreconf
-before_script: autoreconf -fiv \ No newline at end of file
+# Build steps
+script:
+ - mkdir build
+ - cd build
+ - cmake .. && make
+