Compare commits

...

3 Commits

Author SHA1 Message Date
Jesse Beder
1bcc5e2390 Switch build command to use cmake instead of make.
This allows it to be cross-platform.
2019-03-24 18:27:01 -05:00
Jesse Beder
8f3b8dffb0 Change language from c++ to cpp. 2019-03-24 18:06:06 -05:00
Jesse Beder
7710ef360b Add windows to travis build. 2019-03-24 17:57:10 -05:00

View File

@ -1,10 +1,4 @@
language: c++
os:
- linux
- osx
compiler:
- clang
- gcc
language: cpp
before_install:
- |
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
@ -19,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