Hello CHICKEN developers!

I am happy to announce the conversion of the test suite to CMake. It is
not complete yet, but getting there.

You can see for yourself:

git clone https://github.com/bazurbat/chicken-scheme.git
cd chicken-scheme
git checkout cmake-build
mkdir build && cd build
cmake ..
cmake --build . && cmake --build . --target tests
ctest -j3 # -j<number> parallel testing jobs

This works with Visual Studio too (some tests fail, TBD).

If you have Ninja (http://martine.github.io/ninja/) installed, you can
pass it as a generator to CMake for faster builds.

cmake -GNinja ..
ninja && ninja tests

Parallel builds are also supported for default make generator:

make -j3 && make -j3 tests

Enjoy!

-- 
Regards, Oleg

_______________________________________________
Chicken-hackers mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/chicken-hackers

Reply via email to