build.rs 188 B

1234567
  1. use pkg_config::probe_library;
  2. fn main() {
  3. if probe_library("libout123").is_ok() && probe_library("libmpg123").is_ok() {
  4. println!("cargo:rustc-cfg=feature=\"play\"");
  5. }
  6. }