kwin/plugins/platforms/fbdev/CMakeLists.txt

18 lines
531 B
Text
Raw Normal View History

set(FBDEV_SOURCES
fb_backend.cpp
2020-11-19 08:52:29 +00:00
fbvsyncmonitor.cpp
logging.cpp
scene_qpainter_fb_backend.cpp
)
add_library(KWinWaylandFbdevBackend MODULE ${FBDEV_SOURCES})
set_target_properties(KWinWaylandFbdevBackend PROPERTIES LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin/org.kde.kwin.waylandbackends/")
2020-11-19 08:52:29 +00:00
target_link_libraries(KWinWaylandFbdevBackend kwin SceneQPainterBackend VsyncSupport)
install(
TARGETS
KWinWaylandFbdevBackend
DESTINATION
${PLUGIN_INSTALL_DIR}/org.kde.kwin.waylandbackends/
)