aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/localstorage/localstorage
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quick/localstorage/localstorage')
-rw-r--r--examples/quick/localstorage/localstorage/localstorage.pro7
-rw-r--r--examples/quick/localstorage/localstorage/localstorage.qrc6
-rw-r--r--examples/quick/localstorage/localstorage/main.cpp2
3 files changed, 11 insertions, 4 deletions
diff --git a/examples/quick/localstorage/localstorage/localstorage.pro b/examples/quick/localstorage/localstorage/localstorage.pro
index ef90b63546..80c306fcc2 100644
--- a/examples/quick/localstorage/localstorage/localstorage.pro
+++ b/examples/quick/localstorage/localstorage/localstorage.pro
@@ -2,8 +2,9 @@ TEMPLATE = app
QT += quick qml
SOURCES += main.cpp
+RESOURCES += \
+ localstorage.qrc \
+ ../../shared/shared.qrc
target.path = $$[QT_INSTALL_EXAMPLES]/quick/localstorage/localstorage
-qml.files = localstorage.qml hello.qml
-qml.path = $$[QT_INSTALL_EXAMPLES]/quick/localstorage/localstorage
-INSTALLS += target qml
+INSTALLS += target
diff --git a/examples/quick/localstorage/localstorage/localstorage.qrc b/examples/quick/localstorage/localstorage/localstorage.qrc
new file mode 100644
index 0000000000..09ac2de033
--- /dev/null
+++ b/examples/quick/localstorage/localstorage/localstorage.qrc
@@ -0,0 +1,6 @@
+<RCC>
+ <qresource prefix="/localstorage/localstorage">
+ <file>hello.qml</file>
+ <file>localstorage.qml</file>
+ </qresource>
+</RCC>
diff --git a/examples/quick/localstorage/localstorage/main.cpp b/examples/quick/localstorage/localstorage/main.cpp
index 0f69fb7fdb..8433dbe55e 100644
--- a/examples/quick/localstorage/localstorage/main.cpp
+++ b/examples/quick/localstorage/localstorage/main.cpp
@@ -38,4 +38,4 @@
**
****************************************************************************/
#include "../../shared/shared.h"
-DECLARATIVE_EXAMPLE_MAIN(localstorage)
+DECLARATIVE_EXAMPLE_MAIN(localstorage/localstorage/localstorage)