sharextended/build.rs

11 lines
189 B
Rust

use winres;
fn main() {
if cfg!(target_os = "windows") {
winres::WindowsResource::new()
.set_icon("test.ico")
.compile()
.unwrap();
}
}