LifePath is an open-source card game. It uses the OpengGL Tomos Engine.
More information will be added soon.
Create a file structure like this:
RootDirectory/
├── LifePath/ (This repository)
├── TomosEngine/ (Tomos Engine repository)
├── CMakeLists.txt (refer to the CMakeLists.txt below)
cmake_minimum_required(VERSION 3.28)
project(LifePath)
set(CMAKE_CXX_STANDARD 23)
add_subdirectory(TomosEngine)
add_subdirectory(LifePath)in the root directory of the project, run the following commands:
mkdir build
cd buildcmake -DCMAKE_BUILD_TYPE=Debug ..
makecmake -DCMAKE_BUILD_TYPE=Release ..
make