From 2973dc43241249f79904f98ad89e4a774fa70d25 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Mon, 24 Sep 2012 15:58:00 +0200 Subject: Install the Qt Quick 2 examples in the "qtquick" dir Leave the "qtdeclarative" dir for Qt Quick 1, which is where it used to be in Qt 4. Change-Id: I44997771d77617564fc608c1aba95e3ada8f9a69 Reviewed-by: Christopher Adams --- examples/demos/calqlatr/calqlatr.pro | 4 ++-- examples/demos/maroon/maroon.pro | 4 ++-- examples/demos/samegame/samegame.pro | 4 ++-- examples/demos/stocqt/stocqt.pro | 4 ++-- examples/demos/tweetsearch/tweetsearch.pro | 4 ++-- examples/localstorage/localstorage/localstorage.pro | 4 ++-- examples/particles/affectors/affectors.pro | 4 ++-- examples/particles/customparticle/customparticle.pro | 4 ++-- examples/particles/emitters/emitters.pro | 4 ++-- examples/particles/imageparticle/imageparticle.pro | 4 ++-- examples/particles/particles.pro | 2 +- examples/particles/system/system.pro | 4 ++-- examples/qml/imageprovider/imageprovider.pro | 6 +++--- examples/qml/plugins/plugins.pro | 6 +++--- examples/qml/referenceexamples/adding/adding.pro | 4 ++-- examples/qml/referenceexamples/attached/attached.pro | 4 ++-- examples/qml/referenceexamples/binding/binding.pro | 4 ++-- examples/qml/referenceexamples/coercion/coercion.pro | 4 ++-- examples/qml/referenceexamples/default/default.pro | 4 ++-- examples/qml/referenceexamples/extended/extended.pro | 4 ++-- examples/qml/referenceexamples/grouped/grouped.pro | 4 ++-- examples/qml/referenceexamples/methods/methods.pro | 4 ++-- examples/qml/referenceexamples/properties/properties.pro | 4 ++-- examples/qml/referenceexamples/signal/signal.pro | 4 ++-- examples/qml/referenceexamples/valuesource/valuesource.pro | 4 ++-- examples/qml/xmlhttprequest/xmlhttprequest.pro | 4 ++-- examples/quick/accessibility/accessibility.pro | 4 ++-- examples/quick/animation/animation.pro | 4 ++-- examples/quick/canvas/canvas.pro | 4 ++-- examples/quick/customitems/maskedmousearea/maskedmousearea.pro | 4 ++-- examples/quick/customitems/painteditem/painteditem.pro | 6 +++--- examples/quick/draganddrop/draganddrop.pro | 4 ++-- examples/quick/imageelements/imageelements.pro | 4 ++-- examples/quick/keyinteraction/keyinteraction.pro | 4 ++-- examples/quick/modelviews/modelviews.pro | 4 ++-- examples/quick/mousearea/mousearea.pro | 4 ++-- examples/quick/positioners/positioners.pro | 4 ++-- examples/quick/righttoleft/righttoleft.pro | 4 ++-- examples/quick/shadereffects/shadereffects.pro | 4 ++-- examples/quick/text/text.pro | 4 ++-- examples/quick/threading/threading.pro | 4 ++-- examples/quick/touchinteraction/touchinteraction.pro | 4 ++-- examples/shared/shared.pro | 2 +- 43 files changed, 87 insertions(+), 87 deletions(-) (limited to 'examples') diff --git a/examples/demos/calqlatr/calqlatr.pro b/examples/demos/calqlatr/calqlatr.pro index 0aa39f9278..024d6efa23 100644 --- a/examples/demos/calqlatr/calqlatr.pro +++ b/examples/demos/calqlatr/calqlatr.pro @@ -3,7 +3,7 @@ TEMPLATE = app QT += qml quick SOURCES += main.cpp -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/demos/calqlatr +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/demos/calqlatr qml.files = calqlatr.qml content -qml.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/demos/calqlatr +qml.path = $$[QT_INSTALL_EXAMPLES]/qtquick/demos/calqlatr INSTALLS += target qml diff --git a/examples/demos/maroon/maroon.pro b/examples/demos/maroon/maroon.pro index 32d1e43d4a..cbe0c8ed0d 100644 --- a/examples/demos/maroon/maroon.pro +++ b/examples/demos/maroon/maroon.pro @@ -3,7 +3,7 @@ TEMPLATE = app QT += qml quick SOURCES += main.cpp -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/demos/maroon +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/demos/maroon qml.files = maroon.qml content -qml.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/demos/maroon +qml.path = $$[QT_INSTALL_EXAMPLES]/qtquick/demos/maroon INSTALLS += target qml diff --git a/examples/demos/samegame/samegame.pro b/examples/demos/samegame/samegame.pro index e9b9f4bf16..4aa3a3324e 100644 --- a/examples/demos/samegame/samegame.pro +++ b/examples/demos/samegame/samegame.pro @@ -3,7 +3,7 @@ TEMPLATE = app QT += qml quick SOURCES += main.cpp -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/demos/samegame +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/demos/samegame qml.files = samegame.qml content -qml.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/demos/samegame +qml.path = $$[QT_INSTALL_EXAMPLES]/qtquick/demos/samegame INSTALLS += target qml diff --git a/examples/demos/stocqt/stocqt.pro b/examples/demos/stocqt/stocqt.pro index 74d27559d8..aa2f1cfbea 100644 --- a/examples/demos/stocqt/stocqt.pro +++ b/examples/demos/stocqt/stocqt.pro @@ -3,7 +3,7 @@ TEMPLATE = app QT += qml quick SOURCES += main.cpp -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/demos/stocqt +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/demos/stocqt qml.files = stocqt.qml content -qml.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/demos/stocqt +qml.path = $$[QT_INSTALL_EXAMPLES]/qtquick/demos/stocqt INSTALLS += target qml diff --git a/examples/demos/tweetsearch/tweetsearch.pro b/examples/demos/tweetsearch/tweetsearch.pro index 12a09dfc59..691bd6d293 100644 --- a/examples/demos/tweetsearch/tweetsearch.pro +++ b/examples/demos/tweetsearch/tweetsearch.pro @@ -3,7 +3,7 @@ TEMPLATE = app QT += quick qml SOURCES += main.cpp -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/demos/tweetsearch +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/demos/tweetsearch qml.files = tweetsearch.qml content -qml.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/demos/tweetsearch +qml.path = $$[QT_INSTALL_EXAMPLES]/qtquick/demos/tweetsearch INSTALLS += target qml diff --git a/examples/localstorage/localstorage/localstorage.pro b/examples/localstorage/localstorage/localstorage.pro index 311dc4ac8b..4cce7eda4f 100644 --- a/examples/localstorage/localstorage/localstorage.pro +++ b/examples/localstorage/localstorage/localstorage.pro @@ -3,7 +3,7 @@ TEMPLATE = app QT += quick qml SOURCES += main.cpp -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/localstorage +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/localstorage qml.files = localstorage.qml hello.qml -qml.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/localstorage +qml.path = $$[QT_INSTALL_EXAMPLES]/qtquick/localstorage INSTALLS += target qml diff --git a/examples/particles/affectors/affectors.pro b/examples/particles/affectors/affectors.pro index 52eb0ddb55..9f91ae110b 100644 --- a/examples/particles/affectors/affectors.pro +++ b/examples/particles/affectors/affectors.pro @@ -3,8 +3,8 @@ TEMPLATE = app QT += quick qml SOURCES += main.cpp -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/particles/affectors +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/particles/affectors qml.files = affectors.qml content -qml.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/particles/affectors +qml.path = $$[QT_INSTALL_EXAMPLES]/qtquick/particles/affectors INSTALLS += target qml diff --git a/examples/particles/customparticle/customparticle.pro b/examples/particles/customparticle/customparticle.pro index d26778f730..1f087d4d57 100644 --- a/examples/particles/customparticle/customparticle.pro +++ b/examples/particles/customparticle/customparticle.pro @@ -3,8 +3,8 @@ TEMPLATE = app QT += quick qml SOURCES += main.cpp -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/particles/customparticle +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/particles/customparticle qml.files = customparticle.qml content -qml.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/particles/customparticle +qml.path = $$[QT_INSTALL_EXAMPLES]/qtquick/particles/customparticle INSTALLS += target qml diff --git a/examples/particles/emitters/emitters.pro b/examples/particles/emitters/emitters.pro index 7147d716ad..890726ebcc 100644 --- a/examples/particles/emitters/emitters.pro +++ b/examples/particles/emitters/emitters.pro @@ -3,8 +3,8 @@ TEMPLATE = app QT += quick qml SOURCES += main.cpp -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/particles/emitters +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/particles/emitters qml.files = emitters.qml content -qml.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/particles/emitters +qml.path = $$[QT_INSTALL_EXAMPLES]/qtquick/particles/emitters INSTALLS += target qml diff --git a/examples/particles/imageparticle/imageparticle.pro b/examples/particles/imageparticle/imageparticle.pro index 8d5b06cc89..2898bec628 100644 --- a/examples/particles/imageparticle/imageparticle.pro +++ b/examples/particles/imageparticle/imageparticle.pro @@ -3,8 +3,8 @@ TEMPLATE = app QT += quick qml SOURCES += main.cpp -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/particles/imageparticle +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/particles/imageparticle qml.files = imageparticle.qml content -qml.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/particles/imageparticle +qml.path = $$[QT_INSTALL_EXAMPLES]/qtquick/particles/imageparticle INSTALLS += target qml diff --git a/examples/particles/particles.pro b/examples/particles/particles.pro index 385da36a08..a4edaa9ccb 100644 --- a/examples/particles/particles.pro +++ b/examples/particles/particles.pro @@ -7,5 +7,5 @@ SUBDIRS += affectors \ #Install shared images too qml.files = images -qml.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/particles +qml.path = $$[QT_INSTALL_EXAMPLES]/qtquick/particles INSTALLS = qml diff --git a/examples/particles/system/system.pro b/examples/particles/system/system.pro index 613abface4..9623bb5acb 100644 --- a/examples/particles/system/system.pro +++ b/examples/particles/system/system.pro @@ -3,8 +3,8 @@ TEMPLATE = app QT += quick qml SOURCES += main.cpp -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/particles/system +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/particles/system qml.files = system.qml content -qml.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/particles/system +qml.path = $$[QT_INSTALL_EXAMPLES]/qtquick/particles/system INSTALLS += target qml diff --git a/examples/qml/imageprovider/imageprovider.pro b/examples/qml/imageprovider/imageprovider.pro index e85bad9866..09bbef495d 100644 --- a/examples/qml/imageprovider/imageprovider.pro +++ b/examples/qml/imageprovider/imageprovider.pro @@ -10,13 +10,13 @@ SOURCES += imageprovider.cpp OTHER_FILES += imageprovider.json sources.files = $$SOURCES imageprovider.qml imageprovider.pro -sources.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/imageprovider +sources.path = $$[QT_INSTALL_EXAMPLES]/qtquick/qml/imageprovider -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/imageprovider/ImageProviderCore +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/qml/imageprovider/ImageProviderCore ImageProviderCore_sources.files = \ ImageProviderCore/qmldir -ImageProviderCore_sources.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/imageprovider/ImageProviderCore +ImageProviderCore_sources.path = $$[QT_INSTALL_EXAMPLES]/qtquick/qml/imageprovider/ImageProviderCore INSTALLS = sources ImageProviderCore_sources target diff --git a/examples/qml/plugins/plugins.pro b/examples/qml/plugins/plugins.pro index 2c748f7952..66af7d3c07 100644 --- a/examples/qml/plugins/plugins.pro +++ b/examples/qml/plugins/plugins.pro @@ -15,11 +15,11 @@ qdeclarativesources.files += \ imports/TimeExample/hour.png \ imports/TimeExample/minute.png -qdeclarativesources.path += $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/plugins/imports/TimeExample +qdeclarativesources.path += $$[QT_INSTALL_EXAMPLES]/qtquick/qml/plugins/imports/TimeExample sources.files += plugins.pro plugin.cpp plugins.qml -sources.path += $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/plugins -target.path += $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/plugins/imports/TimeExample +sources.path += $$[QT_INSTALL_EXAMPLES]/qtquick/qml/plugins +target.path += $$[QT_INSTALL_EXAMPLES]/qtquick/qml/plugins/imports/TimeExample INSTALLS += qdeclarativesources sources target diff --git a/examples/qml/referenceexamples/adding/adding.pro b/examples/qml/referenceexamples/adding/adding.pro index 706322e9ff..a1aec4da91 100644 --- a/examples/qml/referenceexamples/adding/adding.pro +++ b/examples/qml/referenceexamples/adding/adding.pro @@ -5,7 +5,7 @@ SOURCES += main.cpp \ HEADERS += person.h RESOURCES += adding.qrc -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/extending/adding +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/qml/extending/adding sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS adding.pro -sources.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/extending/adding +sources.path = $$[QT_INSTALL_EXAMPLES]/qtquick/qml/extending/adding INSTALLS += target sources diff --git a/examples/qml/referenceexamples/attached/attached.pro b/examples/qml/referenceexamples/attached/attached.pro index f4385e1a30..20956f9be6 100644 --- a/examples/qml/referenceexamples/attached/attached.pro +++ b/examples/qml/referenceexamples/attached/attached.pro @@ -7,7 +7,7 @@ HEADERS += person.h \ birthdayparty.h RESOURCES += attached.qrc -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/extending/attached +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/qml/extending/attached sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS attached.pro -sources.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/extending/attached +sources.path = $$[QT_INSTALL_EXAMPLES]/qtquick/qml/extending/attached INSTALLS += target sources diff --git a/examples/qml/referenceexamples/binding/binding.pro b/examples/qml/referenceexamples/binding/binding.pro index 0379f93ea7..2cd619a085 100644 --- a/examples/qml/referenceexamples/binding/binding.pro +++ b/examples/qml/referenceexamples/binding/binding.pro @@ -9,7 +9,7 @@ HEADERS += person.h \ happybirthdaysong.h RESOURCES += binding.qrc -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/extending/binding +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/qml/extending/binding sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS binding.pro -sources.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/extending/binding +sources.path = $$[QT_INSTALL_EXAMPLES]/qtquick/qml/extending/binding INSTALLS += target sources diff --git a/examples/qml/referenceexamples/coercion/coercion.pro b/examples/qml/referenceexamples/coercion/coercion.pro index 60e8532bab..ff3e264776 100644 --- a/examples/qml/referenceexamples/coercion/coercion.pro +++ b/examples/qml/referenceexamples/coercion/coercion.pro @@ -7,7 +7,7 @@ HEADERS += person.h \ birthdayparty.h RESOURCES += coercion.qrc -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/extending/coercion +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/qml/extending/coercion sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS coercion.pro -sources.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/extending/coercion +sources.path = $$[QT_INSTALL_EXAMPLES]/qtquick/qml/extending/coercion INSTALLS += target sources diff --git a/examples/qml/referenceexamples/default/default.pro b/examples/qml/referenceexamples/default/default.pro index 36ef39fc55..130e45bb47 100644 --- a/examples/qml/referenceexamples/default/default.pro +++ b/examples/qml/referenceexamples/default/default.pro @@ -7,7 +7,7 @@ HEADERS += person.h \ birthdayparty.h RESOURCES += default.qrc -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/extending/default +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/qml/extending/default sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS default.pro -sources.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/extending/default +sources.path = $$[QT_INSTALL_EXAMPLES]/qtquick/qml/extending/default INSTALLS += target sources diff --git a/examples/qml/referenceexamples/extended/extended.pro b/examples/qml/referenceexamples/extended/extended.pro index 206ea19c61..73f755aa87 100644 --- a/examples/qml/referenceexamples/extended/extended.pro +++ b/examples/qml/referenceexamples/extended/extended.pro @@ -5,7 +5,7 @@ SOURCES += main.cpp \ HEADERS += lineedit.h RESOURCES += extended.qrc -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/extending/extended +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/qml/extending/extended sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS extended.pro -sources.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/extending/extended +sources.path = $$[QT_INSTALL_EXAMPLES]/qtquick/qml/extending/extended INSTALLS += target sources diff --git a/examples/qml/referenceexamples/grouped/grouped.pro b/examples/qml/referenceexamples/grouped/grouped.pro index d32a98f79b..fa49f1cc78 100644 --- a/examples/qml/referenceexamples/grouped/grouped.pro +++ b/examples/qml/referenceexamples/grouped/grouped.pro @@ -7,7 +7,7 @@ HEADERS += person.h \ birthdayparty.h RESOURCES += grouped.qrc -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/extending/grouped +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/qml/extending/grouped sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS grouped.pro -sources.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/extending/grouped +sources.path = $$[QT_INSTALL_EXAMPLES]/qtquick/qml/extending/grouped INSTALLS += target sources diff --git a/examples/qml/referenceexamples/methods/methods.pro b/examples/qml/referenceexamples/methods/methods.pro index f4c63bfa29..459ef080aa 100644 --- a/examples/qml/referenceexamples/methods/methods.pro +++ b/examples/qml/referenceexamples/methods/methods.pro @@ -7,7 +7,7 @@ HEADERS += person.h \ birthdayparty.h RESOURCES += methods.qrc -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/extending/methods +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/qml/extending/methods sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS methods.pro -sources.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/extending/methods +sources.path = $$[QT_INSTALL_EXAMPLES]/qtquick/qml/extending/methods INSTALLS += target sources diff --git a/examples/qml/referenceexamples/properties/properties.pro b/examples/qml/referenceexamples/properties/properties.pro index e079b1f79e..678cfb9ca4 100644 --- a/examples/qml/referenceexamples/properties/properties.pro +++ b/examples/qml/referenceexamples/properties/properties.pro @@ -7,7 +7,7 @@ HEADERS += person.h \ birthdayparty.h RESOURCES += properties.qrc -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/extending/properties +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/qml/extending/properties sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS properties.pro -sources.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/extending/properties +sources.path = $$[QT_INSTALL_EXAMPLES]/qtquick/qml/extending/properties INSTALLS += target sources diff --git a/examples/qml/referenceexamples/signal/signal.pro b/examples/qml/referenceexamples/signal/signal.pro index d426e398a5..b0f37ebe94 100644 --- a/examples/qml/referenceexamples/signal/signal.pro +++ b/examples/qml/referenceexamples/signal/signal.pro @@ -7,7 +7,7 @@ HEADERS += person.h \ birthdayparty.h RESOURCES += signal.qrc -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/extending/signal +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/qml/extending/signal sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS signal.pro -sources.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/extending/signal +sources.path = $$[QT_INSTALL_EXAMPLES]/qtquick/qml/extending/signal INSTALLS += target sources diff --git a/examples/qml/referenceexamples/valuesource/valuesource.pro b/examples/qml/referenceexamples/valuesource/valuesource.pro index afc1784d71..3a5d26b0ec 100644 --- a/examples/qml/referenceexamples/valuesource/valuesource.pro +++ b/examples/qml/referenceexamples/valuesource/valuesource.pro @@ -9,7 +9,7 @@ HEADERS += person.h \ happybirthdaysong.h RESOURCES += valuesource.qrc -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/extending/valuesource +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/qml/extending/valuesource sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS valuesource.pro -sources.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/extending/valuesource +sources.path = $$[QT_INSTALL_EXAMPLES]/qtquick/qml/extending/valuesource INSTALLS += target sources diff --git a/examples/qml/xmlhttprequest/xmlhttprequest.pro b/examples/qml/xmlhttprequest/xmlhttprequest.pro index e58ada7540..bb7fae66bf 100644 --- a/examples/qml/xmlhttprequest/xmlhttprequest.pro +++ b/examples/qml/xmlhttprequest/xmlhttprequest.pro @@ -3,7 +3,7 @@ TEMPLATE = app QT += quick qml SOURCES += main.cpp -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/xmlhttprequest +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/qml/xmlhttprequest qml.files = xmlhttprequest.qml get.qml -qml.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/xmlhttprequest +qml.path = $$[QT_INSTALL_EXAMPLES]/qtquick/qml/xmlhttprequest INSTALLS += target qml diff --git a/examples/quick/accessibility/accessibility.pro b/examples/quick/accessibility/accessibility.pro index 51877b2c95..3f2109eac2 100644 --- a/examples/quick/accessibility/accessibility.pro +++ b/examples/quick/accessibility/accessibility.pro @@ -3,8 +3,8 @@ TEMPLATE = app QT += quick qml SOURCES += main.cpp -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/accessibility +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/accessibility qml.files = accessibility.qml content -qml.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/accessibility +qml.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/accessibility INSTALLS += target qml diff --git a/examples/quick/animation/animation.pro b/examples/quick/animation/animation.pro index 26cefba202..c840bdf720 100644 --- a/examples/quick/animation/animation.pro +++ b/examples/quick/animation/animation.pro @@ -3,8 +3,8 @@ TEMPLATE = app QT += quick qml SOURCES += main.cpp -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/animation +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/animation qml.files = animation.qml basics behaviors easing pathanimation pathinterpolator states -qml.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/animation +qml.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/animation INSTALLS += target qml diff --git a/examples/quick/canvas/canvas.pro b/examples/quick/canvas/canvas.pro index 92b5b4b08e..fe7ce9a37a 100644 --- a/examples/quick/canvas/canvas.pro +++ b/examples/quick/canvas/canvas.pro @@ -3,7 +3,7 @@ TEMPLATE = app QT += quick qml SOURCES += main.cpp -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/canvas +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/canvas qml.files = canvas.qml bezierCurve clip quadraticCurveTo roundedrect smile squircle tiger contents -qml.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/canvas +qml.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/canvas INSTALLS += target qml \ No newline at end of file diff --git a/examples/quick/customitems/maskedmousearea/maskedmousearea.pro b/examples/quick/customitems/maskedmousearea/maskedmousearea.pro index 1623f7919b..654c3ceeb5 100644 --- a/examples/quick/customitems/maskedmousearea/maskedmousearea.pro +++ b/examples/quick/customitems/maskedmousearea/maskedmousearea.pro @@ -7,8 +7,8 @@ HEADERS += maskedmousearea.h SOURCES += main.cpp \ maskedmousearea.cpp -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/maskedmousearea +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/maskedmousearea qml.files = maskedmousearea.qml images -qml.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/maskedmousearea +qml.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/maskedmousearea INSTALLS += target qml diff --git a/examples/quick/customitems/painteditem/painteditem.pro b/examples/quick/customitems/painteditem/painteditem.pro index 9526817146..59b0702547 100644 --- a/examples/quick/customitems/painteditem/painteditem.pro +++ b/examples/quick/customitems/painteditem/painteditem.pro @@ -16,10 +16,10 @@ DESTDIR = TextBalloonPlugin qdeclarativesources.files += \ TextBalloonPlugin/qmldir -qdeclarativesources.path += $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/painteditem/TextBalloonPlugin +qdeclarativesources.path += $$[QT_INSTALL_EXAMPLES]/qtquick/qml/painteditem/TextBalloonPlugin sources.files = textballoons.qml -sources.path += $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/painteditem -target.path += $$[QT_INSTALL_EXAMPLES]/qtdeclarative/qml/painteditem/TextBalloonPlugin +sources.path += $$[QT_INSTALL_EXAMPLES]/qtquick/qml/painteditem +target.path += $$[QT_INSTALL_EXAMPLES]/qtquick/qml/painteditem/TextBalloonPlugin INSTALLS = qdeclarativesources sources target diff --git a/examples/quick/draganddrop/draganddrop.pro b/examples/quick/draganddrop/draganddrop.pro index e4556da4a1..3db32e0dd4 100644 --- a/examples/quick/draganddrop/draganddrop.pro +++ b/examples/quick/draganddrop/draganddrop.pro @@ -3,8 +3,8 @@ TEMPLATE = app QT += quick qml SOURCES += main.cpp -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/draganddrop +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/draganddrop qml.files = draganddrop.qml tiles views -qml.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/draganddrop +qml.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/draganddrop INSTALLS += target qml diff --git a/examples/quick/imageelements/imageelements.pro b/examples/quick/imageelements/imageelements.pro index 9732475f1d..b395490858 100644 --- a/examples/quick/imageelements/imageelements.pro +++ b/examples/quick/imageelements/imageelements.pro @@ -3,8 +3,8 @@ TEMPLATE = app QT += quick qml SOURCES += main.cpp -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/imageelements +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/imageelements qml.files = *.qml content -qml.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/imageelements +qml.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/imageelements INSTALLS += target qml diff --git a/examples/quick/keyinteraction/keyinteraction.pro b/examples/quick/keyinteraction/keyinteraction.pro index f2e19430a4..d98f218673 100644 --- a/examples/quick/keyinteraction/keyinteraction.pro +++ b/examples/quick/keyinteraction/keyinteraction.pro @@ -3,8 +3,8 @@ TEMPLATE = app QT += quick qml SOURCES += main.cpp -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/keyinteraction +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/keyinteraction qml.files = keyinteraction.qml focus -qml.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/keyinteraction +qml.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/keyinteraction INSTALLS += target qml diff --git a/examples/quick/modelviews/modelviews.pro b/examples/quick/modelviews/modelviews.pro index 7e6226607f..7da02de774 100644 --- a/examples/quick/modelviews/modelviews.pro +++ b/examples/quick/modelviews/modelviews.pro @@ -3,7 +3,7 @@ TEMPLATE = app QT += quick qml SOURCES += main.cpp -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/modelviews +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/modelviews qml.files = \ modelviews.qml \ gridview \ @@ -13,6 +13,6 @@ qml.files = \ pathview \ visualdatamodel \ visualitemmodel -qml.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/modelviews +qml.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/modelviews INSTALLS += target qml diff --git a/examples/quick/mousearea/mousearea.pro b/examples/quick/mousearea/mousearea.pro index c26d287cf7..bf08c745bb 100644 --- a/examples/quick/mousearea/mousearea.pro +++ b/examples/quick/mousearea/mousearea.pro @@ -3,8 +3,8 @@ TEMPLATE = app QT += quick qml SOURCES += main.cpp -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/mousearea +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/mousearea qml.files = mousearea.qml -qml.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/mousearea +qml.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/mousearea INSTALLS += target qml diff --git a/examples/quick/positioners/positioners.pro b/examples/quick/positioners/positioners.pro index dddabfe19e..2f457e60ff 100644 --- a/examples/quick/positioners/positioners.pro +++ b/examples/quick/positioners/positioners.pro @@ -3,8 +3,8 @@ TEMPLATE = app QT += quick qml SOURCES += main.cpp -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/positioners +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/positioners qml.files = positioners.qml positioners-transitions.qml positioners-attachedproperties.qml -qml.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/positioners +qml.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/positioners INSTALLS += target qml diff --git a/examples/quick/righttoleft/righttoleft.pro b/examples/quick/righttoleft/righttoleft.pro index cd5a48d7a4..74005b1b08 100644 --- a/examples/quick/righttoleft/righttoleft.pro +++ b/examples/quick/righttoleft/righttoleft.pro @@ -3,8 +3,8 @@ TEMPLATE = app QT += quick qml SOURCES += main.cpp -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/righttoleft +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/righttoleft qml.files = righttoleft.qml layoutdirection layoutmirroring textalignment -qml.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/righttoleft +qml.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/righttoleft INSTALLS += target qml diff --git a/examples/quick/shadereffects/shadereffects.pro b/examples/quick/shadereffects/shadereffects.pro index 7801e415c0..d3b50632c7 100644 --- a/examples/quick/shadereffects/shadereffects.pro +++ b/examples/quick/shadereffects/shadereffects.pro @@ -3,8 +3,8 @@ TEMPLATE = app QT += quick qml SOURCES += main.cpp -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/shadereffects +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/shadereffects qml.files = shadereffects.qml content -qml.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/shadereffects +qml.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/shadereffects INSTALLS += target qml diff --git a/examples/quick/text/text.pro b/examples/quick/text/text.pro index a9256a6a4a..afd7d1ba07 100644 --- a/examples/quick/text/text.pro +++ b/examples/quick/text/text.pro @@ -3,8 +3,8 @@ TEMPLATE = app QT += quick qml SOURCES += main.cpp -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/text +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/text qml.files = fonts imgtag styledtext-layout.qml text.qml textselection -qml.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/text +qml.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/text INSTALLS += target qml diff --git a/examples/quick/threading/threading.pro b/examples/quick/threading/threading.pro index ba6d75433b..a0770c9332 100644 --- a/examples/quick/threading/threading.pro +++ b/examples/quick/threading/threading.pro @@ -3,8 +3,8 @@ TEMPLATE = app QT += quick qml SOURCES += main.cpp -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/threading +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/threading qml.files = threading.qml threadedlistmodel workerscript -qml.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/threading +qml.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/threading INSTALLS += target qml diff --git a/examples/quick/touchinteraction/touchinteraction.pro b/examples/quick/touchinteraction/touchinteraction.pro index 8213d64928..6b52d46a25 100644 --- a/examples/quick/touchinteraction/touchinteraction.pro +++ b/examples/quick/touchinteraction/touchinteraction.pro @@ -3,8 +3,8 @@ TEMPLATE = app QT += quick qml SOURCES += main.cpp -target.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/touchinteraction +target.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/touchinteraction qml.files = flickable multipointtouch pincharea touchinteraction.qml -qml.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/quick/touchinteraction +qml.path = $$[QT_INSTALL_EXAMPLES]/qtquick/quick/touchinteraction INSTALLS += target qml diff --git a/examples/shared/shared.pro b/examples/shared/shared.pro index d6ce120f41..3bc9bfebbe 100644 --- a/examples/shared/shared.pro +++ b/examples/shared/shared.pro @@ -5,5 +5,5 @@ qml.files = images \ LauncherList.qml \ SimpleLauncherDelegate.qml \ Button.qml -qml.path = $$[QT_INSTALL_EXAMPLES]/qtdeclarative/shared +qml.path = $$[QT_INSTALL_EXAMPLES]/qtquick/shared INSTALLS = qml -- cgit v1.2.3