update/downgrade v1 to V2

This commit is contained in:
Alexis Delhaie
2020-09-24 10:47:06 +02:00
commit 4664b63862
8 changed files with 686 additions and 0 deletions

9
build.rs Normal file
View File

@@ -0,0 +1,9 @@
extern crate winres;
fn main() {
if cfg!(target_os = "windows") {
let mut res = winres::WindowsResource::new();
res.set_icon("icon.ico");
res.compile().unwrap();
}
}