Whoso unfetters the fiend reaps the benefit.
root
├──bin // build output and assets
├──build // intermediate files
├──doc // documentation
├──include // public headers
├──lib // libraries
├──src // project source code
├──test // unit tests
└──vendor // third-party
Clone the repository
$ git clone --recursive https://github.com/WindOfXaos/COVET
$ cd COVET
Build GLFW
$ make GLFW
Build source code
$ make
Run project
$ cd bin
$ ./COVET
Unit tests
$ make test
Clean
$ make clean