forked from qt-creator/qt-creator
The name of the example project directory must match with the project file name and the \example command argument. This is case sensitive on platforms other than Windows. Change-Id: Ie6fa6934ee444b42f024ebf00d6a9b20dfd6abce Reviewed-by: Paul Wicking <paul.wicking@qt.io> Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
45 lines
814 B
Plaintext
45 lines
814 B
Plaintext
import QmlProject 1.1
|
|
|
|
Project {
|
|
mainFile: "EBikeDesign.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: "."
|
|
}
|
|
|
|
Files {
|
|
filter: "*.ttf"
|
|
directory: "."
|
|
}
|
|
|
|
Environment {
|
|
QT_QUICK_CONTROLS_CONF: "qtquickcontrols2.conf"
|
|
QT_AUTO_SCREEN_SCALE_FACTOR: "1"
|
|
}
|
|
|
|
/* List of plugin directories passed to QML runtime */
|
|
importPaths: [ "imports", "backend"]
|
|
|
|
/* Required for deployment */
|
|
targetDirectory: "/opt/ebikeDesign"
|
|
}
|