labwc/src/meson.build

53 lines
767 B
Meson
Raw Normal View History

2020-05-27 14:29:05 +01:00
labwc_sources = files(
2020-06-18 20:18:01 +01:00
'action.c',
'buffer.c',
'debug.c',
'desktop.c',
'dnd.c',
'edges.c',
'foreign.c',
'idle.c',
2020-05-29 21:27:34 +01:00
'interactive.c',
'layers.c',
'magnifier.c',
2020-05-27 14:29:05 +01:00
'main.c',
'node.c',
2020-09-28 20:59:38 +01:00
'osd.c',
'osd-field.c',
2020-05-27 14:29:05 +01:00
'output.c',
'output-virtual.c',
'overlay.c',
'placement.c',
2022-07-06 17:21:02 +02:00
'regions.c',
2021-10-24 12:17:57 -04:00
'resistance.c',
'seat.c',
2020-05-29 21:27:34 +01:00
'server.c',
2023-03-30 22:19:05 +01:00
'session-lock.c',
'snap-constraints.c',
'snap.c',
'tearing.c',
2021-02-21 22:18:34 +00:00
'theme.c',
2020-05-27 14:29:05 +01:00
'view.c',
'view-impl-common.c',
'window-rules.c',
2022-06-15 01:07:45 +02:00
'workspaces.c',
2020-05-27 14:29:05 +01:00
'xdg.c',
'xdg-popup.c',
2020-05-27 14:29:05 +01:00
)
2020-12-30 10:29:21 +00:00
if have_xwayland
labwc_sources += files(
'xwayland.c',
'xwayland-unmanaged.c',
)
endif
subdir('button')
subdir('common')
2020-06-05 23:04:54 +01:00
subdir('config')
subdir('decorations')
subdir('input')
2020-10-19 22:14:17 +01:00
subdir('menu')
2022-02-21 03:18:38 +01:00
subdir('ssd')