#[cfg(windows)]
use embed_manifest::{embed_manifest, new_manifest};
fn main() {
let target = std::env::var("TARGET").unwrap_or_default();
if target.contains("wasm32") {
return;
}
#[cfg(windows)]
{
embed_manifest(new_manifest("Braillify.Braillify")).expect("unable to embed manifest file");
}
}