项目作者: Jackojc

项目描述 :
A minimal C++ engine that handles asset loading/management, state transition/management and a basic, yet efficient ECS implementation.
高级语言: C++
项目地址: git://github.com/Jackojc/Lithe.git
创建时间: 2018-01-04T14:56:53Z
项目社区:https://github.com/Jackojc/Lithe

开源协议:GNU General Public License v2.0

下载


Lithe

A minimal C++ engine that handles asset loading/management, state transition/management and a basic, yet efficient ECS implementation.

Prerequisites

You will need the following programs installed in order to compile & run the project:

Note: These are the versions I used so it’s possible you may be able to proceed on different versions.

  • CMake >= 2.8
  • GCC >= 7.2.1
  • SDL >= 2.0

Compilation

In order to compile the project, perform the following steps:

  • Create a directory called build and cd into it.
  • Run the command cmake .. to create the Makefile.
  • Then, run make whenever you wish to recompile the program.
  • To launch the produced executable, run ./lithe after compilation.