summaryrefslogtreecommitdiffstats
path: root/src/designer/src/designer/doc/snippets/singleinheritance/CMakeLists.txt
blob: 31699c550a1e32c871ca17a2ef4506e52c86a22b (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(singleinheritanceinheritance LANGUAGES CXX)

set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTOUIC ON)

find_package(Qt6 REQUIRED COMPONENTS Core Gui Widgets)

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

set_target_properties(singleinheritanceinheritance PROPERTIES
    WIN32_EXECUTABLE TRUE
    MACOSX_BUNDLE TRUE
)

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