qt5_add_binary_resources

概要

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

描述

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

注意: 為兼容 Qt 6,命令還可用於名稱 qt_add_binary_resources .

自變量

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

可以設置額外 選項 應該被添加到 rcc 調用。可以查找可能的選項在 RCC (資源編譯器) 文檔編製 .

範例

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