These instructions require cmake.
Open a terminal or a git bash and clone the repo (or fork it and clone your fork if you want to submit changes):
git clone https://github.com/Dauphine203/cpp_chess.git
cd cpp_chess
Create a build
directory to avoid polluting the sources:
mkdir build
cd build
Open a Native Tools for your compiler, cd to the build
directory you've created before,
and run the following
cmake -G "NMake Makefiles" ..
nmake
Once this is done, you can run the program with
cpp_chess.exe
Open a terminal, cd to the build
directory you've created before, and run the following:
cmake ..
make
Once this is done, you can run the programm with
./cpp_chess