17 lines
819 B
Rust
17 lines
819 B
Rust
fn main() {
|
|
// Tell Cargo to re-run this build script if the calendar/rhai.rs file changes
|
|
println!("cargo:rerun-if-changed=../heromodels/src/models/calendar/rhai.rs");
|
|
|
|
// Tell Cargo to re-run this build script if the flow/rhai.rs file changes
|
|
println!("cargo:rerun-if-changed=../heromodels/src/models/flow/rhai.rs");
|
|
|
|
// Tell Cargo to re-run this build script if the legal/rhai.rs file changes
|
|
println!("cargo:rerun-if-changed=../heromodels/src/models/legal/rhai.rs");
|
|
|
|
// Tell Cargo to re-run this build script if the projects/rhai.rs file changes
|
|
println!("cargo:rerun-if-changed=../heromodels/src/models/projects/rhai.rs");
|
|
|
|
// Tell Cargo to re-run this build script if the biz/rhai.rs file changes
|
|
println!("cargo:rerun-if-changed=../heromodels/src/models/biz/rhai.rs");
|
|
}
|