qt_generate_moc

调用输入文件中的 MOC (元对象编译器)。

命令的定义在 核心 组件对于 Qt6 包,可以像这样加载:

find_package(Qt6 REQUIRED COMPONENTS Core)
					

该命令在 Qt 5.0 引入。

概要

qt_generate_moc(src_file dest_file
                [TARGET target])
					

无版本命令 被禁用,使用 qt6_generate_moc() 代替。它支持如此命令的一组相同自变量。

描述

创建规则以调用 MOC (元对象编译器) on src_file 并将输出存储在 dest_file .

注意: This is a low-level macro. See the CMake AUTOMOC Documentation for a more convenient way to let source files be processed with moc . qt_wrap_cpp is also similar, but automatically generates a temporary file path for you.

自变量

可以明确设置 TARGET . This will make sure that the target properties INCLUDE_DIRECTORIES and COMPILE_DEFINITIONS are also used when scanning the source files with moc .

范例

qt_generate_moc(main.cpp main.moc TARGET myapp)