jpegxl-sys 0.2.2

Rust wrapper for JPEG XL reference implementation
Documentation
use bindgen::builder;
use std::env;
use std::path::PathBuf;

fn main() {
    println!("cargo:rerun-if-changed=wrapper.h");

    #[cfg(not(feature = "without-threads"))]
    println!("cargo:rerun-if-changed=wrapper-threads.h");

    let include_dir = setup_jpegxl();
    let out_path = PathBuf::from(env::var("OUT_DIR").unwrap());
    let header = if cfg!(not(feature = "without-threads")) {
        "wrapper-threads.h"
    } else {
        "wrapper.h"
    };

    let bindings = builder()
        .header(header)
        .clang_arg(format!("-I{}", &include_dir))
        .blacklist_function("strtold") // Returned long double becomes u128
        .parse_callbacks(Box::new(bindgen::CargoCallbacks))
        .generate()
        .expect("Unable to generate bindings");
    bindings
        .write_to_file(out_path.join("bindings.rs"))
        .expect("Couldn't write bindings!");
}

#[cfg(not(any(feature = "without-build", feature = "docsrs")))]
fn setup_jpegxl() -> String {
    use cmake::Config;
    use std::process::Command;

    let source = format!("{}/jpeg-xl", env::var("OUT_DIR").unwrap());

    Command::new("git")
        .args(&[
            "clone",
            "--recursive",
            "https://gitlab.com/wg1/jpeg-xl",
            &source,
        ])
        .output()
        .expect("Sync submodules failed!");

    let prefix = Config::new(&source).build().display().to_string();

    let lib_path = format!("{}/lib", prefix);

    println!("cargo:rustc-link-lib=static=jxl");

    #[cfg(not(feature = "without-threads"))]
    println!("cargo:rustc-link-lib=static=jxl_threads");

    println!("cargo:rustc-link-lib=static=hwy");
    println!("cargo:rustc-link-search=native={}", lib_path);

    println!("cargo:rustc-link-lib=static=skcms");
    println!(
        "cargo:rustc-link-search=native={}/build/third_party",
        prefix
    );

    #[cfg(not(feature = "without-threads"))]
    println!("cargo:rustc-link-lib=c++"); // For threads implementation
                                          // Find a better way to handle multi-platform
                                          //     for now `bindgen` requires `llvm` anyway

    format!("{}/include", prefix)
}

#[cfg(feature = "docsrs")]
fn setup_jpegxl() -> String {
    String::from("include")
}

#[cfg(feature = "without-build")]
fn setup_jpegxl() -> String {
    let lib_path = env::var("DEP_JXL_LIB").expect("Library path is not set!");
    println!("cargo:rustc-link-lib=jxl");

    #[cfg(not(feature = "without-threads"))]
    println!("cargo:rustc-link-lib=jxl_threads");

    println!("cargo:rustc-link-search=native={}", lib_path);

    env::var("DEP_JXL_INCLUDE").expect("Include path is not set!")
}