Home

Awesome

C++ OpenGL Freetype & HarfBuzz text drawing

Simple library to draw text in OpenGL, in alpha stage. Greatly inspired by other https://github.com/branan/gltext.

License

Copyright (c) 2014 Sébastien Rombauts (sebastien.rombauts@gmail.com)

Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt or copy at http://opensource.org/licenses/MIT)

Getting and Building the dependencies

  1. Get the development libraries under Linux :
sudo apt-get install libxrandr-dev libxi-dev libgl1-mesa-dev mesa-common-dev

Building the library

On Linux :

cmake .
cmake --build .     # of simply "make"

On Windows :

cmake . -G "Visual Studio 12 2013"
cmake --build .     # or simply [open and build solution]