mirror of
https://github.com/neovide/neovide.git
synced 2026-09-10 07:16:25 -04:00
* Added procedural macro crate * Initial derive macro implementation * Compiles for cursor settings * Derive macro working correctly * Derive macro working for all settings structs * Cleanup * Moved the binary back to the project root * remove unused utils file Co-authored-by: Tim Harding <Tim@TimHarding.co>
9 lines
200 B
Rust
9 lines
200 B
Rust
fn main() {
|
|
#[cfg(windows)]
|
|
{
|
|
let mut res = winres::WindowsResource::new();
|
|
res.set_icon("assets/nvim.ico");
|
|
res.compile().expect("Could not attach exe icon");
|
|
}
|
|
}
|