How to auto-generate a .qrc file from a QML project for cmake

984 Views Asked by At

Just putting this here for anyone else that needs this info. So they don't spend time on it needlessly.

I was trying to build my QtQuick project using Cmake and ROS2 but had the hardest time trying to figure out how to add custom modules and other files from an existing QML project to the CMakeLists of my ROS2 package. I knew from QT's CMake template instructions that I needed to put these files into a .qrc file. But it wasn't feasible to go through each file in the QML project and add them manually to a resource file, so I needed a way to auto-generate it.

1

There are 1 best solutions below

0
On

So if you need to generate a .qrc file from your QML project you:

  • First need to follow the steps here to convert it to a QtQuick application
  • Then build the application project
  • Once that's done a resource file will be generated in the build folder
  • At this point you can copy and paste that file into your main project (I suggest you rename the file as well)

Now you're all set to add this new .qrc to your CMakeLists.txt