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.
This commit is contained in:
baldurk
2016-09-27 16:26:24 +02:00
parent 6e9e2721c2
commit 5c678df977
+1 -1
View File
@@ -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