aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/doc/snippets/qml/CMakeLists.txt
blob: 717f153e7d463e5b3e5221584cd52528aac718fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

qt_add_library(extra_module STATIC)
qt_add_qml_module(extra_module
    URI "ExtraModule"
    VERSION 1.0
    QML_FILES
        Extra.qml
    SOURCES
        extrathing.cpp extrathing.h
    RESOURCE_PREFIX /
)

add_subdirectory(ExtraModule)