aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_link_qml_module_without_target/Base/CMakeLists.txt
blob: 1d94c8ea21cce2cb1f0be1b268a0e76ce52a3489 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copyright (C) 2023 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause

qt_add_library(Base STATIC)
qt_add_qml_module(Base
    URI "Base"
    QML_FILES
        qml/Red.qml
    SOURCES
        Base.cpp
)

target_link_libraries(Base PRIVATE Qt6::Quick)