botui/build.rs

5 lines
217 B
Rust
Raw Normal View History

2025-12-03 18:42:22 -03:00
fn main() {
let manifest_dir = std::env::var("CARGO_MANIFEST_DIR").unwrap();
let ui_path = std::path::Path::new(&manifest_dir).join("ui");
println!("cargo:rustc-env=BOTUI_UI_PATH={}", ui_path.display());
}