1 2 3 4 5 6 7 8
extern crate winres; fn main() { if cfg!(target_os = "windows") { let res = winres::WindowsResource::new(); res.compile().unwrap(); } }