mirror of
https://github.com/bybrooklyn/alchemist.git
synced 2026-04-18 01:43:34 -04:00
25 lines
625 B
Rust
25 lines
625 B
Rust
use std::env;
|
|
use std::fs;
|
|
use std::path::Path;
|
|
|
|
fn main() {
|
|
println!("cargo:rerun-if-changed=web/dist");
|
|
println!("cargo:rerun-if-env-changed=ALCHEMIST_VERSION");
|
|
|
|
if let Some(version) = env::var_os("ALCHEMIST_VERSION") {
|
|
println!(
|
|
"cargo:rustc-env=ALCHEMIST_BUILD_VERSION={}",
|
|
version.to_string_lossy()
|
|
);
|
|
}
|
|
|
|
if env::var_os("CARGO_FEATURE_EMBED_WEB").is_none() {
|
|
return;
|
|
}
|
|
|
|
let dist_dir = Path::new("web/dist");
|
|
if let Err(err) = fs::create_dir_all(dist_dir) {
|
|
panic!("failed to create web/dist for embed-web feature: {err}");
|
|
}
|
|
}
|