Creates an RCC file from a list of Qt resource files.
The command is defined in the
核心
组件对于
Qt6
package, which can be loaded like so:
find_package(Qt6 REQUIRED COMPONENTS Core)
This command was introduced in Qt 5.10.
qt_add_binary_resources(target file1.qrc [file2.qrc ...]
[DESTINATION ...]
[OPTIONS ...])
若
versionless commands
are disabled, use
qt6_add_binary_resources()
instead. It supports the same set of arguments as this command.
添加自定义
target
that compiles Qt resource files into a binary
.rcc
文件。
DESTINATION
sets the path of the generated
.rcc
file. The default is
${CMAKE_CURRENT_BINARY_DIR}/${target}.rcc
.
可以设置额外
选项
应该被添加到
rcc
调用。可以查找可能的选项在
RCC (资源编译器) 文档编制
.
qt_add_binary_resources(resources project.qrc OPTIONS -no-compress) add_dependencies(myapp resources)