Hey @all,

i've set custom library paths which i've defined as follows:
Qt Code:
  1. QStringList libraryPaths = QStringList()
  2. << qApp->applicationDirPath()
  3. << qApp->applicationDirPath().append("/plugins")
  4. << qApp->applicationDirPath().append("/plugins/sqldrivers")
  5. << qApp->applicationDirPath().append("/plugins/languages")
  6. << qApp->applicationDirPath().append("/plugins/modules")
  7. << qApp->applicationDirPath().append("/plugins/styles");
  8. QApplication::setLibraryPaths(libraryPaths);
To copy to clipboard, switch view to plain text mode 

This works under Windows, but under Linux the application didn't find the language, style and sql driver plugins.

Hope anybody could help

Thanks in advance

Best Regards
NoRulez