In order to declare the resources I need in my project, I have to write each of them manually, like below:
<!DOCTYPE RCC><RCC version="1.0">
<qresource>
<file>resources/copy.png</file>
<file>resources/cut.png</file>
<file>resources/new.qml</file>
<file>resources/open.qml</file>
</qresource>
</RCC>
Is there a possibilty to automatically add all the files from a directory to the resouce system, something like below?
<!DOCTYPE RCC><RCC version="1.0">
<qresource>
<file>resources/*.png</file>
<file>resources/*.qml</file>
</qresource>
</RCC>