qt5_add_binary_resources

Synopsis

qt5_add_binary_resources(target file1.qrc [file2.qrc ...]
                         [DESTINATION ...]
                         [OPTIONS ...])

Description

Adds a custom target that compiles Qt resource files into a binary .rcc file.

Note: For compatibility with Qt 6, the command is also available under the name qt_add_binary_resources.

Arguments

DESTINATION sets the path of the generated .rcc file. The default is ${CMAKE_CURRENT_BINARY_DIR}/${target}.rcc.

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

Examples

qt5_add_binary_resources(resources project.qrc OPTIONS -no-compress)
add_dependencies(myapp resources)

© 2024 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.