qt_add_binary_resources

概要

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

描述

添加自定义 target that compiles Qt resource files into a binary .rcc 文件。

该命令在 Qt 5.15 引入。可以使用 qt5_add_binary_resources 在旧版 Qt。

自变量

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)