mirror of
https://gitlab.com/veloren/veloren.git
synced 2025-07-25 04:42:23 +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() {}
|