Add support for CMake

This commit is contained in:
Adam Demuri
2020-05-31 13:26:14 -06:00
parent f0a47de6aa
commit 6fcc85dbaf
3 changed files with 21 additions and 3 deletions

View File

@ -14,6 +14,14 @@ addons:
install: true
script:
- make all
- make testall
jobs:
include:
- name: "build (make)"
script:
- make all
- make testall
- name: "build (cmake)"
script:
- mkdir build && cd build
- cmake ..
- make