We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76bb4dd commit 58a4fcfCopy full SHA for 58a4fcf
crates/fluidsim/build.rs
@@ -1,7 +1,10 @@
1
use spirv_builder::{MetadataPrintout, SpirvBuilder};
2
3
fn main() -> Result<(), Box<dyn std::error::Error>> {
4
- println!("cargo:rerun-if-changed=../physics/**/*");
+ println!(
5
+ "cargo:rerun-if-changed={}/../physics/**/*",
6
+ env!("CARGO_MANIFEST_DIR")
7
+ );
8
println!("cargo:rerun-if-changed=build.rs");
9
print!("");
10
0 commit comments