mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
11 lines
269 B
Rust
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() {}
|