2011-12-06 19:24:06 +00:00
|
|
|
|
2020-07-14 08:38:51 +00:00
|
|
|
cmake_minimum_required(VERSION 3.14)
|
2011-12-06 19:24:06 +00:00
|
|
|
|
2012-06-22 08:04:05 +00:00
|
|
|
project("test(needsquoting)dirname")
|
2011-12-06 19:24:06 +00:00
|
|
|
|
2020-07-14 08:38:51 +00:00
|
|
|
find_package(Qt6Widgets REQUIRED)
|
2011-12-06 19:24:06 +00:00
|
|
|
|
2012-02-10 15:40:12 +00:00
|
|
|
|
2011-12-06 19:24:06 +00:00
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
|
2020-07-14 08:38:51 +00:00
|
|
|
qt_wrap_cpp(moc_files mywidget.h)
|
|
|
|
qt_wrap_ui(ui_files mywidget.ui)
|
2012-02-21 11:06:54 +00:00
|
|
|
|
2011-12-06 19:24:06 +00:00
|
|
|
add_executable(mywidget mywidget.cpp ${moc_files} ${ui_files})
|
2020-07-14 08:38:51 +00:00
|
|
|
target_link_libraries(mywidget Qt::Widgets)
|