lilv 0.2.2

Library for discovering and running LV2 plugins.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::env;

fn main() {
    if env::var("DOCS_RS") == Ok("1".to_string()) {
        return;
    }
    pkg_config::Config::new()
        .atleast_version("0.24.2")
        .probe("lilv-0")
        .expect("lilv-0 could not be found with pkg_config.");
    pkg_config::Config::new()
        .atleast_version("0.30.0")
        .probe("serd-0")
        .expect("serd-0 could not be found with pkg_config.");
}