551a6246a8
Summary: Only needed for kwin_x11 variant (required for the non-composited Outline). As that's nowadays in the x11 platform, we can move the complete XRenderUtils support into the platform. Thus KWin core does no longer require to link it. Test Plan: Compiles Reviewers: #kwin, #plasma Subscribers: plasma-devel, kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D7760
26 lines
529 B
CMake
26 lines
529 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
|
|
)
|
|
|
|
add_library(KWinSceneXRender MODULE ${SCENE_XRENDER_SRCS})
|
|
target_link_libraries(KWinSceneXRender
|
|
kwin
|
|
kwinxrenderutils
|
|
)
|
|
|
|
install(
|
|
TARGETS
|
|
KWinSceneXRender
|
|
DESTINATION
|
|
${PLUGIN_INSTALL_DIR}/org.kde.kwin.scenes/
|
|
)
|