labwc/src/meson.build
bi4k8 4c3bae0794 implement touch support
this is mostly plumbing; the most interesting logic is in touch_get_coords
2022-03-21 21:06:41 +00:00

40 lines
547 B
Meson

labwc_sources = files(
'action.c',
'buffer.c',
'cursor.c',
'debug.c',
'desktop.c',
'foreign.c',
'interactive.c',
'keyboard.c',
'key-state.c',
'layers.c',
'main.c',
'node.c',
'osd.c',
'output.c',
'resistance.c',
'seat.c',
'server.c',
'touch.c',
'theme.c',
'view.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')
subdir('ssd')