veloren/voxygen/build.rs
2019-10-02 16:57:08 +02:00

11 lines
269 B
Rust

#[cfg(windows)]
fn main() {
//Set executable logo with winres here:
let mut res = winres::WindowsResource::new();
res.set_icon("../assets/voxygen/logo.ico");
res.compile().expect("failed to build executable logo.");
}
#[cfg(not(windows))]
fn main() {}