freetype-sys 0.3.1

Low level binding for FreeType font library
Documentation
1
2
3
4
5
6
7
8
9
10
extern crate pkg_config;

fn main() {
    match pkg_config::find_library("freetype2") {
        Ok(_) => return,
        Err(_) => {
            println!("cargo:rustc-link-lib=dylib=freetype");
        }
    }
}