aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_qml_app_deployment/main.qml
blob: 60e4b5b5ec0acced463a23826857a233933e4b51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick
import Shapes.EllipseShape
import Shapes.FunkyShape

Item {
    width: 640; height: 480
    visible: true
    Item {
        anchors.fill: parent

        EllipseItemCpp {
            anchors.fill: parent
        }
        FunkyItemCpp {
            anchors.fill: parent
        }
        FunkyItemQml {
            anchors.fill: parent
        }
    }
}