kwin/src/platformsupport/scenes/opengl/CMakeLists.txt
Vlad Zahorodnii 3485eb6200 cmake: Move base render backend classes to libkwin
This allows using base opengl backends in libkwin, which can be useful
later on for the purpose of moving the ownership of render backends from
the Scene class to the Compositor class.
2021-11-08 18:27:22 +00:00

12 lines
384 B
CMake

target_sources(kwin PRIVATE
abstract_egl_backend.cpp
basiceglsurfacetexture_internal.cpp
basiceglsurfacetexture_wayland.cpp
egl_dmabuf.cpp
openglbackend.cpp
openglsurfacetexture.cpp
openglsurfacetexture_internal.cpp
openglsurfacetexture_wayland.cpp
openglsurfacetexture_x11.cpp
)
target_include_directories(kwin PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})