d99e6b5d2a
This change moves the XRender backend to platformsupport directory, similar to the OpenGL and the QPainter backend. This allows to put platform-specific logic in XRenderBackend.
26 lines
736 B
CMake
26 lines
736 B
CMake
set(SCENE_XRENDER_SRCS scene_xrender.cpp)
|
|
|
|
include(ECMQtDeclareLoggingCategory)
|
|
ecm_qt_declare_logging_category(
|
|
SCENE_XRENDER_SRCS HEADER
|
|
logging.h
|
|
IDENTIFIER
|
|
KWIN_XRENDER
|
|
CATEGORY_NAME
|
|
kwin_scene_xrender
|
|
DEFAULT_SEVERITY
|
|
Critical
|
|
)
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR}/platformsupport/scenes/xrender)
|
|
|
|
add_library(KWinSceneXRender MODULE ${SCENE_XRENDER_SRCS})
|
|
set_target_properties(KWinSceneXRender PROPERTIES LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin/org.kde.kwin.scenes/")
|
|
target_link_libraries(KWinSceneXRender kwin kwinxrenderutils SceneXRenderBackend)
|
|
|
|
install(
|
|
TARGETS
|
|
KWinSceneXRender
|
|
DESTINATION
|
|
${PLUGIN_INSTALL_DIR}/org.kde.kwin.scenes/
|
|
)
|