forked from qt-creator/qt-creator
Replace the current license disclaimer in files by a SPDX-License-Identifier. Task-number: QTBUG-67283 Change-Id: I708fd1f9f2b73d60f57cc3568646929117825813 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
43 lines
854 B
Plaintext
43 lines
854 B
Plaintext
// Copyright (C) 2018 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
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"
|
|
}
|