From 5c678df977ffc2383aebd7e928ef6b16d10ba0a0 Mon Sep 17 00:00:00 2001 From: baldurk Date: Tue, 27 Sep 2016 16:26:24 +0200 Subject: [PATCH] Set travis to use cmake explicitly * I thought it was using cmake already, but it was using make. Whoops! * This will make it easier to add a release target in travis in future though, which is a nice bonus. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 0a5abf210..89e276f5d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,5 +39,5 @@ install: script: - sh ./scripts/hash_version.sh - - if [[ "$CODE_BUILD" == "1" ]]; then make ; fi + - if [[ "$CODE_BUILD" == "1" ]]; then mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Debug .. && make ; fi - if [[ "$DOCS_BUILD" == "1" ]]; then cd docs/ && make html ; fi