2023-06-20 06:03:50 +00:00
|
|
|
# Copyright (C) 2023 The Qt Company Ltd.
|
|
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
|
|
|
|
qt_add_qml_module(ThermostatApp
|
|
|
|
URI "Main"
|
|
|
|
VERSION 1.0
|
2025-07-25 11:58:13 +00:00
|
|
|
QML_FILES
|
|
|
|
Main.qml
|
2023-06-20 06:03:50 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
add_subdirectory(imports)
|
2025-07-25 11:58:13 +00:00
|
|
|
add_subdirectory(content)
|
2023-06-20 06:03:50 +00:00
|
|
|
|
|
|
|
target_link_libraries(ThermostatApp PRIVATE
|
2023-08-10 14:54:40 +00:00
|
|
|
ThermostatContentplugin
|
2023-06-21 09:19:22 +00:00
|
|
|
ThermostatCustomControlsplugin
|
2023-06-20 06:03:50 +00:00
|
|
|
Thermostatplugin
|
|
|
|
)
|