qt_wrap_ui

Creates sources for .ui files.

The command is defined in the 小部件 組件對於 Qt6 package. Load the package with:

find_package(Qt6 REQUIRED COMPONENTS Widgets)
					

概要

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

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

描述

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})