ee89f3f34f
The plugin does not much. It's the most basic plugin we can have to be loaded from kwin_x11. Unlike the wayland platform plugins it gets installed to: org.kde.kwin.platforms
13 lines
284 B
CMake
13 lines
284 B
CMake
set(X11PLATFORM_SOURCES
|
|
x11_platform.cpp
|
|
)
|
|
|
|
add_library(KWinX11Platform MODULE ${X11PLATFORM_SOURCES})
|
|
target_link_libraries(KWinX11Platform kwin Qt5::X11Extras)
|
|
|
|
install(
|
|
TARGETS
|
|
KWinX11Platform
|
|
DESTINATION
|
|
${PLUGIN_INSTALL_DIR}/org.kde.kwin.platforms/
|
|
)
|