qt5_wrap_ui

概要

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

描述

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 .

注意: For compatibility with Qt 6, the command is also available under the name qt_wrap_ui .

选项

可以设置额外 OPTIONS that should be added to the uic calls. You can find possible options in the uic documentation .

范例

set(SOURCES mainwindow.cpp main.cpp)
qt5_wrap_ui(SOURCES mainwindow.ui)
add_executable(myapp ${SOURCES})