Reputation: 69
I wanted to have a custom icon for my application.exe executable , i have also tried referring this documentation https://doc.qt.io/qt-5/appicon.html
, but i didn't use QT-Creator to create my project,so i don't have the .pro file to make any changes, i have used Visual Studio 2019 to work on my project and complete it.
How can i set a custom icon when i used Visual studio 2019 ?
Upvotes: 0
Views: 63
Reputation: 179
For Qt 5, this process is automated by qmake. Just add the following to the project file:
win32:RC_ICONS += your_icon.ico
Upvotes: 1