[SOLVED] Simple question about rcc
General and Desktop
8
Posts
2
Posters
2.6k
Views
1
Watching
-
I have a simple question. I read this about the rcc system: http://qt-project.org/doc/qt-4.8/resources.html
But I don't understand where I can extecute this command to register the resource in my binary:@rcc -binary myresource.qrc -o myresource.rcc@
-
Did you clean your project and did a clean qmake ?
is the path to your qrc file correct ?
it must be relative to your pro file!
For Example if your pro is in your project folder :
@YourProjectFolder/yourprofile.pro@
And your qrc file is in an extra folder (eg. Resources):
@YourProjectFolder/Resources/yourqrc.qrc@
In your pro file it must be :
@RESOURCES += Resources/yourqrc.qrc@
-