2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2018 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2020-04-27 17:24:11 +02:00
|
|
|
|
|
|
|
|
import QmlProject 1.1
|
|
|
|
|
|
|
|
|
|
Project {
|
|
|
|
|
mainFile: "CoffeeMachine.qml"
|
|
|
|
|
|
|
|
|
|
/* Include .qml, .js, and image files from current directory and subdirectories */
|
|
|
|
|
QmlFiles {
|
|
|
|
|
directory: "."
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
JavaScriptFiles {
|
|
|
|
|
directory: "."
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ImageFiles {
|
|
|
|
|
directory: "."
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Files {
|
|
|
|
|
filter: "*.conf"
|
|
|
|
|
files: ["qtquickcontrols2.conf"]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Files {
|
|
|
|
|
filter: "qmldir"
|
|
|
|
|
directory: "."
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Environment {
|
|
|
|
|
QT_QUICK_CONTROLS_CONF: "qtquickcontrols2.conf"
|
|
|
|
|
QT_AUTO_SCREEN_SCALE_FACTOR: "1"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* List of plugin directories passed to QML runtime */
|
|
|
|
|
importPaths: [ "imports" ]
|
|
|
|
|
|
|
|
|
|
/* Required for deployment */
|
|
|
|
|
targetDirectory: "/opt/CoffeeMachine"
|
|
|
|
|
}
|