Add read.ico as windows exe icon resource

This commit is contained in:
2026-05-21 17:29:31 +08:00
parent af141b581d
commit 8e8ba01336
4 changed files with 12 additions and 0 deletions

7
build.rs Normal file
View File

@@ -0,0 +1,7 @@
#[cfg(target_os = "windows")]
fn main() {
embed_resource::compile("read.rc", embed_resource::NONE);
}
#[cfg(not(target_os = "windows"))]
fn main() {}