Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 1.12 KB

README.md

File metadata and controls

40 lines (27 loc) · 1.12 KB

PSITriangle 3D Engine core libraries

These are the core parts of my custom 3D engine. See psiengine_public/README.MD for more information.

Software needed for building.

PSIEngine uses the following open source libraries and software:

Needed to compile:

Library dependencies installed via Conan:

Compiling & Running

Clone the repository, run:

git submodule update --init --recursive To pull in the freetype-gl headers.

Then compile the core engine library:

mkdir build && cd build
conan install ../
cmake -G Ninja ../ (or cmake -g "Unix Makefiles" ../)
ninja (or make)

This will build the core library under build/lib.