No resource file in Qt Creator

10,127

For using resource file even if it is situated in the same folder, you have to add the resource file to the project in Qtcreator for using it. Just right click on the project name on the tree view of your project in QtCreator and click on add existing files, then you add your resource file and now you can use your resource in your project.

By adding it this way, it will be added to you project. Or you can register resources to project explicitly with

 QResource::registerResource("/path/yourresource.rcc");

You can specify resource directory using :/ prefix or qrc:///.

For ex:qrc:///files/yourfile will get you to the yourfile situated in files in your added resource.

Share:
10,127
Sara
Author by

Sara

Updated on June 24, 2022

Comments

  • Sara
    Sara about 2 years

    I am using Qt Creator and I have created a resource file. When I try to access the resource file when I am in designer mode, it says that resource root is empty.

    How can I specify the resource dir? How come it does not appear if it is in the same folder?