after-effects-sys 0.2.1

Auto-generated After Effects® bindings
Documentation
// build.rs
extern crate bindgen;

use std::{
    env,
    path::{Path, PathBuf},
};

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

    println!("cargo::rustc-check-cfg=cfg(builtin_bindings)");
    if env::var("AESDK_ROOT").is_err() {
        println!("cargo:rustc-cfg=builtin_bindings");
        return;
    }

    let ae_sdk_path = &env::var("AESDK_ROOT").expect(
        "AESDK_ROOT environment variable not set – cannot find AfterEffcts SDK.\n\
        Please set AESDK_ROOT to the root folder of your AfterEffects SDK\n\
        installation (this folder contains the Examples folder & the SDK\n\
        Guide PDF).",
    );

    // Write the bindings to the $OUT_DIR/bindings.rs file.
    let out_path = PathBuf::from(env::var("OUT_DIR").unwrap());

    let mut ae_bindings = bindgen::Builder::default()
        .header("wrapper.hpp")
        //.derive_debug(true)
        .allowlist_item("A_.*")
        .allowlist_var("A_.*")
        .allowlist_item("AEGP.*")
        .allowlist_var("AEGP.*")
        .allowlist_item("kAEGP.*")
        .allowlist_item("AEIO_.*")
        .allowlist_item("DRAWBOT_.*")
        .allowlist_item("kDRAWBOT_.*")
        .allowlist_var("kDRAWBOT_.*")
        .allowlist_item("FIEL_.*")
        .allowlist_item("PF.*")
        .allowlist_var("PF.*")
        .allowlist_item("kPF.*")
        .allowlist_item("kPR.*")
        .allowlist_item("kPr.*")
        .allowlist_item("PR_.*")
        .allowlist_item("Pr.*")
        .allowlist_item("kSP.*")
        .allowlist_var("suiteError.*")
        .layout_tests(false)
        //.clang_arg("-include stdint.h")
        .clang_arg(format!(
            "-I{}",
            Path::new(ae_sdk_path)
                .join("Examples")
                .join("Headers")
                .display()
        ))
        .clang_arg(format!(
            "-I{}",
            Path::new(ae_sdk_path)
                .join("Examples")
                .join("Headers")
                .join("SP")
                .display()
        ))
        .clang_arg(format!(
            "-I{}",
            Path::new(ae_sdk_path)
                .join("Examples")
                .join("Util")
                .display()
        ));
    if cfg!(target_os = "windows") {
        ae_bindings = ae_bindings.clang_arg("-D_WINDOWS");
    }

    if cfg!(feature = "artisan-2-api") {
        ae_bindings = ae_bindings.clang_arg("--define-macro=ARTISAN_2_API");
    }

    if cfg!(target_os = "macos") {
        ae_bindings = ae_bindings
            //.clang_arg("-I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreFoundation.framework/Versions/A/Headers/")
            //.clang_arg("-I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Headers/")
            //.clang_arg("-I/Library/Developer/CommandLineTools/usr/include/c++/v1/")
            .clang_arg(
                // FIXME: This will bitrot when clang updates or on really old macos instances
                "-I/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdint.h",
            )
            .clang_arg(
                "-F/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/",
            );
    }

    ae_bindings
        .generate()
        .expect("Unable to generate AfterEffects bindings")
        .write_to_file(out_path.join("bindings.rs"))
        .expect("Couldn't write AfterEffects bindings!");
}