Glance is a boilerplate OpenGL project structure that I am developing for personal projects and want anybody to freely use for their purposes. This project is heavily inspired by Glitter, so make sure to check out this project as well!
This section is intended to list all external dependencies needed for building and running Glance that are not included as submodules with this project. As the project progresses, additional operating systems might get added here. In general, the goal is to have as little dependencies as possible so this project is easy to setup.
sudo apt install cmake xorg-devGlance currently supports building on Linux via cmake. From the project root run the following:
# Create build directory and changedir into it
mkdir build
cd build
# Generate makefile
cmake ..
# Build Glance and dependencies
make