diff options
author | mae <qt-info@nokia.com> | 2010-04-08 12:54:42 (GMT) |
---|---|---|
committer | mae <qt-info@nokia.com> | 2010-04-08 13:00:35 (GMT) |
commit | c3a54c47048b7123f51f2a1078e156d259445221 (patch) | |
tree | 299c0dfd3c039ec5fbf36f5a64bca13c1b8b4fd7 /tools/qml/qmlruntime.h | |
parent | dc2429a34e8d0168ef33f48ec0da35631be49243 (diff) | |
download | Qt-c3a54c47048b7123f51f2a1078e156d259445221.zip Qt-c3a54c47048b7123f51f2a1078e156d259445221.tar.gz Qt-c3a54c47048b7123f51f2a1078e156d259445221.tar.bz2 |
Tune plugin import mechanism
In shadow build environments, we cannot enforce that shared
library objects for plugins are located in the same directory
as the qmldir file. This makes it hard for Creator to support
mixed projects (qml/c++).
In order to gain more flexibility, the patch introduces a
pluginPathList to QDeclarativeEngine, which completes the existing
importsPathList.
The pluginPathList defaults to ["."], which indicates the directory
where the qmldir file is located in.
The qml viewer tool gains a command line option -P to add to the
pluginPathList.
For consistency, the -L option ("Library") has been renamed to
-I ("Import"). QDeclarativeEngine::importExtension() has been
renamed to QDeclarativeEngine::importPlugin().
The documentation has been adjusted accordingly.
Done with erikv.
Reviewed-by: erikv
Diffstat (limited to 'tools/qml/qmlruntime.h')
-rw-r--r-- | tools/qml/qmlruntime.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/qml/qmlruntime.h b/tools/qml/qmlruntime.h index 01777bd..6f1e425 100644 --- a/tools/qml/qmlruntime.h +++ b/tools/qml/qmlruntime.h @@ -96,6 +96,7 @@ public: void setDeviceKeys(bool); void setNetworkCacheSize(int size); void addLibraryPath(const QString& lib); + void addPluginPath(const QString& plugin); void setUseGL(bool use); void setUseNativeFileBrowser(bool); |