77a9d38166
As is, kwin with the drm backend results in the most pleasant user experience on Wayland. Given that and the fbdev being about to be dropped, making libdrm a required dependency seems a reasonable decision.
7 lines
153 B
CMake
7 lines
153 B
CMake
add_subdirectory(drm)
|
|
if (HAVE_LINUX_FB_H)
|
|
add_subdirectory(fbdev)
|
|
endif()
|
|
add_subdirectory(virtual)
|
|
add_subdirectory(wayland)
|
|
add_subdirectory(x11)
|