labwc/src/meson.build
Johan Malm e140682528 view: call wlr_foreign_toplevel_handle_v1_set_app_id() on map
Fix issue #74

Add view-impl.c with view_impl_map() containing common code for xdg-shell
and xwayland-shell.
2021-10-16 21:26:57 +01:00

37 lines
507 B
Meson

labwc_sources = files(
'action.c',
'cursor.c',
'damage.c',
'desktop.c',
'foreign.c',
'interactive.c',
'keyboard.c',
'layers.c',
'main.c',
'osd.c',
'output.c',
'seat.c',
'server.c',
'ssd.c',
'subsurface.c',
'theme.c',
'view.c',
'view-child.c',
'view-impl.c',
'xdg.c',
'xdg-deco.c',
'xdg-popup.c',
)
if have_xwayland
labwc_sources += files(
'xwayland.c',
'xwayland-unmanaged.c',
)
endif
subdir('common')
subdir('config')
subdir('xbm')
subdir('menu')