diff options
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 8 |
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 + |