Skip to content

Commit

Permalink
fix(demo): add build.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
andelf committed Jul 10, 2024
1 parent 4a07f87 commit 5243055
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions examples/hpm5300evk/build.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
fn main() {
println!("cargo:rerun-if-changed=memory.x");
println!("cargo:rerun-if-changed=link-fixed.x");
}
4 changes: 4 additions & 0 deletions examples/hpm6300evk/build.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
fn main() {
println!("rerun-if-changed=memory.x");
println!("cargo:rerun-if-changed=link-fixed.x");
}
4 changes: 4 additions & 0 deletions examples/hpm6750evkmini/build.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
fn main() {
println!("rerun-if-changed=memory.x");
println!("cargo:rerun-if-changed=link-fixed.x");
}
4 changes: 4 additions & 0 deletions examples/hpm6e00evk/build.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
fn main() {
println!("rerun-if-changed=memory.x");
println!("cargo:rerun-if-changed=link-fixed.x");
}

0 comments on commit 5243055

Please sign in to comment.