diff options
author | J-P Nurmi <[email protected]> | 2013-02-28 15:18:33 +0100 |
---|---|---|
committer | The Qt Project <[email protected]> | 2013-02-28 15:29:12 +0100 |
commit | fff357dbde4ad0e2737117c8b5922adb25bb0acd (patch) | |
tree | d45f376df3b454f34e8340c655e9723b6e609cf8 | |
parent | 254bbe7a1b9d7b361e3ad171785a47fef3983873 (diff) |
Examples: add missing project files
Change-Id: I00618e75058521fb941cb590fb331a883643e116
Reviewed-by: Gabriel de Dietrich <[email protected]>
-rw-r--r-- | examples/examples.pro | 7 | ||||
-rw-r--r-- | examples/gallery/gallery.pro | 9 | ||||
-rw-r--r-- | examples/splitters/splitters.pro | 4 | ||||
-rw-r--r-- | examples/splitters/splitters.qmlproject | 16 | ||||
-rw-r--r-- | examples/tableview/tableview.pro | 4 | ||||
-rw-r--r-- | examples/touch/touch.pro | 10 |
6 files changed, 49 insertions, 1 deletions
diff --git a/examples/examples.pro b/examples/examples.pro index 2c879571f..ed556c2c3 100644 --- a/examples/examples.pro +++ b/examples/examples.pro @@ -1,3 +1,8 @@ TEMPLATE = subdirs -SUBDIRS += ApplicationTemplate +SUBDIRS += \ + ApplicationTemplate \ + gallery \ + splitters \ + tableview \ + touch diff --git a/examples/gallery/gallery.pro b/examples/gallery/gallery.pro new file mode 100644 index 000000000..53c489254 --- /dev/null +++ b/examples/gallery/gallery.pro @@ -0,0 +1,9 @@ +TEMPLATE = aux + +OTHER_FILES += \ + main.qml \ + content/ChildWindow.qml \ + content/Controls.qml \ + content/ModelView.qml \ + content/Panel.qml \ + content/Styles.qml diff --git a/examples/splitters/splitters.pro b/examples/splitters/splitters.pro new file mode 100644 index 000000000..8b88e385c --- /dev/null +++ b/examples/splitters/splitters.pro @@ -0,0 +1,4 @@ +TEMPLATE = aux + +OTHER_FILES += \ + main.qml diff --git a/examples/splitters/splitters.qmlproject b/examples/splitters/splitters.qmlproject new file mode 100644 index 000000000..e5a8bf02c --- /dev/null +++ b/examples/splitters/splitters.qmlproject @@ -0,0 +1,16 @@ +import QmlProject 1.1 + +Project { + mainFile: "main.qml" + + /* Include .qml, .js, and image files from current directory and subdirectories */ + QmlFiles { + directory: "." + } + JavaScriptFiles { + directory: "." + } + ImageFiles { + directory: "." + } +} diff --git a/examples/tableview/tableview.pro b/examples/tableview/tableview.pro new file mode 100644 index 000000000..8b88e385c --- /dev/null +++ b/examples/tableview/tableview.pro @@ -0,0 +1,4 @@ +TEMPLATE = aux + +OTHER_FILES += \ + main.qml diff --git a/examples/touch/touch.pro b/examples/touch/touch.pro new file mode 100644 index 000000000..f81aa0585 --- /dev/null +++ b/examples/touch/touch.pro @@ -0,0 +1,10 @@ +TEMPLATE = aux + +OTHER_FILES += \ + main.qml \ + content/AndroidDelegate.qml \ + content/ButtonPage.qml \ + content/ProgressBarPage.qml \ + content/SliderPage.qml \ + content/TabBarPage.qml \ + content/TextInputPage.qml |