summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_dependent_modules/CMakeLists.txt
blob: 679f7fed27c9146b60d0531e141d8f4851904196 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

cmake_minimum_required(VERSION 3.16)

project(test_dependent_modules)

# The module finds its dependencies
find_package(Qt6Widgets REQUIRED)

set(CMAKE_INCLUDE_CURRENT_DIR ON)

qt_wrap_cpp(moc_files mywidget.h)
qt_wrap_ui(ui_files mywidget.ui)

add_executable(mywidget mywidget.cpp ${moc_files} ${ui_files})
target_link_libraries(mywidget Qt::Widgets)