mirror of
https://github.com/wez/wezterm.git
synced 2024-11-27 12:23:46 +03:00
83 lines
2.4 KiB
Rust
83 lines
2.4 KiB
Rust
use cmake::Config;
|
|
use fs_extra;
|
|
use std::env;
|
|
use std::path::{Path, PathBuf};
|
|
|
|
fn zlib() {
|
|
// The out-of-source build for zlib unfortunately modifies some of
|
|
// the sources, leaving the repo with a dirty status. Let's take
|
|
// a copy of the sources so that we don't trigger this.
|
|
let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap());
|
|
|
|
let src_dir = out_dir.join("zlib-src");
|
|
if src_dir.exists() {
|
|
fs_extra::remove_items(&vec![&src_dir]).expect("failed to remove zlib-src");
|
|
}
|
|
std::fs::create_dir(&src_dir).expect("failed to create zlib-src");
|
|
fs_extra::copy_items(&vec!["zlib"], &src_dir, &fs_extra::dir::CopyOptions::new())
|
|
.expect("failed to copy zlib to zlib-src");
|
|
|
|
let mut config = Config::new(src_dir.join("zlib"));
|
|
let dst = config.profile("Release").build();
|
|
emit_libdirs(&dst);
|
|
if cfg!(unix) {
|
|
println!("cargo:rustc-link-lib=static=z");
|
|
} else {
|
|
println!("cargo:rustc-link-lib=static=zlibstatic");
|
|
}
|
|
}
|
|
|
|
fn emit_libdirs(p: &Path) {
|
|
for d in &["lib64", "lib"] {
|
|
let libdir = p.join(d);
|
|
if libdir.is_dir() {
|
|
println!("cargo:rustc-link-search=native={}", libdir.display());
|
|
}
|
|
}
|
|
}
|
|
|
|
fn libpath(p: &Path, name: &str) -> PathBuf {
|
|
for d in &["lib64", "lib"] {
|
|
for n in &[format!("lib{}.a", name), format!("{}.lib", name)] {
|
|
let libname = p.join(d).join(n);
|
|
if libname.is_file() {
|
|
return libname;
|
|
}
|
|
}
|
|
}
|
|
panic!("did not find {} in {}", name, p.display());
|
|
}
|
|
|
|
fn libpng() {
|
|
let mut config = Config::new("libpng");
|
|
let dst = config.profile("Release").build();
|
|
emit_libdirs(&dst);
|
|
if cfg!(unix) {
|
|
println!("cargo:rustc-link-lib=static=png");
|
|
} else {
|
|
println!("cargo:rustc-link-lib=static=libpng16_static");
|
|
}
|
|
}
|
|
|
|
fn freetype() {
|
|
let mut config = Config::new("freetype2");
|
|
let dst = config
|
|
.define("FT_WITH_PNG", "ON")
|
|
.define("CMAKE_DISABLE_FIND_PACKAGE_BZip2", "TRUE")
|
|
.profile("Release")
|
|
.build();
|
|
emit_libdirs(&dst);
|
|
println!("cargo:rustc-link-lib=static=freetype");
|
|
emit_libdirs(Path::new("/usr"));
|
|
println!("cargo:include={}/include/freetype2", dst.display());
|
|
println!("cargo:lib={}", libpath(&dst, "freetype").display());
|
|
}
|
|
|
|
fn main() {
|
|
zlib();
|
|
libpng();
|
|
freetype();
|
|
let out_dir = env::var("OUT_DIR").unwrap();
|
|
println!("cargo:outdir={}", out_dir);
|
|
}
|