aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src-tauri/build.rs
blob: e5a5ed31c92b6472b9f049258a4cf6a1a005f3af (plain) (blame)
1
2
3
4
5
6
7
8
9
fn main() {
    // For MinGW targets, use embed-resource to generate proper COFF format
    #[cfg(all(windows, target_env = "gnu"))]
    {
        embed_resource::compile("icon.rc", embed_resource::NONE);
    }
    
    tauri_build::build()
}