aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src-tauri/build.rs
blob: 63f98e2bec6d17d864d2880f8c9f3fcbbc1190ec (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()
}