Skip to content

Correct install location for ecm_finalize_qml_module()

Jonathan Marten requested to merge (removed):controls-install into master

The reverse domain path being included in the ecm_finalize_qml_module() DESTINATION parameter results in the QML controls being installed in paths such as /usr/lib64/qml/org/kde/quickcharts/controls/org/kde/quickcharts/controls/Legend.qml. This means that they cannot be found at runtime. Following the other uses of ecm_finalize_qml_module() within Frameworks, the DESTINATION should be simply ${KDE_INSTALL_QMLDIR} which installs the controls at /usr/lib64/qml/org/kde/quickcharts/controls/Legend.qml.

Merge request reports