pros-sys 0.8.0

EFI for the PROS rust bindings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use cfg_if::cfg_if;

fn main() {
    cfg_if! {
        if #[cfg(not(feature = "no-link"))] {
            let manifest_dir = std::env::var("CARGO_MANIFEST_DIR").unwrap();

            #[cfg(not(feature = "no-link"))]
            println!("cargo:rustc-link-search=native={manifest_dir}/link");
        }
    }
}