Server-Client console application for playing chess over Unix sockets.
This project contains both a client and a server component. The project is built using CMake.
- CMake (version 3.10 or higher)
- A C++ compiler (e.g., GCC, Clang, MSVC)
Follow these steps to build the project:
If you haven’t already cloned the repository, you can do so with:
git https://github.com/K-Triple-A/ChessOverSockets
cd ChessOverSockets
mkdir build
cd build
cmake ..
make
# make client (client only)
# make server (server only)
./server
./client