aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/doc/snippets/qml/CMakeLists.txt
blob: 7c7ac116c3513bcc05d533373cd4b507c13b528f (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: 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)