2025-12-03 18:42:22 -03:00
|
|
|
fn main() {
|
2026-02-07 16:28:36 +00:00
|
|
|
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());
|
|
|
|
|
}
|