veloren/voxygen/build.rs

11 lines
269 B
Rust
Raw Normal View History

#[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() {}