rhai/build.rs

27 lines
850 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.
2022-10-25 14:53:27 +02:00
println!("cargo:rerun-if-changed=build.template");
println!("cargo:rerun-if-env-changed=RHAI_AHASH_SEED");
2022-11-01 13:25:45 +01:00
let mut contents = String::new();
2022-11-01 13:25:45 +01:00
File::open("build.template")
.expect("cannot open `build.template`")
.read_to_string(&mut contents)
.expect("cannot read from `build.template`");
2022-11-01 13:25:45 +01:00
let seed = env::var("RHAI_AHASH_SEED").map_or_else(|_| "None".into(), |s| format!("Some({s})"));
contents = contents.replace("{{AHASH_SEED}}", &seed);
File::create("src/config/hashing_env.rs")
2022-11-01 13:25:45 +01:00
.expect("cannot create `config.rs`")
.write_all(contents.as_bytes())
.expect("cannot write to `config/hashing_env.rs`");
}