Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 621 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 621 Bytes

Connect4 Bot

This is a project I made to help me learn C++. It's a relatively simple project that uses CMake as a build system.

Building

To build the project, follow these steps:

  1. Navigate to the project directory in your terminal.
  2. Run the following command to generate the build files:
cmake -S . -B build

This will create a build directory in your project folder where all the build files are stored.

  1. After the build files have been generated, you can build the project with:
cmake --build build
  1. When the project is build, you can run it:
./build/Connect4