Files
picoforge/build.rs
Suyog Tandel 44851e25c4 fix: clippy errors and remove logs view
This commit basically removes the logs view from the
application(redundant). And also fixes all the clippy errors in the UI.
2026-03-04 18:11:19 +05:30

15 lines
360 B
Rust

#[cfg(windows)]
#[allow(clippy::single_component_path_imports)]
use tauri_winres;
// Configures windows application resource.( fix for app icon and launching app as admin)
#[cfg(windows)]
fn main() {
let mut res = tauri_winres::WindowsResource::new();
res.set_icon("static/appIcons/icon.ico");
res.compile().unwrap();
}
#[cfg(unix)]
fn main() {}