2017-09-08 20:30:18 +00:00
|
|
|
set(SCENE_OPENGL_BACKEND_SRCS
|
|
|
|
abstract_egl_backend.cpp
|
2019-10-26 03:40:01 +00:00
|
|
|
egl_dmabuf.cpp
|
2021-01-05 19:07:35 +00:00
|
|
|
openglbackend.cpp
|
2017-09-08 20:30:18 +00:00
|
|
|
texture.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR})
|
|
|
|
|
|
|
|
include(ECMQtDeclareLoggingCategory)
|
|
|
|
ecm_qt_declare_logging_category(SCENE_OPENGL_BACKEND_SRCS
|
|
|
|
HEADER
|
|
|
|
logging.h
|
|
|
|
IDENTIFIER
|
|
|
|
KWIN_OPENGL
|
|
|
|
CATEGORY_NAME
|
|
|
|
kwin_scene_opengl
|
|
|
|
DEFAULT_SEVERITY
|
|
|
|
Critical
|
|
|
|
)
|
|
|
|
|
|
|
|
add_library(SceneOpenGLBackend STATIC ${SCENE_OPENGL_BACKEND_SRCS})
|
2020-04-29 15:18:41 +00:00
|
|
|
target_link_libraries(SceneOpenGLBackend Qt5::Core Qt5::Widgets KF5::CoreAddons KF5::ConfigCore KF5::WindowSystem Plasma::KWaylandServer)
|
2021-01-05 19:23:37 +00:00
|
|
|
target_include_directories(SceneOpenGLBackend PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|