From 1bcc5e239016db390442ebcf8084eb40f85bafc7 Mon Sep 17 00:00:00 2001 From: Jesse Beder Date: Sun, 24 Mar 2019 18:27:01 -0500 Subject: [PATCH] Switch build command to use cmake instead of make. This allows it to be cross-platform. --- .travis.yml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6ea1a51..0ac1755 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,4 @@ language: cpp -os: - - linux - - osx - - windows -compiler: - - clang - - gcc before_install: - | if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then @@ -20,10 +13,16 @@ before_script: - cd build - cmake .. script: - - make + - cmake --build . - test/run-tests matrix: - exclude: + include: - os: linux + compiler: gcc + - os: osx + compiler: clang + - os: osx + compiler: gcc + - os: windows compiler: clang