mirror of https://github.com/sgoudham/neovide.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
218 B
Rust
8 lines
218 B
Rust
5 years ago
|
fn main() {
|
||
|
if cfg!(target_os = "windows") {
|
||
|
let mut res = winres::WindowsResource::new();
|
||
|
res.set_icon("assets/nvim.ico");
|
||
|
res.compile().expect("Could not attach exe icon");
|
||
|
}
|
||
|
}
|