mirror of
https://github.com/playit-cloud/playit-agent.git
synced 2026-07-04 06:18:38 +00:00
10 lines
180 B
Rust
10 lines
180 B
Rust
#[cfg(windows)]
|
|
fn main() {
|
|
let mut res = winres::WindowsResource::new();
|
|
res.set_icon("wix/Product.ico");
|
|
res.compile().unwrap();
|
|
}
|
|
|
|
#[cfg(not(windows))]
|
|
fn main() {}
|