0da123d67b
Needed for subsequent change that will check and error out if the version is lower than 3.16. We do that to ensure all policies introduced by CMake up to version 3.16 have their behavior set to NEW. Pick-to: 6.2 Task-number: QTBUG-95018 Change-Id: Ieaf82c10987dd797d86a3fd4a986a67e72de486a Reviewed-by: Kai Koehne <kai.koehne@qt.io>
16 lines
323 B
CMake
16 lines
323 B
CMake
|
|
cmake_minimum_required(VERSION 3.16)
|
|
|
|
project("test(needsquoting)dirname")
|
|
|
|
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)
|