Add KF5::WaylandServer to include the required directories

Summary: `abstract_egl_backend.cpp` includes several kwayland headers, but the include paths aren't added for kwayland. This patch solves the problem, by adding kwayland as requirement for the opengl scene plugin.

Reviewers: #kwin, graesslin

Reviewed By: #kwin, graesslin

Subscribers: kwin

Tags: #kwin

Differential Revision: https://phabricator.kde.org/D10373
This commit is contained in:
Bastian Köcher 2018-02-09 21:00:41 +01:00 committed by Martin Flöser
parent 1a46b663b4
commit 6e5f5d92da

View file

@ -20,4 +20,4 @@ ecm_qt_declare_logging_category(SCENE_OPENGL_BACKEND_SRCS
) )
add_library(SceneOpenGLBackend STATIC ${SCENE_OPENGL_BACKEND_SRCS}) add_library(SceneOpenGLBackend STATIC ${SCENE_OPENGL_BACKEND_SRCS})
target_link_libraries(SceneOpenGLBackend Qt5::Core Qt5::Widgets KF5::CoreAddons KF5::ConfigCore KF5::WindowSystem) target_link_libraries(SceneOpenGLBackend Qt5::Core Qt5::Widgets KF5::CoreAddons KF5::ConfigCore KF5::WindowSystem KF5::WaylandServer)