UI image selection (#97)

This commit is contained in:
Philip Kristoffersen
2022-04-23 20:33:16 +02:00
committed by GitHub
parent 91782b74eb
commit e77f2b5f31
49 changed files with 1368 additions and 801 deletions
+5 -3
View File
@@ -1,11 +1,13 @@
use std::io;
#[cfg(windows)] use winres::WindowsResource;
#[cfg(windows)]
use winres::WindowsResource;
fn main() -> io::Result<()> {
#[cfg(windows)] {
#[cfg(windows)]
{
WindowsResource::new()
.set_icon("resources/logo.ico")
.compile()?;
}
Ok(())
}
}