qt_add_binary_resources▲
Synopsis▲
Sélectionnez
qt_add_binary_resources(target file1.qrc [file2.qrc ...]
[DESTINATION ...]
[OPTIONS ...])
qt6_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.
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▲
Sélectionnez
qt_add_binary_resources(resources project.qrc OPTIONS -
no-
compress)
add_dependencies(myapp resources)