On Wed, Jul 22, 2015 at 3:47 PM, Vinod Kone <[email protected]> wrote: > This is exciting! Thanks for sharing the progress Alex. > > Mind sending us instructions on how to build/test with cmake for noobs like > me?
Ah, rats, I knew I was forgetting something. It actually looks pretty much like the autotools build system: 1. Make sure you have all the "normal" system dependencies installed (like APR, etc.) 2. Make sure you have CMake 2.8 or later installed on your machine. (On Ubuntu this looks like: `sudo apt-get install cmake`) 3. Go to the root of your Mesos source tree and do something like the following. Note that you will never have to run bootstrap or configure, so you should _only_ have to run the following commands. mkdir build-cmake cmake .. make 4. Watch as it builds, and hopefully doesn't explode! Finally to run tests, you can do `make test ARGS="-V"`. They run without ANSI colors right now, which is not ideal, but we know it's an issue. -- Alex Theory is the first term in the Taylor series of practice. -- Thomas M Cover (1992)
