aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/tutorials/gettingStartedQml/texteditor.qmlproject
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quick/tutorials/gettingStartedQml/texteditor.qmlproject')
-rw-r--r--examples/quick/tutorials/gettingStartedQml/texteditor.qmlproject20
1 files changed, 20 insertions, 0 deletions
diff --git a/examples/quick/tutorials/gettingStartedQml/texteditor.qmlproject b/examples/quick/tutorials/gettingStartedQml/texteditor.qmlproject
new file mode 100644
index 0000000000..72bdcdea73
--- /dev/null
+++ b/examples/quick/tutorials/gettingStartedQml/texteditor.qmlproject
@@ -0,0 +1,20 @@
+import QmlProject 1.0
+
+Project {
+ mainFile: "texteditor.qml"
+
+ /* Include .qml, .js, and image files from current directory and subdirectories */
+ QmlFiles {
+ directory: "."
+ }
+
+ JavaScriptFiles {
+ directory: "."
+ }
+
+ ImageFiles {
+ directory: "."
+ }
+
+ importPaths: ["./imports"]
+}