[SOLVED].rc files in Qt Projects
-
wrote on 11 Feb 2014, 19:22 last edited by
Greetings.
Where I can find an explanation of what are the .rc files used in Qt projects, how to create them and what is its function in Qt project.
Thanks in advance for any help and / or suggestions.
-
RC is a MS Windows resource file, it holds information like company name, product version, application icon, etc. For more information, refer to Microsoft documentation ("link":http://msdn.microsoft.com/en-us/library/windows/desktop/aa381043(v=vs.85).aspx and "link":http://msdn.microsoft.com/en-us/library/windows/desktop/aa380599(v=vs.85).aspx).
Of course, that thing is platform-specific and will have no effect on Mac, Linux, Android or iOS.
-
wrote on 12 Feb 2014, 03:22 last edited by
So... are the .rc files useless if the Qt project is built for Linux or Mac?
How that information (company name, application icon, ect) in Qt projects built for Linux or Mac is specified?
-
[quote author="isaacenrique" date="1392175328"]So... are the .rc files useless if the Qt project is built for Linux or Mac?[/quote]
Correct.
[quote author="isaacenrique" date="1392175328"]How that information (company name, application icon, ect) in Qt projects built for Linux or Mac is specified?[/quote]
On Mac, you need to modify the info.plist file inside the application bundle. On Linux, there is no such system at all.
On all platforms, you can specify application name, organisation name, etc. to QCoreApplication, but that serves a different purpose.
-
wrote on 12 Feb 2014, 15:59 last edited by
Ok, Thanks you.
5/5