diff options
author | Alessandro Portale <alessandro.portale@nokia.com> | 2010-06-09 13:27:54 (GMT) |
---|---|---|
committer | Alessandro Portale <alessandro.portale@nokia.com> | 2010-06-09 13:28:24 (GMT) |
commit | b1892130920981c099fc1800ef365cf4643c3382 (patch) | |
tree | 97328e5b135138b2b64d3c9174ce1cce4f4b6b9b /src/s60installs | |
parent | ce99e07ec9e9805864d38eea076d1efa0c20b213 (diff) | |
download | Qt-b1892130920981c099fc1800ef365cf4643c3382.zip Qt-b1892130920981c099fc1800ef365cf4643c3382.tar.gz Qt-b1892130920981c099fc1800ef365cf4643c3382.tar.bz2 |
Fix Symbian install path for Qml plugins
We force it to c: just as we do with all other Qt plugins
Reviewed-by: Miikka Heikkinen
Diffstat (limited to 'src/s60installs')
-rw-r--r-- | src/s60installs/s60installs.pro | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/s60installs/s60installs.pro b/src/s60installs/s60installs.pro index d3d9eed..d751134 100644 --- a/src/s60installs/s60installs.pro +++ b/src/s60installs/s60installs.pro @@ -159,16 +159,16 @@ symbian: { gesturesImport.sources += $$QT_SOURCE_TREE/src/imports/gestures/qmldir particlesImport.sources += $$QT_SOURCE_TREE/src/imports/particles/qmldir - folderlistmodelImport.path = $$QT_IMPORTS_BASE_DIR/Qt/labs/folderlistmodel - gesturesImport.path = $$QT_IMPORTS_BASE_DIR/Qt/labs/gestures - particlesImport.path = $$QT_IMPORTS_BASE_DIR/Qt/labs/particles + folderlistmodelImport.path = c:$$QT_IMPORTS_BASE_DIR/Qt/labs/folderlistmodel + gesturesImport.path = c:$$QT_IMPORTS_BASE_DIR/Qt/labs/gestures + particlesImport.path = c:$$QT_IMPORTS_BASE_DIR/Qt/labs/particles DEPLOYMENT += folderlistmodelImport gesturesImport particlesImport contains(QT_CONFIG, webkit): { webkitImport.sources = $$QT_BUILD_TREE/imports/org/webkit/qmlwebkitplugin$${QT_LIBINFIX}.dll webkitImport.sources += $$QT_SOURCE_TREE/src/imports/webkit/qmldir - webkitImport.path = $$QT_IMPORTS_BASE_DIR/org/webkit + webkitImport.path = c:$$QT_IMPORTS_BASE_DIR/org/webkit DEPLOYMENT += webkitImport } } |