forked from qt-creator/qt-creator
Change-Id: I44d3a4165d1ff12488bcc63f19765bc7cf91bc18 Reviewed-by: Robert Loehning <robert.loehning@digia.com>
15 lines
237 B
Plaintext
15 lines
237 B
Plaintext
import QmlProject 1.1
|
|
|
|
Project {
|
|
// Scan current directory for .qml, .js, and image files
|
|
QmlFiles {
|
|
directory: "."
|
|
}
|
|
JavaScriptFiles {
|
|
directory: "."
|
|
}
|
|
ImageFiles {
|
|
directory: "."
|
|
}
|
|
}
|