No description
doc | ||
include | ||
resources/fonts/ttf | ||
src | ||
.clang-format | ||
.gitignore | ||
.woodpecker.yml | ||
CMakeLists.txt | ||
Makefile | ||
README.md |
Project (Need A Name)
Description
Implementation of 3 games that can be played on a checkerboard:
- Butin or
Incognito - Dames or
Gounki - Bulltricker or
Safari
This project is programmed in C++ 11 and uses the SFML library for graphics, to build the project you can use the Makefile if you already have SFML installed or use CMake to build the project and install SFML.
SFML stands for Simple and Fast Multimedia Library (version 2.6.1)
PS: You can find the git repository of the project here
Usage
- Build the project (with Makefile)
make build -j 15 # or make all -j 15
- Build the project (with CMake)
mkdir build
cmake -S . -B build
cmake --build build
- Run the project
./build/main # with Makefile
./build/loav_project # with CMake