Fix main binary being rebuilt when nothing has changed

This commit is contained in:
132ikl 2024-07-10 17:56:09 -04:00
parent b68c7cf3fa
commit 22e5908e7c

View File

@ -14,5 +14,5 @@ fn main() {
// Tango uses dynamic linking, to allow us to dynamically change between two bench suit at runtime.
// This is currently not supported on non nightly rust, on windows.
println!("cargo:rustc-link-arg-benches=-rdynamic");
println!("cargo:rerun-if-changed=build.rs");
println!("cargo:rerun-if-changed=scripts/build.rs");
}