Skip to content

Latest commit

 

History

History
81 lines (51 loc) · 1.92 KB

README.md

File metadata and controls

81 lines (51 loc) · 1.92 KB

Chess (with no additional features)

CI Build

Yup. It's just chess. No additional features. Just chess. I know what you're thinking. "Why would I want to play chess with no additional features?" Well, I don't know. Maybe you're a purist. Maybe you're a minimalist. Maybe you like the idea of playing chess with no additional features. Maybe you're just bored.

The real question you should be asking yourself is "Why do I have so much time on my hands that I'm reading the README for a chess game with no additional features?" To which I would respond, "I don't know. Why do you?"

Table of Contents

About

This is a simple chess game with no additional features. It's written in C++ and uses the SFML library for graphics. The game is built using the CMake build system.

Getting Started

To get a local copy up and running follow these simple steps.

Prerequisites

  • CMake

Installation

  1. Clone the repo
   git clone https://github.com/brandon-kong/chess.git
  1. Build the project

    On Windows:

cd chess
mkdir build
cd build
cmake -G "Visual Studio 16 2019" ..
cmake --build . --config Release
On Linux/Mac:
cd chess
mkdir build
cd build
cmake ..
make
  1. Run the game
./chess
  1. Lose to the computer

Note: The game is currently only playable in single-player mode. Multiplayer mode is not yet supported.

License

Distributed under the MIT License. See LICENSE for more information.