freetype-sys Build Status

Low level bindings for the FreeType font library

For windows users

In order to easily set-up freetype:

```toml [target.i686-pc-windows-gnu.freetype] rustc-flags = "-L C:\Path\To\Freetype -l freetype-6:dylib" root = "C:\Path\To\Freetype"

[target.x86_64-pc-windows-gnu.freetype] rustc-flags = "-L C:\Path\To\Freetype -l freetype-6:dylib" root = "C:\Path\To\Freetype"

[target.i686-pc-windows-gnu.z] rustc-flags = "-L C:\Path\To\Zlib -l zlib1:dylib" root = "C:\Path\To\Zlib"

[target.x86_64-pc-windows-gnu.z] rustc-flags = "-L C:\Path\To\Zlib -l zlib1:dylib" root = "C:\Path\To\Zlib" ```

For more informations, check the official Cargo documentation.