No description
Find a file
2024-01-12 08:32:30 +01:00
doc Dames start and forgotten report 2024-01-12 08:32:30 +01:00
include Dames start 2024-01-12 08:29:00 +01:00
resources/fonts/ttf Add the Common class 2023-12-03 14:48:33 +01:00
src Dames start 2024-01-12 08:29:00 +01:00
.clang-format Add the .clang-format file 2023-11-21 13:54:26 +01:00
.gitignore Update report and add soutenance.tikz file 2024-01-12 08:02:13 +01:00
.woodpecker.yml Update report and add soutenance.tikz file 2024-01-12 08:02:13 +01:00
CMakeLists.txt Update README.md and Makefile 2023-12-24 21:01:22 +01:00
Makefile Update report and add soutenance.tikz file 2024-01-12 08:02:13 +01:00
README.md Update README.md 2024-01-12 08:29:53 +01:00

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

  1. Build the project (with Makefile)
make build -j 15 # or make all -j 15
  1. Build the project (with CMake)
mkdir build
cmake -S . -B build
cmake --build build
  1. Run the project
./build/main # with Makefile
./build/loav_project # with CMake