rhai/build.rs

27 lines
768 B
Rust
Raw Normal View History

2022-10-15 06:04:14 +02:00
use std::{
env,
fs::File,
io::{Read, Write},
};
fn main() {
// Tell Cargo that if the given environment variable changes, to rerun this build script.
println!("cargo:rerun-if-env-changed=RHAI_AHASH_SEED");
2022-10-15 06:04:14 +02:00
let mut contents = String::new();
2022-10-15 06:04:14 +02:00
File::open("build.template")
.expect("cannot open `build.template`")
.read_to_string(&mut contents)
.expect("cannot read from `build.template`");
let seed = env::var("RHAI_AHASH_SEED").map_or_else(|_| "None".into(), |s| format!("Some({s})"));
2022-10-15 06:04:14 +02:00
contents = contents.replace("{{AHASH_SEED}}", &seed);
2022-10-15 06:04:14 +02:00
File::create("src/config.rs")
.expect("cannot create `config.rs`")
.write(contents.as_bytes())
.expect("cannot write to `config.rs`");
}