JuliaLang / PackageCompiler.jl

Compile your Julia Package
https://julialang.github.io/PackageCompiler.jl/dev/
MIT License
1.41k stars 189 forks source link

how to set icon for exe application #836

Closed anke1460 closed 1 year ago

anke1460 commented 1 year ago

I build an exe app and the icon is default blank, how to set custom icon for it?

KristofferC commented 1 year ago

You can use rcedit. It is a bit out of scope for PackageCompiler to do much more than just create the resulting files.

rcedit "path-to-exe-or-dll" --set-icon "path-to-ico"
anke1460 commented 1 year ago

@KristofferC Thanks