qt_add_big_resources

Compiles big binary resources into object code.

The command is defined in the Core 组件对于 Qt6 package. Load the package with:

find_package(Qt6 COMPONENTS Core REQUIRED)
					

概要

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

versionless commands are disabled, use qt6_add_big_resources() instead. It supports the same set of arguments as this command.

描述

Creates compiled object files from Qt resource files using the RCC (资源编译器) . Paths to the generated files are added to <VAR> .

This is similar to qt_add_resources , but directly generates object files ( .o , .obj ) files instead of C++ source code. This allows to embed bigger resources, where compiling to C++ sources and then to binaries would be too time consuming or memory intensive.

注意: This macro is only available if using CMake 3.9 or later.

自变量

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

范例

set(SOURCES main.cpp)
qt_add_big_resources(SOURCES big_resource.qrc)
add_executable(myapp ${SOURCES})