Inferno Game Engine
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Riyyi ed935e50cd CMake: Automatically build examples during standalone compilation 2 years ago
assets Move defines below includes 4 years ago
example CMake: Restructure main file, move example to its own directory 2 years ago
inferno Initialize raw pointers as nullptr 4 years ago
script Add git pre-commit hooks and install script 3 years ago
.clang-format Add .clang-format 4 years ago
.gitignore Add clangd .cache to .gitignore 4 years ago
.gitmodules Re-add stb dependency in the new location 4 years ago
CMakeLists.txt CMake: Automatically build examples during standalone compilation 2 years ago
LICENSE Release source under MIT license 4 years ago
README.org Add sol3 dependency 4 years ago
compile_commands.json Add needed LSP requirements 5 years ago
launch.json Add debugging configuration 4 years ago

README.org

Inferno

Inferno game engine project.

Download

Clone

  $ git clone https://gitlab.com/riyyi/inferno
  $ cd inferno
  $ git submodule init
  $ git submodule update

Or

  $ git clone --recursive https://gitlab.com/riyyi/inferno

Update

  $ git pull
  $ git submodule update --recursive

Build instructions

  $ mkdir build
  $ cd build
  $ cmake .. && make