Perlmint / glew-cmake

GLEW(https://github.com/nigels-com/glew, source updated nightly) with Cmake and pre-generated sources
Other
235 stars 95 forks source link

Add Travis CI support #9

Closed andystanton closed 9 years ago

andystanton commented 9 years ago

Travis CI provides free continuous integration for open source projects: https://travis-ci.org/

Example build running for this fork: https://travis-ci.org/andystanton/glew-cmake

andystanton commented 9 years ago

Any thoughts @Perlmint?

Perlmint commented 9 years ago

Using travis-ci is good and your commit looks fine. but I have a question about configure file. is there any reason except for using configure file on travis-ci? I think just calling 'cmake .' in the .travis.yml not via other script file is more simple. using configure script feels like using autotools.

andystanton commented 9 years ago

@Perlmint you're correct - I've amended the original commit so there is no configure script and .travis.yml invokes cmake . && make instead.