A very simple Tic-Tac-Toe game made in C++17 and SFML, as part of learning the language. The coding aspect is done in Procedural Programming, instead of OOP because I haven't dived deep into that yet.
Left mouse click to place your symbol/character.
Requirements: Cmake
Tested on cmake 3.31.6 with Ninja Generator.
Warning: Latest Cmake version will give errors when fetching freetype. This is fixed by rolling back in an older version.
-
Clone the repo
git clone https://github.com/Lumminal/Tic_Tac_Toe -
Open your terminal in the cloned directory and run:
cmake -S . -B build
cmake --build build
The binary should be in the build/src directory
OR
Open your IDE of choice and build the project through the internal tools (e.g. CLion)


