mirror of
https://github.com/rust-embedded/rust-raspberrypi-OS-tutorials.git
synced 2024-11-11 07:10:59 +00:00
9 lines
202 B
Rust
9 lines
202 B
Rust
use std::env;
|
|
|
|
fn main() {
|
|
let linker_file = env::var("LINKER_FILE").unwrap_or_default();
|
|
|
|
println!("cargo:rerun-if-changed={}", linker_file);
|
|
println!("cargo:rerun-if-changed=build.rs");
|
|
}
|