forked from qt-creator/qt-creator
Task-number: QTCREATORBUG-10257 Change-Id: If12f3ee18dda18da13fe2ea39af42cae4fe21ddf Reviewed-by: Robert Loehning <robert.loehning@digia.com> Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
19 lines
324 B
Plaintext
19 lines
324 B
Plaintext
import QmlProject 1.1
|
|
|
|
Project {
|
|
mainFile: "welcomescreen.qml"
|
|
|
|
/* Include .qml, .js, and image files from current directory and subdirectories */
|
|
QmlFiles {
|
|
directory: "."
|
|
}
|
|
JavaScriptFiles {
|
|
directory: "."
|
|
}
|
|
ImageFiles {
|
|
directory: "."
|
|
}
|
|
|
|
importPaths: [ "." ]
|
|
}
|