yarf-sys 0.0.2

An yet another rust-fuse, focuses on just only libfuse highlevel API binding ; sys crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
extern crate pkg_config;

#[cfg(not(target_os = "macos"))]
static LIBFUSE_NAME: &str = "fuse";

#[cfg(target_os = "macos")]
static LIBFUSE_NAME: &str = "osxfuse";

fn main() {
    pkg_config::Config::new()
        .atleast_version("2.6.0")
        .probe(LIBFUSE_NAME)
        .unwrap();
}