squeezers/build.rs
Micha Glave 33155c6ce2 Adding a transpiled version of [Ralph Irving's squeezelite](https://github.com/ralph-irving/squeezelite).
Transpiled by c2rust:

`c2rust transpile --binary main compile_commands.json -r --reduce-type-annotations -o ../squeezers -- -I/usr/lib/clang/9.0.1/include`
2020-04-01 13:55:11 +02:00

14 lines
270 B
Rust

#[cfg(all(unix, not(target_os = "macos")))]
fn main() {
// add unix dependencies below
// println!("cargo:rustc-flags=-l readline");
}
#[cfg(target_os = "macos")]
fn main() {
// add macos dependencies below
// println!("cargo:rustc-flags=-l edit");
}