Skip to content

tomos-development/The-Last-Heir

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LifePath The Game


Description

LifePath is an open-source card game. It uses the OpengGL Tomos Engine.

More information will be added soon.

Development

Create a file structure like this:

RootDirectory/
├── LifePath/ (This repository)
├── TomosEngine/ (Tomos Engine repository)
├── CMakeLists.txt (refer to the CMakeLists.txt below)

CMakeLists.txt

cmake_minimum_required(VERSION 3.28)
project(LifePath)

set(CMAKE_CXX_STANDARD 23)

add_subdirectory(TomosEngine)
add_subdirectory(LifePath)

Building

Building

in the root directory of the project, run the following commands:

mkdir build
cd build
Debug
cmake -DCMAKE_BUILD_TYPE=Debug ..
make
Release
cmake -DCMAKE_BUILD_TYPE=Release ..
make

About

The game

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors