xdg-shell: split into multiple files

This commit is contained in:
emersion 2018-05-14 22:28:45 +01:00
parent c7480d5084
commit 3036507463
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48
9 changed files with 2052 additions and 1978 deletions

View file

@ -9,6 +9,11 @@ lib_wlr_types = static_library(
'seat/wlr_seat_pointer.c',
'seat/wlr_seat_touch.c',
'seat/wlr_seat.c',
'xdg_shell/wlr_xdg_popup.c',
'xdg_shell/wlr_xdg_positioner.c',
'xdg_shell/wlr_xdg_shell.c',
'xdg_shell/wlr_xdg_surface.c',
'xdg_shell/wlr_xdg_toplevel.c',
'xdg_shell_v6/wlr_xdg_popup_v6.c',
'xdg_shell_v6/wlr_xdg_positioner_v6.c',
'xdg_shell_v6/wlr_xdg_shell_v6.c',
@ -42,7 +47,6 @@ lib_wlr_types = static_library(
'wlr_wl_shell.c',
'wlr_xcursor_manager.c',
'wlr_xdg_output.c',
'wlr_xdg_shell.c',
),
include_directories: wlr_inc,
dependencies: [pixman, xkbcommon, wayland_server, wlr_protos],