volk 0.1.5

Rust bindings for volk
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn main() {
    if std::env::var("DOCS_RS").is_ok() {
        //println!("cargo:rustc-cfg=stub_volk");
        return;
    }
    // Ensures Cargo links against libvolk and picks up the right search paths.
    pkg_config::Config::new()
        .atleast_version("2.0") // adjust if needed
        .probe("volk")
        .expect("Could not find VOLK via pkg-config");
}