mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-19 16:41:34 +03:00
* add icon check for windows. * fix spelling * add basic icon logic * make error more prolific
16 lines
388 B
Rust
16 lines
388 B
Rust
#[cfg(windows)]
|
|
extern crate winres;
|
|
|
|
#[cfg(windows)]
|
|
fn main() {
|
|
if std::path::Path::new("icons/icon.ico").exists() {
|
|
let mut res = winres::WindowsResource::new();
|
|
res.set_icon("icons/icon.ico");
|
|
res.compile().expect("Unable to find visual studio tools");
|
|
} else {
|
|
panic!("No Icon.ico found. Please add one or check the path");
|
|
}
|
|
|
|
#[cfg(not(windows))]
|
|
fn main() {}
|