mirror of
https://github.com/GyulyVGC/sniffnet.git
synced 2025-12-23 22:29:01 -05:00
13 lines
244 B
Rust
13 lines
244 B
Rust
#[cfg(windows)]
|
|
extern crate winres;
|
|
|
|
#[cfg(windows)]
|
|
fn main() {
|
|
let mut res = winres::WindowsResource::new();
|
|
res.set_icon("resources/packaging/windows/graphics/sniffnet.ico");
|
|
res.compile().unwrap();
|
|
}
|
|
|
|
#[cfg(unix)]
|
|
fn main() {}
|