libpanel-sys 0.1.0-alpha-2

FFI bindings for GNOME libpanel
1
2
3
4
5
6
7
8
9
10
#[cfg(feature = "dox")]
fn main() {} // prevent linking libraries to avoid documentation failure

#[cfg(not(feature = "dox"))]
fn main() {
    if let Err(s) = system_deps::Config::new().probe() {
        println!("cargo:warning={}", s);
        std::process::exit(1);
    }
}