1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
extern crate cmake;
extern crate pkg_config;
use cmake::Config;
use std::env;
fn main() {
let target = env::var("TARGET").unwrap();
if !target.contains("android") &&
pkg_config::Config::new().atleast_version("18.5.12").find("freetype2").is_ok() {
return
}
let mut config = Config::new("freetype2");
if let Ok(s) = env::var("FREETYPE_CMAKE_GENERATOR") {
config.generator(s);
}
let dst = config
.define("WITH_BZip2", "OFF")
.define("WITH_HarfBuzz", "OFF")
.define("WITH_PNG", "OFF")
.define("WITH_ZLIB", "OFF")
.profile("Release")
.build();
let out_dir = env::var("OUT_DIR").unwrap();
println!("cargo:rustc-link-search=native={}/lib", dst.display());
println!("cargo:rustc-link-lib=dylib=freetype");
println!("cargo:outdir={}", out_dir);
}
|