qt_wrap_ui

Synopsis

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

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

Description

Creates rules for calling the User Interface Compiler (uic) on the given .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>.

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

Options

You can set additional OPTIONS that should be added to the uic calls. You can find possible options in the uic documentation.

Examples

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

© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-6.0/qt-wrap-ui.html