aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_link_qml_module_without_target/Derived/qml/main.qml
blob: 7c797cf2ef7660eeb9f1e1d378c3addef3852ac3 (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) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick
import QtQuick.Layouts
import Base
import Derived

RowLayout {
    width: 200
    height: 200

    Red {
        id: red
        width: 100
        height: 100
    }

    Blue {
        width: 100
        height: 100
    }
}