qt_wrap_ui

Creates sources for .ui files.

命令的定义在 小部件 组件对于 Qt6 包。加载包采用:

find_package(Qt6 REQUIRED COMPONENTS Widgets)
					

概要

qt_wrap_ui(<VAR> ui_file1 [ui_file2 ...]
           [OPTIONS ...])
					

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

描述

Creates rules for calling the uic (用户界面编译器) 在给定 .ui files. For each input file, an header file is generated in the build directory. The paths of the generated header files are added to <VAR> .

注意: This is a low-level macro. See the CMake AUTOUIC Documentation for a more convenient way to process .ui files with uic .

选项

可以设置额外 选项 应该被添加到 uic 调用。可以查找可能的选项在 uic documentation .

范例

set(SOURCES mainwindow.cpp main.cpp)
qt_wrap_ui(SOURCES mainwindow.ui)
qt_add_executable(myapp ${SOURCES})