ffsend/build.rs
timvisee 9ea0d3ba89
Fix some issues as noted by @lilyball
Co-authored-by: Lily Ballard <lily@sb.org>
2019-03-26 13:05:55 +01:00

8 lines
269 B
Rust

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");
}
}