mirror of
https://github.com/timvisee/ffsend.git
synced 2025-10-03 09:39:15 +02:00
8 lines
269 B
Rust
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");
|
|
}
|
|
}
|