mirror of
https://github.com/wez/wezterm.git
synced 2024-11-27 12:23:46 +03:00
143 lines
3.9 KiB
Rust
143 lines
3.9 KiB
Rust
use std::env;
|
|
use std::path::{Path, PathBuf};
|
|
|
|
fn harfbuzz() {
|
|
use std::fs;
|
|
|
|
if !Path::new("harfbuzz/.git").exists() {
|
|
git_submodule_update();
|
|
}
|
|
|
|
let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap());
|
|
|
|
let mut cfg = cc::Build::new();
|
|
cfg.warnings(false);
|
|
cfg.cpp(false);
|
|
cfg.flag_if_supported("-fno-rtti");
|
|
cfg.flag_if_supported("-fno-exceptions");
|
|
cfg.flag_if_supported("-fno-threadsafe-statics");
|
|
cfg.flag_if_supported("-std=c++11");
|
|
|
|
let build_dir = out_dir.join("harfbuzz-build");
|
|
fs::create_dir_all(&build_dir).unwrap();
|
|
cfg.out_dir(&build_dir);
|
|
|
|
let target = env::var("TARGET").unwrap();
|
|
|
|
for f in [
|
|
"hb-aat-layout.cc",
|
|
"hb-aat-map.cc",
|
|
"hb-blob.cc",
|
|
"hb-buffer-serialize.cc",
|
|
"hb-buffer.cc",
|
|
"hb-common.cc",
|
|
"hb-face.cc",
|
|
"hb-fallback-shape.cc",
|
|
"hb-font.cc",
|
|
"hb-ft.cc",
|
|
// "hb-graphite2.cc",
|
|
// "hb-glib.cc",
|
|
// "hb-gobject-structs.cc",
|
|
// "hb-icu.cc",
|
|
"hb-map.cc",
|
|
"hb-ot-cff1-table.cc",
|
|
"hb-ot-cff2-table.cc",
|
|
"hb-ot-color.cc",
|
|
"hb-ot-face.cc",
|
|
"hb-ot-font.cc",
|
|
"hb-ot-layout.cc",
|
|
"hb-ot-map.cc",
|
|
"hb-ot-math.cc",
|
|
"hb-ot-name-language.cc",
|
|
"hb-ot-name.cc",
|
|
"hb-ot-shape-complex-arabic.cc",
|
|
"hb-ot-shape-complex-default.cc",
|
|
"hb-ot-shape-complex-hangul.cc",
|
|
"hb-ot-shape-complex-hebrew.cc",
|
|
"hb-ot-shape-complex-indic-table.cc",
|
|
"hb-ot-shape-complex-indic.cc",
|
|
"hb-ot-shape-complex-khmer.cc",
|
|
"hb-ot-shape-complex-myanmar.cc",
|
|
"hb-ot-shape-complex-thai.cc",
|
|
"hb-ot-shape-complex-use-table.cc",
|
|
"hb-ot-shape-complex-use.cc",
|
|
"hb-ot-shape-complex-vowel-constraints.cc",
|
|
"hb-ot-shape-fallback.cc",
|
|
"hb-ot-shape-normalize.cc",
|
|
"hb-ot-shape.cc",
|
|
"hb-ot-tag.cc",
|
|
"hb-ot-var.cc",
|
|
"hb-set.cc",
|
|
"hb-shape-plan.cc",
|
|
"hb-shape.cc",
|
|
"hb-shaper.cc",
|
|
"hb-static.cc",
|
|
"hb-subset-cff-common.cc",
|
|
"hb-subset-cff1.cc",
|
|
"hb-subset-cff2.cc",
|
|
"hb-subset-glyf.cc",
|
|
"hb-subset-input.cc",
|
|
"hb-subset-plan.cc",
|
|
"hb-subset.cc",
|
|
"hb-ucdn.cc",
|
|
"hb-unicode.cc",
|
|
// "hb-warning.cc",
|
|
"hb-ucdn/ucdn.c",
|
|
]
|
|
.iter()
|
|
{
|
|
cfg.file(format!("harfbuzz/src/{}", f));
|
|
}
|
|
|
|
cfg.define("HAVE_FALLBACK", None);
|
|
cfg.define("HAVE_UCDN", None);
|
|
cfg.include("harfbuzz/src/hb-ucdn");
|
|
|
|
if !target.contains("windows") {
|
|
cfg.define("HAVE_UNISTD_H", None);
|
|
cfg.define("HAVE_SYS_MMAN_H", None);
|
|
}
|
|
|
|
// We know that these are present in our vendored freetype
|
|
cfg.define("HAVE_FREETYPE", Some("1"));
|
|
cfg.define("HAVE_FT_Get_Var_Blend_Coordinates", Some("1"));
|
|
cfg.define("HAVE_FT_Set_Var_Blend_Coordinates", Some("1"));
|
|
cfg.define("HAVE_FT_Done_MM_Var", Some("1"));
|
|
|
|
if target.contains("darwin") {
|
|
cfg.define("HAVE_CORETEXT", None);
|
|
cfg.file("harfbuzz/src/hb-coretext.cc");
|
|
}
|
|
|
|
if target.contains("windows") {
|
|
cfg.define("HAVE_DIRECTWRITE", None);
|
|
cfg.file("harfbuzz/src/hb-directwrite.cc");
|
|
println!("cargo:rustc-link-lib=dwrite");
|
|
|
|
cfg.define("HAVE_UNISCRIBE", None);
|
|
cfg.file("harfbuzz/src/hb-uniscribe.cc");
|
|
println!("cargo:rustc-link-lib=usp10");
|
|
|
|
println!("cargo:rustc-link-lib=rpcrt4");
|
|
}
|
|
|
|
// Import the include dirs exported from deps/freetype/build.rs
|
|
for inc in std::env::var("DEP_FREETYPE_INCLUDE").unwrap().split(";") {
|
|
cfg.include(inc);
|
|
}
|
|
|
|
cfg.compile("harfbuzz");
|
|
}
|
|
|
|
fn git_submodule_update() {
|
|
let _ = std::process::Command::new("git")
|
|
.args(&["submodule", "update", "--init"])
|
|
.status();
|
|
}
|
|
|
|
fn main() {
|
|
harfbuzz();
|
|
let out_dir = env::var("OUT_DIR").unwrap();
|
|
println!("cargo:outdir={}", out_dir);
|
|
}
|