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.
neovide/build.rs

9 lines
203 B
Rust

fn main() {
#[cfg(windows)]
{
let mut res = winres::WindowsResource::new();
res.set_icon("assets/neovide.ico");
res.compile().expect("Could not attach exe icon");
}
}