I have a Visual Studio 2017 project that is built with QT and VTK using CMake. I need to use image resources, and wish to use QT's .qrc resource system.
Information on this seems rare and complex when not using a QT project file. I have found this:
Create a .qrc file that contains a list of the resources you would like to include
Create a custom build step that invokes rcc on that file (documentation)
Compile and link the resulting cpp source file into your program.
How to use Qt resource files in Visual Studio without a Qt project?
I am just completely confused right now on what the proper way to go about this is, and this is not enough information.