imadr / blaz

3D engine with no dependencies

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

🔥 blaz

Building

  • Install CMake >= 3.12
  • git clone https://github.com/imadr/blaz.git
  • cd blaz
  • mkdir build && cd build
  • cmake .. to generate the build files
  • cmake --build . to run the build or use the generated visual studio project file/makefile to build You can also use cmake-gui

Building for web

  • Install emscripten
  • emsdk_env.bat or emsdk_env.sh
  • mkdir build_wasm && cd build_wasm
  • emcmake cmake ..
  • cmake --build .
  • To build a specific sample cmake --build . --target "01-hellotriangle"

Samples


01-triangle

02-cubes

03-pbr

04-physics

About

3D engine with no dependencies

License:GNU General Public License v3.0


Languages

Language:C++ 98.6%Language:CMake 1.4%