summaryrefslogtreecommitdiffstats
path: root/src/designer/src/designer/doc/snippets/autoconnection/CMakeLists.txt
blob: ba3a631358d3dfed923b49d886bfb051b6a1f60c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copyright (C) 2023 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause

cmake_minimum_required(VERSION 3.16)
project(autoconnection LANGUAGES CXX)

set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTOUIC ON)

find_package(Qt6 REQUIRED COMPONENTS Core Gui Widgets)

qt_add_executable(autoconnection
                  imagedialog.cpp  imagedialog.h  imagedialog.ui  main.cpp)

set_target_properties(autoconnection PROPERTIES
    WIN32_EXECUTABLE TRUE
    MACOSX_BUNDLE TRUE
)

target_link_libraries(autoconnection  PUBLIC
    Qt::Core
    Qt::Gui
    Qt::Widgets
)