braillify 1.0.11

Rust 기반 크로스플랫폼 한국어 점역 라이브러리
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(windows)]
use embed_manifest::{embed_manifest, new_manifest};

fn main() {
    // wasm 타겟으로 빌드할 때는 build.rs를 건너뜀
    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");
    }
}