Skip to content

Instantly share code, notes, and snippets.

@jabed-web-dev
Last active November 2, 2022 10:50
Show Gist options
  • Select an option

  • Save jabed-web-dev/21742965314e1c5196a2153022367233 to your computer and use it in GitHub Desktop.

Select an option

Save jabed-web-dev/21742965314e1c5196a2153022367233 to your computer and use it in GitHub Desktop.
set icon in c/c++ exe file
echo 'MAIN ICON "favicon.ico"' > resources.rc
g++.exe -Wall -fexceptions -g -c app.cpp -o app.o
windres.exe -J rc -O coff -i RESOUR~1.RC -o resources.res
g++.exe -o app.exe app.o resources.res
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment