2015-05-05 15:58:09 +00:00
|
|
|
set(WAYLAND_BACKEND_SOURCES
|
|
|
|
logging.cpp
|
|
|
|
scene_qpainter_wayland_backend.cpp
|
|
|
|
wayland_backend.cpp
|
|
|
|
)
|
|
|
|
|
2015-11-30 07:34:52 +00:00
|
|
|
if(HAVE_WAYLAND_EGL)
|
|
|
|
set(WAYLAND_BACKEND_SOURCES egl_wayland_backend.cpp ${WAYLAND_BACKEND_SOURCES})
|
|
|
|
endif()
|
|
|
|
|
2015-05-05 15:58:09 +00:00
|
|
|
add_library(KWinWaylandWaylandBackend MODULE ${WAYLAND_BACKEND_SOURCES})
|
2015-11-30 07:34:52 +00:00
|
|
|
target_link_libraries(KWinWaylandWaylandBackend kwin KF5::WaylandClient)
|
|
|
|
|
|
|
|
if(HAVE_WAYLAND_EGL)
|
|
|
|
target_link_libraries(KWinWaylandWaylandBackend Wayland::Egl)
|
|
|
|
endif()
|
2015-05-05 15:58:09 +00:00
|
|
|
|
|
|
|
install(
|
|
|
|
TARGETS
|
|
|
|
KWinWaylandWaylandBackend
|
|
|
|
DESTINATION
|
|
|
|
${PLUGIN_INSTALL_DIR}/org.kde.kwin.waylandbackends/
|
|
|
|
)
|