Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 878 Bytes

README.md

File metadata and controls

30 lines (22 loc) · 878 Bytes

chess_console

This is a simple chess game, written in C++, that runs in the console.

For more information, please read the article.

Building Guide

You may want to clone this repo.

  • Linux / macOS
$ cd chess_console/source
$ mkdir build
$ cd build
$ cmake ..
$ make
$ ./chess
  • Windows
    • ensure you have Visual Studio installed on your system
    • open chess_console/source/Chess_console.sln
    • you may hit ctrl+shift+b or click the build button from the menu bar to compile the solution
    • press the F5 key to run the game

Changelog

  • May, 2018 - original version
  • June, 2024 - fixes for issues 2 and 4, created unit tests and general improvements