Dauphine203 / cpp_chess

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build instructions

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

Windows

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

Linux / OSX

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

About

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:C++ 96.8%Language:CMake 3.2%