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_chessCreate a build directory to avoid polluting the sources:
mkdir build
cd buildOpen a Native Tools for your compiler, cd to the build directory you've created before,
and run the following
cmake -G "NMake Makefiles" ..
nmakeOnce this is done, you can run the program with
cpp_chess.exeOpen a terminal, cd to the build directory you've created before, and run the following:
cmake ..
makeOnce this is done, you can run the programm with
./cpp_chess