d89501a079
This improves file organization in kwin by putting backends in a single directory. It also makes easier to discover kwin's low level components for new contributors because the plugins directory may come as the last place to look for. When one hears "plugin", the first thing that comes to mind is regular plugins, not low level backends.
5 lines
112 B
CMake
5 lines
112 B
CMake
add_subdirectory(common)
|
|
add_subdirectory(standalone)
|
|
if (X11_XCB_FOUND)
|
|
add_subdirectory(windowed)
|
|
endif()
|