mirror of
https://github.com/KDE/krfb
synced 2026-07-01 07:41:17 -07:00
Summary: Adds a new framebuffer implementation, which uses xdg-desktop-portal to support remote desktop on Wayland and uses PipeWire to deliver the screen content. So far only mouse support is implemented, because keyboard support is missing on KWin side. Reviewers: Kanedias, romangg Reviewed By: Kanedias Subscribers: asturmlechner, pino, ngraham, romangg Differential Revision: https://phabricator.kde.org/D20402
19 lines
465 B
CMake
19 lines
465 B
CMake
include_directories (${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
)
|
|
|
|
set (krfb_events_x11_SRCS
|
|
x11events.cpp
|
|
x11eventsplugin.cpp
|
|
)
|
|
|
|
add_library (krfb_events_x11 MODULE ${krfb_events_x11_SRCS})
|
|
|
|
target_link_libraries (krfb_events_x11
|
|
${X11_XTest_LIB}
|
|
KF5::CoreAddons
|
|
krfbprivate
|
|
)
|
|
|
|
install (TARGETS krfb_events_x11 DESTINATION ${PLUGIN_INSTALL_DIR}/krfb)
|