mirror of
https://github.com/Universal-Debloater-Alliance/universal-android-debloater-next-generation.git
synced 2026-08-24 06:24:19 +02:00
9 lines
239 B
Rust
9 lines
239 B
Rust
use std::{env, error::Error};
|
|
|
|
fn main() -> Result<(), Box<dyn Error>> {
|
|
if env::var("CARGO_CFG_TARGET_FAMILY")? == "windows" {
|
|
embed_resource::compile("resources/assets/manifest.rc", embed_resource::NONE);
|
|
}
|
|
|
|
Ok(())
|
|
}
|