labwc/src/meson.build

45 lines
624 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',
2020-05-29 21:36:12 +01:00
'cursor.c',
'debug.c',
'desktop.c',
'dnd.c',
'foreign.c',
2020-05-29 21:27:34 +01:00
'interactive.c',
2020-05-29 21:44:50 +01:00
'keyboard.c',
'key-state.c',
'layers.c',
2020-05-27 14:29:05 +01:00
'main.c',
'node.c',
2020-09-28 20:59:38 +01:00
'osd.c',
2020-05-27 14:29:05 +01:00
'output.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',
'touch.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',
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('common')
2020-06-05 23:04:54 +01:00
subdir('config')
subdir('decorations')
2020-08-31 20:01:08 +01:00
subdir('xbm')
2020-10-19 22:14:17 +01:00
subdir('menu')
2022-02-21 03:18:38 +01:00
subdir('ssd')