aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_qml_app_deployment/Shapes/FunkyShape/CMakeLists.txt
blob: 9217ccf69f295828c0e005f3faaa9fc66f63423f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

qt_add_qml_module(FunkyShape
    URI Shapes.FunkyShape
    VERSION 1.0
    QML_FILES FunkyItemQml.qml
    SOURCES funkyitem.cpp funkyitem.h
)
target_link_libraries(FunkyShape
    PRIVATE
        Qt::Quick
)