You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
641 B
21 lines
641 B
set(appmenuapplet_SRCS |
|
appmenumodel.cpp |
|
appmenuplugin.cpp |
|
) |
|
|
|
add_library(appmenuplugin SHARED ${appmenuapplet_SRCS}) |
|
target_link_libraries(appmenuplugin |
|
Qt5::Core |
|
Qt5::Widgets |
|
Qt5::Quick |
|
KF5::Plasma |
|
KF5::WindowSystem |
|
dbusmenuqt) |
|
|
|
if(HAVE_X11) |
|
target_link_libraries(appmenuplugin Qt5::X11Extras XCB::XCB) |
|
endif() |
|
|
|
install(TARGETS appmenuplugin DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/plasma/private/appmenu) |
|
|
|
install(FILES qmldir DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/plasma/private/appmenu)
|
|
|