Add back (accidentally?) deleted line in CMakeLists.txt

Without this, ToolButton.qml (Plasma Components 3) is not installed and
applets like the mediacontroller do not load because they can't find it.

The line has been removed in 6126954816,
and it looks like an unrelated change.

Marco, feel free to revert if the proper solution is different.

CCMAIL: notmart@gmail.com
This commit is contained in:
Luca Beltrame 2018-11-14 23:41:59 +01:00
parent 02d5c8a19f
commit 17c8927748
No known key found for this signature in database
GPG Key ID: 8DF631FD021DB0C5

View File

@ -48,7 +48,6 @@ install(FILES ${CMAKE_CURRENT_BINARY_DIR}/plasmacomponents3/BusyIndicator.qml
${CMAKE_CURRENT_BINARY_DIR}/plasmacomponents3/GroupBox.qml
${CMAKE_CURRENT_BINARY_DIR}/plasmacomponents3/ItemDelegate.qml
${CMAKE_CURRENT_BINARY_DIR}/plasmacomponents3/Label.qml
${CMAKE_CURRENT_BINARY_DIR}/plasmacomponents3/ProgressBar.qml
${CMAKE_CURRENT_BINARY_DIR}/plasmacomponents3/RadioButton.qml
${CMAKE_CURRENT_BINARY_DIR}/plasmacomponents3/RadioDelegate.qml
@ -65,6 +64,7 @@ install(FILES ${CMAKE_CURRENT_BINARY_DIR}/plasmacomponents3/BusyIndicator.qml
${CMAKE_CURRENT_BINARY_DIR}/plasmacomponents3/TextArea.qml
${CMAKE_CURRENT_BINARY_DIR}/plasmacomponents3/TextField.qml
${CMAKE_CURRENT_BINARY_DIR}/plasmacomponents3/ToolBar.qml
${CMAKE_CURRENT_BINARY_DIR}/plasmacomponents3/ToolButton.qml
${CMAKE_CURRENT_BINARY_DIR}/plasmacomponents3/qmldir
DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/plasma/components.3)