diff options
-rw-r--r-- | kde-modules/KDEInstallDirs.cmake | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/kde-modules/KDEInstallDirs.cmake b/kde-modules/KDEInstallDirs.cmake index 5c8783b5..67218bf2 100644 --- a/kde-modules/KDEInstallDirs.cmake +++ b/kde-modules/KDEInstallDirs.cmake @@ -488,7 +488,12 @@ if(KDE_INSTALL_USE_QT_SYS_PATHS) "QtQuick2 imports" QML_INSTALL_DIR) else() - _define_relative(QTPLUGINDIR LIBDIR "plugins" + set(_pluginsDirParent LIBDIR) + if (ANDROID) + set(_pluginsDirParent) + #androiddeployqt wants plugins right in the prefix + endif() + _define_relative(QTPLUGINDIR "${_pluginsDirParent}" "plugins" "Qt plugins" QT_PLUGIN_INSTALL_DIR) |