0g-storage-node/common/contract-interface/build.rs
2024-08-27 18:08:10 +08:00

8 lines
229 B
Rust

fn main() {
if cfg!(not(feature = "dev")) {
println!("cargo:rerun-if-changed=../../storage-contracts-abis/");
} else {
println!("cargo:rerun-if-changed=../../0g-storage-contracts-dev/artifacts/");
}
}