ffsend/build.rs

9 lines
269 B
Rust
Raw Normal View History

fn main() {
// xclip and xsel paths are inserted at compile time on Linux
#[cfg(all(feature = "clipboard", target_os = "linux"))]
{
println!("cargo:rerun-if-env-changed=XCLIP_PATH");
println!("cargo:rerun-if-env-changed=XSEL_PATH");
}
}