qt_add_resources

Synopsis

 qt_add_resources(<VAR> file1.qrc [file2.qrc ...]
                   [OPTIONS ...])

 qt6_add_resources(<VAR> file1.qrc [file2.qrc ...]
                   [OPTIONS ...])

Description

Creates source code from Qt resource files using the Resource Compiler (rcc). Paths to the generated source files are added to <VAR>.

For embedding bigger resources, see qt_add_big_resources.

Arguments

You can set additional OPTIONS that should be added to the rcc calls. You can find possible options in the rcc documentation.

Examples

 set(SOURCES main.cpp)
 qt_add_resources(SOURCES example.qrc)
 add_executable(myapp ${SOURCES})