Sections

How can I add version information to my Qt/Windows application ?

This information should be shown when clicking using the right mouse button on the .exe file and selecting "properties". Than a dialog with a tab named "version" will appear.

Answer:

You can simply create a resource file and specify this as part of your application using:

        RC_FILE = foo.rc

See the documentation:

http://doc.trolltech.com/4.3/qmake-variable-reference.html#rc-file


back