3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-15 19:55:53 +00:00
2022-03-05 22:41:29 +05:00

16 lines
436 B
CMake

set(lookandfeelqmlplugin_SRCS
lookandfeelqmlplugin.cpp
kpackageinterface.cpp
)
add_library(lookandfeelqmlplugin SHARED ${lookandfeelqmlplugin_SRCS})
target_link_libraries(lookandfeelqmlplugin
Qt::Qml
KF5::ConfigCore
KF5::Package
)
install(TARGETS lookandfeelqmlplugin DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/plasma/lookandfeel)
install(FILES qmldir DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/plasma/lookandfeel)