Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 1.25 KB

README.md

File metadata and controls

30 lines (24 loc) · 1.25 KB

chessgen

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.

Build Status

OS Windows Linux
Master Build status Build Status

Installation

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