A chess move generator and validator written in modern C++
This is still an early version, so bugs might (and probably do) exist. Please fill an issue if you find any.
OS | Windows | Linux |
---|---|---|
Master |
Install
git clone https://github.com/MarkHC/chessgen.git
cd chessgen
mkdir build && cd build
cmake ..
make install
Build tests
git clone --recursive https://github.com/MarkHC/chessgen.git
cd chessgen
mkdir build && cd build
cmake -DCHESSGEN_TEST=ON ..
make