ftgl

Render TrueType fonts in OpenGL applications using FreeType.

brewmacoslinux
Try with needOr install directly
Source

About

Freetype / OpenGL bridge

Examples

check if ftgl library is installed and available$ brew list ftgl
view ftgl library files and header locations$ brew --prefix ftgl
see detailed information about ftgl package$ brew info ftgl
compile c++ program that uses ftgl for text rendering$ g++ -I$(brew --prefix ftgl)/include myapp.cpp -L$(brew --prefix ftgl)/lib -lftgl -o myapp
link ftgl in cmake project for opengl text$ find_package(FTGL REQUIRED) in CMakeLists.txt