mirror of
https://github.com/timvisee/ffsend.git
synced 2025-10-03 01:29:16 +02:00
8 lines
241 B
Rust
8 lines
241 B
Rust
fn main() {
|
|
// xclip and xsel paths are inserted at compile time on Linux
|
|
#[cfg(target_os = "linux")]
|
|
{
|
|
println!("cargo:rerun-if-env-changed=XCLIP_PATH");
|
|
println!("cargo:rerun-if-env-changed=XSEL_PATH");
|
|
}
|
|
}
|