qt5_add_resources

概要

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

描述

可以设置额外 OPTIONS that should be added to the rcc calls. You can find possible options in the RCC (资源编译器) 文档编制 .

为嵌入更大资源,见 qt5_add_big_resources .

注意: For compatibility with Qt 6, the command is also available under the name qt_add_resources .

自变量

可以设置额外 OPTIONS that should be added to the rcc calls. You can find possible options in the RCC (资源编译器) 文档编制 .

范例

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