mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-27 14:38:28 +08:00
19 lines
405 B
CMake
19 lines
405 B
CMake
|
# Copyright (C) 2022 The Qt Company Ltd.
|
||
|
# SPDX-License-Identifier: BSD-3-Clause
|
||
|
|
||
|
|
||
|
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)
|