C
Qt Quick Ultralite Thermostat Demo
// Copyright (C) 2024 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial import QmlProject 1.3 Project { projectRootPath: ".." idBasedTranslations: true MCU.Module { uri: "Thermo" } QmlFiles { files: [ "imports/Thermo/ColorStyle.qml", "imports/Thermo/Room.qml", "imports/Thermo/Rooms.qml", "imports/Thermo/GlobalState.qml", "Theme.qml", "metric/Units.qml" ] } ImageFiles { MCU.base: "images" files: [ "images/fan-off.png", "images/fan-off-small.png", "images/fan-1-on.png", "images/fan-1-on-small.png", "images/fan-2-on.png", "images/fan-2-on-small.png", "images/fan-3-on.png", "images/fan-3-on-small.png", "images/fan-4-on.png", "images/fan-4-on-small.png" ] } TranslationFiles { files: [ "thermo.en_GB.ts", "thermo.de_DE.ts", "thermo.ja_JP.ts" ] MCU.omitSourceLanguage: true } }