aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/doc/snippets/qml/CMakeLists.txt
blob: 5dd190d004a3bec4fb040412d5f51ff2cc2bbcc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: 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
)

add_subdirectory(ExtraModule)